Keybase proof
I hereby claim:
- I am debreczeni on github.
- I am davidd (https://keybase.io/davidd) on keybase.
- I have a public key ASC9WKA5kVQL0IDNxksA0K6woBL5EQaeDvWJfOfMBV0WFAo
To claim this, I am signing this object:
#!/bin/bash | |
#set -x | |
# Shows you the largest objects in your repo's pack file. | |
# Written for osx. | |
# | |
# @see http://stubbisms.wordpress.com/2009/07/10/git-script-to-show-largest-pack-objects-and-trim-your-waist-line/ | |
# @author Antony Stubbs |
I hereby claim:
To claim this, I am signing this object:
require 'zendesk_api' | |
class Zendesk | |
attr_accessor :client | |
def initialize | |
@client = ZendeskAPI::Client.new do |config| | |
# Mandatory: | |
config.url = "<- your-zendesk-url ->" # e.g. https://mydesk.zendesk.com/api/v2 |
class IBAN | |
def self.sanitize(account_number) | |
account_number.gsub(/\D*/, '') | |
end | |
def self.giro2iban(giro, country_code = 'HU') | |
giro = sanitize giro | |
country_code.upcase! | |
unless giro.size == 16 || giro.size == 24 |
// csikozas | |
#virtuall > tbody > tr.alt2 > td:nth-of-type(2) { background:#B6D8F5; } | |
// tabla kerekites | |
#virtuall { border-collapse:separate; } | |
#virtuall td, #virtuall th { border:1px solid #000000; border-width: 1px 1px 0 0;} | |
#virtuall tr:first-child th:first-child { -moz-border-radius-topleft: 10px; -webkit-border-top-left-radius: 10px; border-top-left-radius: 10px; } | |
#virtuall tr:first-child th:last-child { -moz-border-radius-topright: 10px; -webkit-border-top-right-radius: 10px; border-top-right-radius: 10px; } | |
#virtuall tr:last-child td:first-child { -moz-border-radius-bottomleft: 10px; -webkit-border-bottom-left-radius: 10px; border-bottom-left-radius: 10px; } | |
#virtuall tr:last-child td:last-child { -moz-border-radius-bottomright: 10px; -webkit-border-bottom-right-radius: 10px; border-bottom-right-radius: 10px; } |
#!/usr/bin/env ruby | |
require 'mechanize' | |
# require 'awesome_print' | |
# require 'pry-debugger' | |
class TwentyNiner | |
def initialize | |
@index_page_url = 'http://apro.bikemag.hu/browse/mountain-bike/mtb-kerekpar/' | |
@wheel_size = /29/ |
# lib/slip13.rb | |
# Ruby implementation of SLIP-0013 : Authentication using deterministic hierarchy | |
# https://doc.satoshilabs.com/slips/slip-0013.html | |
module SLIP13 | |
class HDNode | |
def initialize(uri, index = 0) | |
@uri = uri | |
@index = index |
#!/bin/bash | |
#set -x | |
# Shows you the largest objects in your repo's pack file. | |
# Written for osx. | |
# | |
# @see http://stubbisms.wordpress.com/2009/07/10/git-script-to-show-largest-pack-objects-and-trim-your-waist-line/ | |
# @author Antony Stubbs | |
# set the internal field spereator to line break, so that we can iterate easily over the verify-pack output |
# RSpec 2.0 syntax Cheet Sheet by http://ApproachE.com | |
# defining spec within a module will automatically pick Player::MovieList as a 'subject' (see below) | |
module Player | |
describe MovieList, "with optional description" do | |
it "is pending example, so that you can write ones quickly" | |
it "is already working example that we want to suspend from failing temporarily" do | |
pending("working on another feature that temporarily breaks this one") |
how to install edge refinery cms for rails 3.1:
install rail 3.1
gem install rails
generate new app from refinerycms github repo
rails new app_name -m https://raw.github.com/resolve/refinerycms/master/templates/refinery/edge.rb