I hereby claim:
- I am grekko on github.
- I am grekko (https://keybase.io/grekko) on keybase.
- I have a public key whose fingerprint is 7751 4AFC C6CF 9CB1 F471 ED8C B7A0 8E77 273A F8E0
To claim this, I am signing this object:
#!/bin/sh | |
# Source: https://www.danpurdy.co.uk/web-development/raspberry-pi-kiosk-screen-tutorial/ | |
sudo apt-get update && sudo apt-get upgrade -y | |
sudo apt-get install chromium x11-xserver-utils unclutter | |
# After the installation, do: | |
# 1) Disable screensaver | |
# sudo nano /etc/xdg/lxsession/LXDE/autostart | |
# 2) Disable by commenting out: "@xscreensaver -no-splash" | |
# Add the following: |
Gem::Specification.new do |s| | |
s.name = 'rspec-helpers-require_lib' | |
s.version = '0.0.1' | |
s.platform = Gem::Platform::RUBY | |
s.author = 'Gregory Igelmund' | |
s.email = '[email protected]' | |
s.summary = 'requiring libs made easy' | |
s.description = 'requiring libs made eady' | |
s.files = ['rspec-helpers-require_lib.rb'] |
I hereby claim:
To claim this, I am signing this object:
describe('Game of life', function() { | |
it('should evolve exist', function() { | |
assert.equal(typeof e, 'function'); | |
}); | |
it('should evolve return same length list', function() { | |
var board = [0, 0, 0, 0, 0]; | |
assert.equal(e(board).length, board.length); |
#!/usr/bin/env ruby | |
require 'open-uri' | |
require 'pathname' | |
PATCH_REPO_BASE_URL = 'https://raw.githubusercontent.com/skaes/rvm-patchsets/master' | |
PATCH_SET = ARGV[0] | |
PATCH_RUBY_VERSION = ARGV[1] | |
raise 'Please specify a patchset (e.g. railsexpress). `ruby-install-with-patches railsexpress 2.2.3`' if PATCH_SET.nil? |
window.__startDate = function(startHours, startMinutes) { | |
dateStr = $('.timesTable .first').data('date-string').toString(); | |
date = new Date(dateStr.substr(0, 4), dateStr.substr(4, 2), dateStr.substr(6, 2)); | |
date.setHours(startHours); | |
date.setMinutes(startMinutes); | |
return date; | |
}; | |
window.__dateIncMinutes = function(date, minutes) { | |
var ms = date.getTime(); |
# color settings | |
# http://www.drbunsen.org/the-text-triumvirate/ | |
set -g default-terminal "screen-256color" | |
# Status bar | |
set -g window-status-format "#[fg=colour244,bg=colour234]#I#[fg=colour240]|#[fg=colour249]#W" | |
set -g window-status-current-format "#[fg=colour117,bg=colour31] [#I] #[fg=colour231,bold]#W " | |
# using C-q instead of C-b | |
set-option -g prefix C-q |
I hereby claim:
To claim this, I am signing this object:
// SoCraTes Saturday Board | |
const boardId = '57c0027c35c4653ca5d1c29a'; | |
const error = (errorMsg) => { asyncOutput(errorMsg); }; | |
// Lists per Board | |
const listNames = [ | |
"Hamburg", | |
"Hannover", | |
"Bremen", | |
"Berlin", |
const headlines = document.querySelectorAll("h2") | |
// You can check the type of an object by | |
// headlines.constructor | |
// => NodeList() { [native code] } |