View gist:188
hello world |
View gist:3830
brianm@ufo:~$ dig -t mx therecordingroom.com | |
; <<>> DiG 9.4.1-P1 <<>> -t mx therecordingroom.com | |
;; global options: printcmd | |
;; Got answer: | |
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 8077 | |
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0 | |
;; QUESTION SECTION: | |
;therecordingroom.com. IN MX |
View gist.el
;; gist.el --- Emacs integration for gist.github.com | |
;; Copyright (C) 2008 Christian Neukirchen <purl.org/net/chneukirchen> | |
;; Copyright (C) 2008 Chris Wanstrath <chris@ozmm.org> | |
;; Copyright (C) 2008 Will Farrington <wcfarrington@gmail.com> | |
;; Licensed under the same terms as Emacs. | |
;; Version: 0.3.1 | |
;; 26aug2008 +wfarr+ | |
;; 25aug2008 +defunkt+ | |
;; 21jul2008 +chris+ |
View gist.el
;; gist.el --- Emacs integration for gist.github.com | |
;; Copyright (C) 2008 Christian Neukirchen <purl.org/net/chneukirchen> | |
;; Copyright (C) 2008 Chris Wanstrath <chris@ozmm.org> | |
;; Copyright (C) 2008 Will Farrington <wcfarrington@gmail.com> | |
;; Licensed under the same terms as Emacs. | |
;; Version: 0.3.1 | |
;; 26aug2008 +wfarr+ | |
;; 25aug2008 +defunkt+ | |
;; 21jul2008 +chris+ |
View gist.el
;; gist.el --- Emacs integration for gist.github.com | |
;; Copyright (C) 2008 Christian Neukirchen <purl.org/net/chneukirchen> | |
;; Copyright (C) 2008 Chris Wanstrath <chris@ozmm.org> | |
;; Copyright (C) 2008 Will Farrington <wcfarrington@gmail.com> | |
;; Licensed under the same terms as Emacs. | |
;; Version: 0.3.1 | |
;; 26aug2008 +wfarr+ | |
;; 25aug2008 +defunkt+ | |
;; 21jul2008 +chris+ |
View moonunit.lua
-- Licensed to the Apache Software Foundation (ASF) under one or more | |
-- contributor license agreements. See the NOTICE file distributed with | |
-- this work for additional information regarding copyright ownership. | |
-- The ASF licenses this file to You under the Apache License, Version 2.0 | |
-- (the "License"); you may not use this file except in compliance with | |
-- the License. You may obtain a copy of the License at | |
-- | |
-- http://www.apache.org/licenses/LICENSE-2.0 | |
-- | |
-- Unless required by applicable law or agreed to in writing, software |
View gist:22400
apr_hash_t* dispatch = apr_hash_make(p); | |
apr_hash_set(dispatch, "puts", APR_HASH_KEY_STRING, makefun(&req_puts, APW_REQ_FUNTYPE_LUACFUN, p)); | |
apr_hash_set(dispatch, "write", APR_HASH_KEY_STRING, makefun(&req_write, APW_REQ_FUNTYPE_LUACFUN, p)); | |
apr_hash_set(dispatch, "document_root", APR_HASH_KEY_STRING, makefun(&req_document_root, APW_REQ_FUNTYPE_LUACFUN, p)); | |
apr_hash_set(dispatch, "parseargs", APR_HASH_KEY_STRING, makefun(&req_parseargs, APW_REQ_FUNTYPE_LUACFUN, p)); | |
apr_hash_set(dispatch, "parsebody", APR_HASH_KEY_STRING, makefun(&req_parsebody, APW_REQ_FUNTYPE_LUACFUN, p)); | |
apr_hash_set(dispatch, "debug", APR_HASH_KEY_STRING, makefun(&req_debug, APW_REQ_FUNTYPE_LUACFUN, p)); | |
apr_hash_set(dispatch, "info", APR_HASH_KEY_STRING, makefun(&req_info, APW_REQ_FUNTYPE_LUACFUN, p)); | |
apr_hash_set(dispatch, "notice", APR_HASH_KEY_STRING, makefun(&req_notice, APW_REQ_FUNTYPE_LUACFUN, p)); |
View gist:29564
Debugger entered--Lisp error: (wrong-type-argument arrayp nil) | |
define-key((keymap (3 keymap (1 . align) (20 . textmate-clear-cache)) (M-return . textmate-next-line)) nil indent-according-to-mode) | |
textmate-bind-keys() | |
textmate-mode() | |
eval((textmate-mode)) | |
eval-last-sexp-1(nil) | |
eval-last-sexp(nil) | |
call-interactively(eval-last-sexp) |
View *scratch*
hello world |
View gist:34408
SSH_COMPLETE=( $(cut -f1 -d' ' ~/.ssh/known_hosts |\ | |
tr ',' '\n' |\ | |
sort -u |\ | |
grep -e '[:alpha:]') ) | |
complete -o default -W "${SSH_COMPLETE[*]}" ssh |
OlderNewer