Skip to content

Instantly share code, notes, and snippets.

View alto's full-sized avatar

Thorsten Böttger alto

View GitHub Profile
@alto
alto / ash_ffffind.py
Last active April 13, 2017 05:24 — forked from ashildebrandt/ash_ffffind.py
Ffffind (downloads every image from a given FFFFOUND! account)
"""
ash_ffffind.py
v1.1 (September 14, 2015)
by me@aaronhildebrandt.com
Automatically downloads all images from ffffound saved by a specific user.
Will first try to download the image from the original source (to get the highest quality possible).
If that fails, it'll download the cached version from ffffound.
require 'rubygems'
require 'yaml'
# A demonstration of YAML anchors, references and handling of nested values
# For more info, see:
# http://atechie.net/2009/07/merging-hashes-in-yaml-conf-files/
stooges = YAML::load( File.read('stooges.yml') )
# => {
# "default" => {

Keybase proof

I hereby claim:

  • I am alto on github.
  • I am alto (https://keybase.io/alto) on keybase.
  • I have a public key whose fingerprint is C0DC 3131 6C29 B56A FD32 9F87 C8BE F36F FC44 C1BB

To claim this, I am signing this object:

@alto
alto / fixtures_test.rb
Created November 1, 2012 01:43
fixtures validity
require 'test_helper'
class FixturesTest < ActiveSupport::TestCase
def test_fixtures_for_validity
fixture_tables = all_fixture_tables
assert_not_equal 0, fixture_tables.size, "Unable to find any fixtures in #{fixture_files_path}"
fixture_tables.each do |table_name|
ActiveRecord::Fixtures.all_loaded_fixtures[table_name].each do |f|
fixture_name = f[0]
@alto
alto / job.rb
Created October 3, 2012 08:12
Adding to_s to classes
class Job
def initialize(items_to_process)
@items = items_to_process
@timestamp = Time.now
# start_processing in the background...
end
def to_s
if finished?
"All work is done, all #{@items.size} items are processed."
require 'test_helper'
class MyHelperTest < ActionView::TestCase
test "title" do
assert_select_in '<h1>My Awesome App</h1>', 'h1'
end
test "nav" do
html = '<div id="nav"><a href="/">Home</a></div>'
assert_select_in html, 'div' do
@alto
alto / bigdecimal
Created June 28, 2012 22:50
Now with using BigDecimal for more precision we really have nice numbers with more than 1 million digits.
This file has been truncated, but you can view the full file.
0.1186665000 0000000004 1499999999 9999999195 8313039789 0630162499 9999999999 9999138089 3110577409 2150528461 8283188471 8502009569 6272489499 9999999999 9999973276 4779187664 3022516776 0716064407 1430666530 2283343930 0971513507 7248999367 1478966528 3850326553 0047597210 8854924082 1222516463 0500000000 0000000000 1851712948 1791659549 2210564072 0557814614 7269867466 8876461403 2946271574 6826228847 6502376014 2036986311 7669628225 0465744053 6162070699 3383929906 8952268320 2939559792 2099858573 7081241398 2852916117 3330548056 7010688743 0098470955 0575470505 1660601032 7930673768 6477691379 2028027334 9999999999 9999999315 5923982360 2678802063 6066448064 0589602908 6522182082 3380627031 2195025795 9755552844 3663259899 3008886307 0046642008 2617014047 0294802213 1632917492 2868148700 3153739921 7451243429 7011224235 6921036054 5162263573 5097966665 0011309966 1959612344 6865712351 9543306906 5670545633 0200088811 0878220993 2594708637 4349396955 7928963097 2249471652 5730828340 0701203895 0540492708
@alto
alto / Default (OSX).sublime-keymap
Created June 27, 2012 09:30
My Keymapping and Preferences for Sublime Text 2
[
{ "keys": ["ctrl+shift+b"], "command": "git_blame" },
{ "keys": ["ctrl+w"], "command": "find_under_expand" },
{ "keys": ["super+ctrl+r"], "command": "reveal_in_side_bar" },
{ "keys": ["super+ctrl+w"], "command": "close_all" },
{ "keys": ["super+shift+t"], "command": "show_overlay", "args": {"overlay": "goto", "text": "@"} },
{ "keys": ["ctrl+shift+d"], "command": "duplicate_line" },
{ "keys": ["ctrl+l"], "command": "insert", "args": {"characters": " => "} },
{ "keys": ["super+shift+l"], "command": "expand_selection", "args": {"to": "line"} },
{ "keys": ["super+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} },
@alto
alto / gist:2823468
Created May 29, 2012 09:13 — forked from jacqui/gist:983051
Redis SORT command examples
# Optimized for writes, sort on read
# LVC
redis.hset("bonds|1", "bid_price", 96.01)
redis.hset("bonds|1", "ask_price", 97.53)
redis.hset("bonds|2", "bid_price", 95.50)
redis.hset("bonds|2", "ask_price", 98.25)
redis.sadd("bond_ids", 1)
redis.sadd("bond_ids", 2)
class ActionDispatch::Routing::Mapper
def draw(routes_name)
instance_eval(File.read(Rails.root.join("config/routes/#{routes_name}.rb")))
end
end
BCX::Application.routes.draw do
draw :api
draw :account
draw :session