Skip to content

Instantly share code, notes, and snippets.

View astropanic's full-sized avatar

Wojciech Pietrzak astropanic

View GitHub Profile
class Foo
def self.with_context
old = self.context #save current context
yield
@@context = old #return context back after method was run
end
def self.context=(value)
@@context = value
end
@astropanic
astropanic / console.js
Last active December 12, 2015 00:39
An example of the MongoDB aggregation framework
use wlw;
db.wlw.drop();
heading1 = { _id: 10001, name: "Schrauben" , company_counts: { "de":0, "at":9 }, keywords: ["Metall", "Gewinde", "Konstruktion"] };
heading2 = { _id: 10002, name: "Rohre" , company_counts: { "de":1, "at":3 }, keywords: ["Metall", "Profil" , "Konstruktion"] };
heading3 = { _id: 10003, name: "Holzballen", company_counts: { "de":3, "at":0 }, keywords: ["Holz" , "Bau" , "Konstruktion"] };
db.wlw.insert(heading1);
db.wlw.insert(heading2);
ruby x.rb
{"title":"SHINY NEW TITLE","bar":"blah"}
/*!
* jQuery outside events - v1.1 - 3/16/2010
* http://benalman.com/projects/jquery-outside-events-plugin/
*
* Copyright (c) 2010 "Cowboy" Ben Alman
* Dual licensed under the MIT and GPL licenses.
* http://benalman.com/about/license/
*/
// Script: jQuery outside events
@astropanic
astropanic / gist:1519209
Created December 25, 2011 12:53
gem install ray
Building native extensions. This could take a while...
ERROR: Error installing ray:
ERROR: Failed to build gem native extension.
/home/wojciech/.rvm/rubies/ruby-1.9.2-p290/bin/ruby extconf.rb
checking for GL/glxext.h... yes
checking for X11/extensions/Xrandr.h... yes
checking for main() in -lXrandr... yes
checking for main() in -lX11... yes
checking for main() in -lGL... yes
admin.qype.br
admin.qype.co.uk
admin.qype.com
admin.qype.es
admin.qype.fr
admin.qype.it
admin.qype.nl
admin.qype.pl
admin.qype.pt
bbc.qype.br
def test_including_modules_for_correct_country
Schober::Reader.expects(:send).with(:include, Schober::Mapping::Categories::Ch)
Schober::Reader.expects(:send).with(:include, Schober::Mapping::Columns::Ch)
Schober::Reader.expects(:send).with(:include, Schober::Computing::Ch)
Schober::Reader.new("ch")
end
@astropanic
astropanic / bb-code.rb
Created July 23, 2011 16:24
Extend bb-ruby to understand the [ruby]...[/ruby] tag
#config/initializers/bb-code.rb
module BBRuby
@@tags["Ruby"] = [
/\[ruby\](.*?)\[\/ruby\]/mi,
'<pre class="syntax ruby">\1</pre>',
'Ruby code',
'[ruby]User.last.inspect[/ruby]',
:ruby]
end
# default.gems generated gem export file. Note that any env variable settings will be missing. Append these after using a ';' field separator
aaronh-chronic -v0.3.9
abstract -v1.0.0
actionmailer -v3.0.7
actionmailer -v3.0.6
actionmailer -v2.3.8
actionmailer -v2.3.5
actionpack -v3.0.7
actionpack -v3.0.6
actionpack -v2.3.8
@astropanic
astropanic / gist:890746
Created March 28, 2011 16:16
bash prompt
NONE="\[\033[0m\]" # unsets color to term's fg color
# regular colors
K="\[\033[0;30m\]" # black
R="\[\033[0;31m\]" # red
G="\[\033[0;32m\]" # green
Y="\[\033[0;33m\]" # yellow
B="\[\033[0;34m\]" # blue
M="\[\033[0;35m\]" # magenta
C="\[\033[0;36m\]" # cyan