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
gem 'activerecord', '4.0.2' | |
require 'active_record' | |
require 'minitest/autorun' | |
require 'logger' | |
# Ensure backward compatibility with Minitest 4 | |
Minitest::Test = MiniTest::Unit::TestCase unless defined?(Minitest::Test) | |
# This connection will do for database-independent bug reports. | |
ActiveRecord::Base.establish_connection(adapter: 'sqlite3', database: ':memory:') |
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
# Activate the gem you are reporting the issue against. | |
gem 'activerecord', '4.0.2' | |
gem 'activesupport', '4.0.2' | |
require 'active_record' | |
require 'active_support/time_with_zone' | |
require 'minitest/autorun' | |
require 'logger' | |
# Ensure backward compatibility with Minitest 4 | |
Minitest::Test = MiniTest::Unit::TestCase unless defined?(Minitest::Test) |
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/bash | |
#=============================================================================== | |
# FILE: infopark_system_check.sh | |
# | |
# USAGE: infopark_system_check.sh | |
# | |
# DESCRIPTION: Checks various system components on whether they are installed | |
# in a version needed to participate in the Infopark workshops. | |
# | |
# AUTHOR: Falk Köppe, [email protected] |
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
// ==UserScript== | |
// @name Find Cloud | |
// @namespace Scalarium | |
// @include https://manage.scalarium.com/clouds | |
// @include https://manage.scalarium.com/ | |
// @include https://manage.scalarium.com | |
// @version 2 | |
// ==/UserScript== | |
( |
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
homebrew ((8d9fd73...)) $ git co master | |
Switched to branch 'master' | |
Your branch is behind 'upstream/master' by 13 commits, and can be fast-forwarded. | |
homebrew (master) $ brew update | |
Already up-to-date. | |
homebrew (master) $ |
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 was proposed by @ericgj in | |
# https://github.com/jnunemaker/httparty/issues/75#issuecomment-1258914 | |
# using native json parser instead of Crack | |
class JsonParser < HTTParty::Parser | |
def json | |
::JSON.parse(body) | |
end | |
end |
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
.custom img#plusone { | |
cursor: pointer; | |
} | |
.custom #fbl { | |
cursor: pointer; | |
color:#2361A1; | |
font:0.65em Verdana, sans-serif; | |
border: 1px solid #CAD4E7; | |
border-radius: 3px; |
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 | |
url = "https://github.com/#{%x(git config github.user).chomp}/#{File.basename(Dir.pwd)}" | |
exec "/usr/bin/open #{url}" |
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
prompt('',gApplication.getMap().getCenter()); |
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
source 'http://rubygems.org' | |
gem 'rails', '3.0.3' | |
group :development do | |
gem 'ruby-prof', '< 0.9.0' | |
gem 'rack-contrib' #, :require => 'rack/contrib' | |
end |