This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"links": [ | |
{ | |
"href": "http:\/\/github.com", | |
"label": "Github" | |
}, | |
{ | |
"href": "http:\/\/stackoverflow.com", | |
"label": "Stackoverflow" | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun sha/format-mail-header () | |
(interactive) | |
(with-current-buffer (current-buffer) | |
(let ((beg (region-beginning)) | |
(end (region-end)) | |
(fill-column 60)) | |
(goto-char beg) | |
(insert "Hi,\n\n") | |
(forward-line 0) | |
(insert "---") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun sha/screencast (&optional output-file) | |
(let ((output-file | |
(or output-file | |
(concat "/tmp/" | |
(format "%S" (abs (random))) | |
".mp4")))) | |
(message "screen-cast started") | |
(start-process "screencasting" | |
(get-buffer-create "*screencast-buffer*") | |
"ffcast" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Simple prompt based on strug.zsh-theme | |
PROMPT=' | |
%~ %T | |
' | |
local git_branch='$(git_prompt_info)%{$reset_color%}$(git_remote_status)' | |
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[yellow]%} " | |
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn _do-flames [n fl] | |
(let [do-split (fn [n fl] | |
(let [[xs ys] (split-at n fl)] | |
(flatten | |
(conj (butlast xs) | |
ys)))) | |
c (count fl)] | |
(cond (= c 1) | |
(first fl) | |
(<= n c) |
NewerOlder