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
;;; org-html5presentation.el --- HTML5 Presentation export for Org-mode | |
;; Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 | |
;; Free Software Foundation, Inc. | |
;; Author: Carsten Dominik <carsten at orgmode dot org> | |
;; Keywords: outlines, hypermedia, calendar, wp | |
;; Homepage: http://orgmode.org | |
;; Version: 7.5 | |
;; |
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
Trying to get password via `weechat-password-callback'... | |
Using auth-source to retrieve weechat relay password | |
Weechat connecting to 192.168.1.58:9000 | |
Connected to '192.168.1.58', version 0.4.0 | |
error in process filter: bindat--unpack-group: Args out of range: "��IxUÝoEOÉ[�/¼MÊKì;Äã' | |
MPJI R ª½»õÝóÞiwçP% | |
( | |
R¨PUøPû@ &g¥Oü 0{þ:J¤R,nfvvç7¿Ù:S«CÆP±õ:(½Ä | |
ã*ËIÖ¤YéB]ì«)¿#ùMü[D0bùTÖ<eá§2'_.«(À'Ó¢ÔöË.¢ycÎÈÃÌâ,óùR®/ RaÍ4[ÑÝcÂ51*þqûcvè7]ÆQ°Aõ[LÅA$¥í#yJR±E QòÀÑ'SrvåÜb | |
X=«Á©2+Ê<ÌJF±°`Ucna¶$3d [ñΩ?aª`Ä:Á½©m²Ra1½kBEáð§ñH!©ºØVgí fÔÉ4ÑL±Ð«Õ.qÏöÓ{!pCµÐüø¶S,çX#¾¾º6µ^iTË#½u]à_5WÅ÷áÇïþt¹½³×wfÒpÓ.¿Á¶µËWÄwï´ß{pã*ªg£åóg`fÎ,Ìö7¼k4Bóíù H½ÙgzêÆÿè\\§êù0¦°©æË´¤É×u¸¸ùNìÌ@,trèÑ1j².´oßj´ûN{ÿÇnPhïïßò÷Èù¦¢K²ÿÉD· |
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
#!/bin/env python | |
import time | |
import httplib | |
def scanx_run(command, server): | |
scanx = httplib.HTTPConnection(server) | |
# debug mode | |
# scanx.set_debuglevel(1) | |
# run command |
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
export SDKVER="6.1" | |
configure_for_platform() { | |
export PLATFORM=$1 | |
export ARCHITECTURE=$2 | |
echo "Platform is $PLATFORM" | |
if [ "$PLATFORM" == "iPhoneSimulator" ]; then | |
export ARCH=i686-apple-darwin10 | |
fi |
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
;; from http://larkery.tumblr.com/post/465585528/emacs-dictionary-app | |
(defun mac-open-dictionary (the-word) | |
"Open Dictionary.app for the-word" | |
(interactive "Dictionary Lookup: ") | |
(shell-command | |
(concat "open \"dict:///" (replace-regexp-in-string "\"" "\\\\\"" the-word) "\""))) | |
;; see https://gist.github.com/1228110 | |
;; dict.py is from http://sakito.jp/mac/dictionary.html | |
(defun dictionary () |
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
aspell --with-lang-en | |
autoconf | |
automake | |
bazaar | |
bdw-gc | |
bitlbee | |
brew-gem | |
c-ares | |
cabextract | |
cloc |
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
# Use jdb to debug Android application | |
# Run ddms and select application to forward port. | |
ddms | |
# Execute jdb and attach to the listening application | |
# ddms show 8600 / 8700 | |
jdb -attach localhost:8600 | |
# Or in windows, need to specify connector explicitly |
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
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;; Org Capture | |
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
;; Capture templates for: TODO tasks, Notes, appointments, phone calls, and org-protocol | |
(setq org-capture-templates | |
(quote (("t" "todo" entry (file "~/org/refile.org") | |
"* TODO %?\n%U\n%a\n" :clock-in t :clock-resume t) | |
("r" "respond" entry (file "~/org/refile.org") | |
"* TODO Respond to %:from on %:subject\n%U\n%a\n" :clock-in t :clock-resume t :immediate-finish t) | |
("n" "note" entry (file "~/org/refile.org") |
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 zsh | |
# Path to your oh-my-zsh configuration. | |
ZSH=$HOME/.oh-my-zsh | |
if [[ -z "$INSIDE_EMACS" ]]; then | |
# normal term | |
ZSH_THEME="gentoo" | |
else | |
# inside Emacs | |
ZSH_THEME="dpoggi" |
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
;; You need this to be able to list all labels in gmail | |
(setq gnus-ignored-newsgroups "") | |
;; And this to configure gmail imap | |
(add-to-list 'gnus-secondary-select-methods '(nnimap "gmail" | |
(nnimap-address "imap.gmail.com") | |
(nnimap-server-port 993) | |
(nnimap-stream ssl))) | |
(provide 'init-gnus) |