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
Luke Skywalker | |
C-3PO | |
R2-D2 | |
Darth Vader | |
Leia Organa | |
Owen Lars | |
Beru Whitesun lars | |
R5-D4 | |
Biggs Darklighter | |
Obi-Wan Kenobi |
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
;;; git-mode-line-dot.el --- Show a dot for git status in the mode line | |
(eval-when-compile (require 'cl)) | |
(require 'vc-git) | |
(add-to-list 'vc-handled-backends 'Git) | |
(defvar git-mode-line-dot-state-mark-modeline t | |
"modeline mark display or not") | |
(defun git-mode-line-dot-update-modeline () |
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
-------------------------------------------------- | |
-------------------------------------------------- | |
-- Import tasks from Things to OmniFocus | |
-------------------------------------------------- | |
-------------------------------------------------- | |
-- | |
-- Script taken from: http://forums.omnigroup.com/showthread.php?t=14846&page=2 | |
-- | |
-- Added: creation date, due date, start date functionality |
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
diff --git a/KeySetting_Default.plist.orig b/KeySetting_Default.plist | |
index 7df2f81..1ac2d1f 100644 | |
--- a/KeySetting_Default.plist.orig | |
+++ b/KeySetting_Default.plist | |
@@ -13,14 +13,14 @@ | |
<key>command</key> | |
<string>direct_input</string> | |
<key>character</key> | |
- <string> </string> | |
+ <string> </string> |
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
require 'formula' | |
class Emacs < Formula | |
homepage 'http://www.gnu.org/software/emacs/' | |
url 'http://ftpmirror.gnu.org/emacs/emacs-24.2.tar.bz2' | |
mirror 'http://ftp.gnu.org/pub/gnu/emacs/emacs-24.2.tar.bz2' | |
sha1 '38e8fbc9573b70a123358b155cf55c274b5a56cf' | |
option "cocoa", "Build a Cocoa version of emacs" | |
option "inline", "Apply inline-patch" |
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
<?php | |
$consumer_key = 'CONSUMER_KEY'; | |
$consumer_secret = 'CONSUMER_SECRET'; | |
$access_token = 'ACCESS_TOKEN'; | |
$access_token_secret = 'ACCESS_TOKEN_SECRET'; | |
$screen_name = 'SCREEN_NAME'; | |
function load_tweets() { | |
global $screen_name; | |
$filename = "$screen_name.json"; |
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
diff --git a/src/html.c b/src/html.c | |
index 17987fb..65415eb 100644 | |
--- a/src/html.c | |
+++ b/src/html.c | |
@@ -952,8 +952,13 @@ void send_rss(request_rec *r, const mu_pack *const pack, const mu_config *const | |
ap_rvputs(r, "version=\"2.0\">\n" | |
" <channel>\n" | |
- " <title>", _("RSS Feed for "), ap_escape_html(r->pool, r->uri), "</title>\n" | |
- " <link>", NULL); |
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
# Moved to https://github.com/ymorimo/rec_radiko |
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 ruby | |
cols = (ARGV[0] || 5).to_i - 1 | |
rows = (ARGV[1] || 9).to_i | |
begin | |
table = (0...rows).map do |i| | |
(0...cols).map { rand(2) }.join | |
end | |
end until table.join =~ /1/ |
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
(when (require 'edit-server nil 'noerror) | |
(setq edit-server-new-frame nil) | |
(edit-server-start) | |
(setq my-edit-server-mode-alist '(("github.com" . markdown-mode) ("blogger.com" . html-mode))) | |
(add-hook 'edit-server-start-hook | |
(lambda () | |
(let ((lst my-edit-server-mode-alist)) | |
(while lst | |
(if (string-match (caar lst) (buffer-name)) | |
(progn |
NewerOlder