Skip to content

Instantly share code, notes, and snippets.

@et2010
et2010 / before-processing.el
Last active February 7, 2016 02:55
Erase `*Org Export Process*' buffer and rename it
(save-excursion
(set-buffer "*Org Export Process*")
(erase-buffer)
(rename-buffer "*Org Export Process* (running...)"))
@et2010
et2010 / socks.el
Last active June 22, 2023 12:23
socks proxy settings for emacs url package.
(setq url-gateway-method 'socks)
(setq socks-server '("Default server" "127.0.0.1" 1080 5))
@et2010
et2010 / 0_reuse_code.js
Created February 4, 2016 06:08
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console