Emacs has some incredibly powerful tools by themselves, but combined you can have superpowers.
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.
- 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
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:
This file contains hidden or 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
$ 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# | Scala | Clojure | Python | Ruby | Haskell | SQL | OCaml | Common Lisp | Erlang | Smalltalk | Scheme | Ecmascript 5 | Perl 5 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
map | Select | map | map | map | collect | map | Select | map | mapcar | map | collect: | map | map | map |
filter | Where | filter | filter | filter | select | filter | Where | filter | remove-if-not | filter | select: | filter | filter | grep |
fold | Aggregate | foldLeft | reduce | reduce | inject | foldl |
This file contains hidden or 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
#!/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" | |
;; |
This file contains hidden or 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
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);}' |
This file contains hidden or 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
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() { |