Skip to content

Instantly share code, notes, and snippets.

Org-Mode_Plus_Calc_Plus_Macro_Magic

Know thy tools, to know thyself

Emacs has some incredibly powerful tools by themselves, but combined you can have superpowers.

example

Note

This is my dot-file, therefore it’s prone to have broken-ness in it. I’m trying to clean it up and make sure it’s sane.

Things currently not the way i’d like

  • escreen is nice, but i have to init it each time and set it up to use it… i’d like a working revive+ config, but I haven’t gotten it working correctly yet. see my twittering section for an example of how i use excreen
@hhutch
hhutch / keybase.md
Created June 4, 2014 21:16
keybase.io proof

Keybase proof

I hereby claim:

  • I am hhutch on github.
  • I am huntar (https://keybase.io/huntar) on keybase.
  • I have a public key whose fingerprint is 55C5 B5A7 3183 B8A3 42A4 6E5C 2817 C03B 0067 8908

To claim this, I am signing this object:

$ rake routes
Prefix Verb URI Pattern Controller#Action
tasks GET /tasks(.:format) tasks#index
POST /tasks(.:format) tasks#create
task GET /tasks/:id(.:format) tasks#show
PATCH /tasks/:id(.:format) tasks#update
PUT /tasks/:id(.:format) tasks#update
DELETE /tasks/:id(.:format) tasks#destroy
new_api_v1_user_session GET /api/v1/users/sign_in(.:format) api/v1/sessions#new
api_v1_user_session POST /api/v1/users/sign_in(.:format) api/v1/sessions#create
F#C#ScalaClojurePythonRubyHaskellSQLOCamlCommon LispErlangSmalltalkSchemeEcmascript 5Perl 5
mapSelectmapmapmapcollectmapSelectmapmapcarmapcollect:mapmapmap
filterWherefilterfilterfilterselectfilterWherefilterremove-if-notfilterselect:filterfiltergrep
foldAggregatefoldLeftreducereduceinjectfoldl
@hhutch
hhutch / bash-throbber.sh
Last active December 14, 2015 19:38 — forked from anonymous/bash-throbber.sh
Throbber using UTF8 clock
#!/usr/bin/env bash
C="0" # count
while [ $C -lt 30 ]
do
case "$(($C % 11))" in
0) char="\xF0\x9F\x95\x90"
;;
1) char="\xF0\x9F\x95\x91"
;;
@hhutch
hhutch / fetch-repos.sh
Created September 10, 2012 04:01
find file changes in all forks of a github repo
curl -i https://api.github.com/repos/scrooloose/nerdtree/forks |grep -e "git_url" |awk '{gsub(/,/,"");split($2,a,"/"); system("mkdir "a[4]"; cd "a[4]"; git clone " $2);}'
@hhutch
hhutch / echo.java
Created June 26, 2012 17:52
Attempted transliteration of vert.x echo server in Java to Clojure
package org.vertx.java.examples.echo;
import org.vertx.java.core.Handler;
import org.vertx.java.core.net.NetSocket;
import org.vertx.java.core.streams.Pump;
import org.vertx.java.deploy.Verticle;
public class EchoServer extends Verticle {
public void start() {