I hereby claim:
- I am if1live on github.
- I am if1live (https://keybase.io/if1live) on keybase.
- I have a public key whose fingerprint is 24A1 67F1 AD41 EC41 1938 CEE8 FE22 879B 7E79 AFE3
To claim this, I am signing this object:
| /* | |
| printf(%s) with null pointer | |
| ## Execute | |
| $ clang test_format_null.c && ./a.out | |
| ## Output | |
| ### OSX | |
| |(null)||(nu| |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env ruby | |
| require "parallel" | |
| class User | |
| attr_accessor :name | |
| def initialize(name) | |
| @name = name | |
| end | |
| end |
| #!/usr/bin/env python | |
| #-*- coding: utf-8 -*- | |
| """ | |
| pip install requests | |
| """ | |
| import urllib | |
| import requests |
| -- ํ์ค์ผ์ ์ด์ฉํด ๋ฏธ๋ก๋ฅผ ํํํ๋ผ. | |
| -- Maze ์๋ฃํ๊ณผ Node ์๋ฃํ์ด ํ์ํ ๊ฒ์ด๋ค. | |
| -- ์ฃผ์ด์ง ์ขํ์ ๋ฐ๋ผ ํ๋์ ๋ ธ๋๋ฅผ ๋ฆฌํดํ๋ ํจ์๋ ํ์ํ๋ค. | |
| -- ๊ทธ๋ ๊ฒ ๋ฆฌํด๋ ๋ ธ๋๋ ๋ค๋ฅธ ๋ ธ๋๋ก ๋์ด๊ฐ ์ ์๋ ์ถ๊ตฌ์ ๋ฆฌ์คํธ๋ฅผ ๋ด๊ณ ์์ด์ผํ๋ค. | |
| -- ๋ฏธ๋ก๋ฅผ ํด๊ฒฐํ๊ธฐ ์ํด ๋ฆฌ์คํธ ๋ชจ๋๋๋ฅผ ์ฌ์ฉํ๋ผ. | |
| module Main where | |
| data Maze t = Maze [[t]] deriving (Show) |
| ;; execute | |
| ;; emacs --batch --script kick_bedclothes.el | |
| ;; original: https://twitter.com/sucroseMass/status/680000098248470528 | |
| (defun ์ด๋ถํฅ (&optional x) | |
| (message "์ฃฝ๊ณ ์ถ๋ค")) | |
| (์ด๋ถํฅ (์ด๋ถํฅ (์ด๋ถํฅ (์ด๋ถํฅ (์ด๋ถํฅ (์ด๋ถํฅ)))))) | |
| ;; ์๋์ฒด ๊ตฌํ์ฒด | |
| ;; ์๋ ํ์ ๊ฐ! ํ์ธ๊ณ ๊ฐํ ์์นจ, ๋ง์ผ ๋ด๊ฒ ๋ฌผ์ด๋ณด๋ฉด ๋๋ ์๋. | |
| ;; execute & output | |
| ;; $ emacs --batch --script waldo.el | |
| ;; ์๋ ํ์ ๊ฐ! | |
| ;; ํ์ธ๊ณ ๊ฐํ ์์นจ | |
| ;; | |
| ;; (๋๋ ์๋) |
| #!/usr/bin/env python3 | |
| #-*- coding: utf-8 -*- | |
| ''' | |
| $ ./calc_tk.py | |
| text = ์๋ ํ์ธ์ ํ ์คํธ์ ๋๋ค | |
| tk = 513628.127973 | |
| ''' | |
| text = u"์๋ ํ์ธ์ ํ ์คํธ์ ๋๋ค" |
| // https://twitter.com/RhoP_nim/status/676667506052825090 | |
| #include "apue.h" | |
| int glob = 6; | |
| char buf[] = "a write to stdout\n"; | |
| void err_sys(const char *x, ...) | |
| { | |
| perror(x); | |
| exit(1); |
| ;; Implementation "์ด์! == !์์ด", "์์ด! == !์ด์" | |
| ;; How to run | |
| ;; emacs --script suicide.el | |
| (defun fun-string-msg (word &optional func) | |
| (if (eq nil func) | |
| ;; no argument | |
| word | |
| ;; argument | |
| word)) |