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
# .bashrc | |
if [ -f /etc/bashrc ]; then | |
. /etc/bashrc | |
fi | |
[ -z "$PS1" ] && return | |
# http://en.tldp.org/HOWTO/Bash-Prompt-HOWTO/x869.html | |
function prompt_command { | |
hostnam=$(hostname -s) | |
usernam=$(whoami) |
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
# default foreground color (%N) - -1 is the "default terminal color" | |
default_color = "-1"; | |
# print timestamp/servertag at the end of line, not at beginning | |
info_eol = "false"; | |
# these characters are automatically replaced with specified color | |
# (dark grey by default) | |
replaces = { "[]=" = "%K$*%n"; }; | |
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
# wvdial.conf to be used with DNA Finland 3G or gprs over bluetooth | |
[Modem0] | |
Modem = /dev/rfcomm0 | |
Baud = 115200 | |
SetVolume = 0 | |
Dial Command = ATD | |
Init1 = AT | |
Init3 = ATH | |
FlowControl = CRTSCTS | |
[Dialer dna] |
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
#EXTM3U | |
#EXTINF:0,Bassoradio | |
http://83.145.201.209:8000/ | |
#EXTINF:0,Classic Radio | |
http://217.30.180.242:8000/clsr.ogg | |
#EXTINF:0,Groove FM | |
http://217.30.180.242:8000/gvfm.ogg |
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/python | |
# -*- coding: utf-8 -*- | |
# | |
# Simple XML validator done while learning the use of lxml library. | |
# -- Juhamatti Niemelä <iiska AT iki DOT fi> | |
import lxml | |
from lxml import etree | |
if __name__ == "__main__": |
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
require 'source_annotation_extractor' | |
class SourceAnnotationExtractor | |
# Override the directories that the SourceAnnotationExtractor | |
# traverses when you call rake notes | |
def find(dirs=%w(app lib spec public/javascripts)) | |
dirs.inject({}) { |h, dir| h.update(find_in(dir)) } | |
end | |
# Override to extract annotations from .haml and .js files |
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
#!/bin/sh | |
# | |
# Aborts commit if grepping diff encounters JS or Ruby debug lines. | |
has_console_log=$(git diff --cached | grep '^\+\s*console\.log\(.*\)') | |
has_console_dir=$(git diff --cached | grep '^\+\s*console\.dir\(.*\)') | |
has_ruby_debug=$(git diff --cached | grep "^\+\s*\(require \['\"\]ruby-debug\['\"\];\?\)\?\s*debugger") | |
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
# -*- mode: ruby -*- | |
# TAB completion for irb | |
require 'irb/completion' | |
ARGV.concat [ "--readline", "--prompt-mode", "simple" ] | |
# Save command history to be used between multiple sessions | |
require 'irb/ext/save-history' | |
IRB.conf[:SAVE_HISTORY] = 100 | |
IRB.conf[:HISTORY_FILE] = "#{ENV['HOME']}/.irb-save-history" |
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
# Original from http://snippets.dzone.com/posts/show/4468 by MichaelBoutros | |
# | |
# Optimized version which uses to_yaml for content creation and checks | |
# that models are ActiveRecord::Base models before trying to fetch | |
# them from database. | |
namespace :db do | |
namespace :fixtures do | |
desc 'Dumps all models into fixtures.' | |
task :dump => :environment do | |
models = Dir.glob(RAILS_ROOT + '/app/models/**.rb').map do |s| |
OlderNewer