Skip to content

Instantly share code, notes, and snippets.

View dolsup's full-sized avatar

Jiwon Choi dolsup

  • Seoul, South Korea
View GitHub Profile
@KangDroid
KangDroid / README.md
Last active June 3, 2023 10:02
2회 EXCELCON 공유 스크립트

안녕하세요!

안녕하세요! Git 커멘드와 있으면 편리한 alias/function 으로 엑셀콘에서 발표를 한 KangDroid입니다!
이 Gist에서는 발표에서 다루었던 Function 코드들과, 적용해서 사용할 수 있는 방법에 대해서 설명합니다.

파일 구성

  • README.md: 현재 이 문서
  • shell_configuration: 터미널(쉘)의 설정 파일에 붙여넣을 수 있는 코드

현재 개인의 쉘이 어떤 것인지 알기.

각자 bash, zsh 등, 쓰는 터미널의 종류에 따라서 설정파일들의 이름이 조금씩 다릅니다.

// ==UserScript==
// @name Twitter hangul sucks
// @version 3
// @grant none
// @match https://twitter.com/*
// @match https://x.com/*
// @noframes
// @icon https://twitter.com/favicon.ico
// @run-at document-end
// ==/UserScript==
@htr3n
htr3n / macos-ramdisk.md
Last active May 6, 2025 08:14
Creating RAM disk in macOS

Built-in

diskutil erasevolume HFS+ 'RAM Disk' `hdiutil attach -nobrowse -nomount ram://XXXXX`

where XXXXX is the size of the RAM disk in terms of memory blocks.

Notes:

@xnuk
xnuk / hyeong.md
Last active April 23, 2025 10:14
난해한 혀엉.... 언어

난해한 혀엉... 언어 v0.4.5

  • (U+2026), (U+22EF), (U+22EE)는 모두 .(U+002E)가 3번 연속으로 나열된 것과 같은 것으로 봅니다.
  • "한글 음절 문자"는 가(U+AC00) 이상 힣(U+D7A3) 이하의 유니코드 문자들을 의미합니다.

스택

@CMCDragonkai
CMCDragonkai / http_streaming.md
Last active May 2, 2025 16:05
HTTP Streaming (or Chunked vs Store & Forward)

HTTP Streaming (or Chunked vs Store & Forward)

The standard way of understanding the HTTP protocol is via the request reply pattern. Each HTTP transaction consists of a finitely bounded HTTP request and a finitely bounded HTTP response.

However it's also possible for both parts of an HTTP 1.1 transaction to stream their possibly infinitely bounded data. The advantages is that the sender can send data that is beyond the sender's memory limit, and the receiver can act on

@ProLoser
ProLoser / config.fish
Last active February 23, 2018 01:41
My OSX fish (oh-my-fish) shell configuration file
# Path to your oh-my-fish.
set fish_path $HOME/.oh-my-fish
# Theme
set fish_theme agnoster
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-fish/plugins/*)
# Custom plugins may be added to ~/.oh-my-fish/custom/plugins/
# Path to your custom folder (default path is $FISH/custom)
@harrisj
harrisj / tweet_signatures.md
Last active November 24, 2020 11:03
Tweet Signatures: a simple solution for thwarting forged tweets

A Simple Solution for Faked Tweets

Recently, a somewhat large selection of my timeline was shocked by the discovery that it's simple to make a fake-looking tweet on the web. Some feared it would be only a matter of time before some news organization is suckered by a fake tweet that seems to come from a real source.

Luckily, the solution already exists, and it's something you already use constantly: GNU PrivacyGuard signatures Here is an approach for verifying a tweet is authentic and hasn't been tampered with that is so simple even @KimKardashian could figure it out. To get started, we just need to do a little setup first:

  1. Of course, you have already installed GnuPG for your own use, generated a keypair and uploaded it to a keyserver so that other people can look it up. Its email address must be publicly listed in your twitter profile.
  2. Then, you must collect the public keys of the people you fo
@kristofferh
kristofferh / git-export
Created December 7, 2011 13:01
"Export" a git repository to zip file
git archive --format zip --output /full/path/to/zipfile.zip master