I hereby claim:
- I am h-lame on github.
- I am hlame (https://keybase.io/hlame) on keybase.
- I have a public key whose fingerprint is 39B4 6B57 2042 0DED F0F4 8D1C 770E BCE3 52EA C8EA
To claim this, I am signing this object:
#!/usr/bin/env ruby | |
class Renamer | |
attr_reader :from, :to | |
def initialize(from, to) | |
@from = from | |
@to = to | |
end |
module TicketProcessing | |
class TicketHTMLGenerator | |
def initialize(ticket) | |
@ticket = ticket | |
end | |
def generate! | |
renderer.render(context) | |
end |
(function($) { | |
$(function() { | |
var toggle_topics_and_policies = function() { | |
var elem = $(this); | |
var target = elem.parent().data('itemType'); | |
elem.parents('.well').find('.featured-item-type-pane').hide(); | |
elem.parents('.well').find('.featured-item-type-pane[data-item-type='+target+']').show(); | |
}; | |
var wait_for_chosen_to_be_ready_before_toggle_initial_topic_vs_policy_selector = function(container) { | |
// know how many lists to expect |
[ui] | |
verbose = True | |
merge = diffmerge | |
[pager] | |
pager = LESS='FSRX' less | |
[extensions] | |
pager = | |
color = |
module Scoring | |
def self.included(base) | |
base.class_eval do | |
let(:__score_keeper) { ScoreKeeper.new } | |
extend ScoreHelpers | |
include ScoreMatchers | |
end | |
end | |
class ScoreKeeper |
<html> | |
<head> | |
<style> | |
pre.terminal { | |
display: block; | |
background-color: black; | |
color: white; | |
font-family: monospace; | |
height: 480px; | |
width: 640px; |
I hereby claim:
To claim this, I am signing this object:
class BWT | |
def encode(string) | |
chars = "#{string}$".chars | |
rotations = [] | |
chars.length.times. | |
inject(chars) do |new_chars, _| | |
rotations << new_chars | |
new_chars.rotate | |
end |
def find_previous_table_for(element) | |
find_previous_sibling_of_type(element, 'table') | |
end | |
def find_previous_sibling_of_type(element, element_type_to_find) | |
previous_siblings(element).find do |previous_element| | |
previous_element.node_name == element_type_to_find | |
end | |
end |
From: Murray Steele <[email protected]> | |
To: London Ruby Users Group <[email protected]> | |
Subject: [LRUG] [GIVEAWAY] Copies of "The Well Grounded Rubyist (2nd Edition)" to give away | |
Hi all, | |
As announced at the start of the meeting on Monday the nice folks at | |
Infinitium Global have decided to give a little back to the community in | |
some way. One thing they were keen for is that they were giving back to | |
the community in a way that would help it grow and encourage folk just |