This file contains 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 | |
require 'rubygems' | |
require 'hpricot' | |
require 'open-uri' | |
class String | |
def strip_tags | |
gsub(/</, '<').gsub(/>/, '>').gsub(/<.*?>/, ' ').gsub(/&#\d{4};/, '~') |
This file contains 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
;; Feedback on http://www.fatvat.co.uk/2009/07/merging-rss-feeds.html | |
;; Original | |
(defn join-all | |
"Join the lists provided using f to select an element each time" | |
[f & lists] | |
(let [l (remove empty? lists)] | |
(when-not (empty? l) | |
(let [n (reduce f (map first l)) | |
c (count (filter #(= (first %) n) l)) |
This file contains 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
user> (pprint (macroexpand-1 '(bar-chart (map (comp str first) d) (map (comp #(/ % 1000.0) second) d) :title "Distance by week" :x-label "Week" :y-label "km"))) | |
(clojure.core/let | |
[opts__1904__auto__ | |
(clojure.core/when | |
'(:title "Distance by week" :x-label "Week" :y-label "km") | |
(clojure.core/assoc | |
{} | |
:title | |
"Distance by week" | |
:x-label |
This file contains 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
(ns redis-memo | |
(:require redis) | |
(:import (java.net URLEncoder))) | |
;; -------------------------------------------------------------------------------- | |
;; Default connection params | |
;; -------------------------------------------------------------------------------- | |
(def memo-server {:host "localhost" :port 6379 :db 14}) |
This file contains 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/lisp/term/ns-win.el b/lisp/term/ns-win.el | |
index 157b2dd..f3807b7 100644 | |
--- a/lisp/term/ns-win.el | |
+++ b/lisp/term/ns-win.el | |
@@ -1263,6 +1263,11 @@ the operating system.") | |
(add-to-list 'window-system-initialization-alist '(ns . ns-initialize-window-system)) | |
+(declare-function ns-toggle-fullscreen-internal "nsfns.m" ()) | |
+(defun ns-toggle-fullscreen () |
This file contains 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
;;; all.el --- Edit all lines matching a given regexp. | |
;; Copyright (C) 1985, 1986, 1987, 1992, 1994 Free Software Foundation, Inc. | |
;; Copyright (C) 1994 Per Abrahamsen | |
;; Author: Per Abrahamsen <[email protected]> | |
;; Version: $Id: all.el,v 5.2 1997/03/04 10:29:42 abraham Exp $ | |
;; Keywords: matching | |
;; LCD Archive Entry: |
This file contains 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 | |
if ARGV.size < 2 | |
puts "Usage: #{$0} <src dir> <dest dir> [branch name]" | |
puts " CAUTION! Running without a branch name, it will try to copy all 'local' branches, but this is probably not what you want, and is untested. Copy just those branches you really need." | |
exit | |
end | |
src_repo = File.expand_path(ARGV[0]) | |
dest_repo = File.expand_path(ARGV[1]) |
This file contains 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
user> (filter #(re-find #"^[^aeiou]*a[^aeiou]*e[^aeiou]*i[^aeiou]*o[^aeiou]*u[^aeiou]*$" %) (clojure.contrib.io/read-lines "/usr/share/dict/words")) | |
("abstemious" "abstemiously" "abstentious" "acheilous" "acheirous" "acleistous" "affectious" "annelidous" "arsenious" "arterious" "bacterious" "caesious" "facetious" "facetiously" "fracedinous" "majestious") |
This file contains 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
# This initializer patches the bug described in ticket 5674: | |
# https://rails.lighthouseapp.com/projects/8994/tickets/5674-regression-habtm-deletion-fails-when-join-table-has-foreign-keys | |
if Rails.version == '3.0.0' | |
module ActiveRecord::Associations | |
autoload :HasAndBelongsToManyAssociation, 'active_record/associations/has_and_belongs_to_many_association' | |
module ClassMethods | |
def has_and_belongs_to_many(association_id, options = {}, &extension) | |
reflection = create_has_and_belongs_to_many_reflection(association_id, options, &extension) |
This file contains 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
############################################################################## | |
## Zsh prompt | |
############################################################################## | |
# See http://kriener.org/articles/2009/06/04/zsh-prompt-magic | |
# and http://briancarper.net/blog/570/git-info-in-your-zsh-prompt for more | |
#autoload -Uz vcs_info | |
#zstyle ':vcs_info:*:prompt:*' check-for-changes false | |
cur_git_branch() { |
OlderNewer