Skip to content

Instantly share code, notes, and snippets.

@ericstewart
ericstewart / rich-already-answered-that.md
Created March 26, 2021 02:11 — forked from reborg/rich-already-answered-that.md
A curated collection of answers that Rich gave throughout the history of Clojure

Rich Already Answered That!

A list of commonly asked questions, design decisions, reasons why Clojure is the way it is as they were answered directly by Rich (even when from many years ago, those answers are pretty much valid today!). Feel free to point friends and colleagues here next time they ask (again). Answers are pasted verbatim (I've made small adjustments for readibility, but never changed a sentence) from mailing lists, articles, chats.

How to use:

  • The link in the table of content jumps at the copy of the answer on this page.
  • The link on the answer itself points back at the original post.

Table of Content

Verifying my Blockstack ID is secured with the address 1NpzSuv4mSi7F6vqriPY9xyLhEXRSA8Mp9 https://explorer.blockstack.org/address/1NpzSuv4mSi7F6vqriPY9xyLhEXRSA8Mp9
0x00ADC99fa15DA6aB213cBF2A9fCA7E87b708Ecc5
0x008166F47dC26879b26202922d1680fA51511243
0x4300E50c733Ac469873B13D322b8554b97A1E60a
0x272D042deea17AbfE7cbdB2e24a7f864860449Cd
@ericstewart
ericstewart / keybase.md
Last active February 18, 2016 00:09
Keybase verification

Keybase proof

I hereby claim:

  • I am ericstewart on github.
  • I am ericstewart (https://keybase.io/ericstewart) on keybase.
  • I have a public key ASAlVYihvMgQSq4Exk-zoPdIucZXH0spqW9XaMPuQZZFpgo

To claim this, I am signing this object:

@ericstewart
ericstewart / hello_te_clipboard.cljs
Last active September 1, 2015 18:40
Trivial planck scripts for use from TextExpander
#!/usr/local/bin/planck
;; Trivial script to demonstrate using ClojureScript from TextExpander via Planck (http://planck.fikesfarm.com). This
;; uses anything on the clipboard for a simple Hello World example.
;; Also see the 'Shell Script Snippets' section here: https://smilesoftware.com/help/TextExpander/applescript.html
(print (str "Hello, " "%clipboard!"))
@ericstewart
ericstewart / gist:1104426
Created July 25, 2011 15:45
List open files and limits for java processes
for pid in `pidof java`; do echo "$(< /proc/$pid/cmdline)"; egrep 'files|Limit' /proc/$pid/limits; echo "Currently open files: $(ls -1 /proc/$pid/fd | wc -l)"; echo; done