Skip to content

Instantly share code, notes, and snippets.

View ctrochalakis's full-sized avatar

Christos Trochalakis ctrochalakis

View GitHub Profile
= Ruby Packaging Standard
The aim of this document is to specify a common structure of how a
Ruby package distributed as source (that is, but not limited to,
development directories, version-controlled repositories, .tar.gz,
Gems, ...) should conform to.
(See RFC 2119 for use of MUST, SHOULD, SHALL.)
== Library files
@ctrochalakis
ctrochalakis / watcher.coffee
Created April 30, 2010 12:35
Watching and compiling coffee scripts
# Coffe Blender for your coffee scripts
# It watches coffee for changes and compiles
# ======
# coffee --no-wrap -c watcher.coffee # Compile it, onetime
#
# Now you can eiher supply the files from the command line:
# node watcher.js my_file.coffee
# or pass them through stdin:
# find . | grep coffee$| node watcher.js -
# git ls-files | grep coffee$| node watcher.js -
// ==UserScript==
// @name Skroutz.gr Compare Link
// @author Apostolos Giannakidis
// @version 0.3
// @copyright Apostolos Giannakidis
// @namespace http://userscripts.org/users/159112
// @include http://www.plaisio.gr/*
// @include http://plaisio.gr/*
// @include http://www.e-shop.gr/*
// @include http://e-shop.gr/*
@ctrochalakis
ctrochalakis / Gemfile
Created May 12, 2010 06:53 — forked from jwang/Gemfile
Rest json
# Critical default settings:
disable_system_gems
disable_rubygems
bundle_path '.gems/bundler_gems'
# List gems to bundle here:
gem 'rails_dm_datastore'
gem 'rails', "2.3.5"
gem 'dm-core'
gem "json-jruby"
#!/usr/bin/env ruby
# Usage: gemspec [-s] GEMNAME
#
# Prints a basic gemspec for GEMNAME based on your git-config info.
# If -s is passed, saves it as a GEMNAME.gemspec in the current
# directory. Otherwise prints to standard output.
#
# Once you check this gemspec into your project, releasing a new gem
# is dead simple:
#
require 'mustache'
module ExistentialMethodMissing
def method_missing(method, *args)
return super unless method.to_s =~ /\?$/
val = send(method.to_s.chomp('?'))
val.respond_to?(:empty?) ? !val.empty? : !!val
end
def respond_to?(method)
# directory structure of /ruby
$ tree -L 1 /ruby
/ruby
|-- default -> ree-1.8.7
|-- ree-1.8.7
`-- ruby-1.9.1-p376
3 directories, 0 files
window.onorientationchange = function() {
if (window.orientation == 0) {
$('#sidebar').fadeOut()
} else {
$('#sidebar').fadeIn()
}
}
gemcutter => redis downloads spec
=================================
keys
----
downloads => global counter for all gem downloads
downloads:today => sorted set for downloads from today
downloads:rubygem:rails => counter for all rails downloads
downloads:version:rails-2.3.5 => counter for all rails 2.3.5 downloads
var Timezone = {
set : function() {
var date = new Date();
date.setTime(date.getTime() + (1000*24*60*60*1000));
var expires = "; expires=" + date.toGMTString();
document.cookie = "timezone=" + (-date.getTimezoneOffset() * 60) + expires + "; path=/";
}
}