I hereby claim:
- I am joaumg on github.
- I am joaumg (https://keybase.io/joaumg) on keybase.
- I have a public key whose fingerprint is FC40 5276 64E8 6FB6 2FBB 4E5F 623F 9470 9AC2 4A88
To claim this, I am signing this object:
| require 'test/unit' | |
| def to_text(value) | |
| # TODO: John is trying to implement a function that returns the textual representation, can you help him ? | |
| end | |
| class StringExtensionTest < Test::Unit::TestCase | |
| def test_single_digits | |
| assert_equal(to_text(1), 'one') | |
| assert_equal(to_text(2), 'two') |
| #!/usr/bin/env bash | |
| set -eu | |
| set -o pipefail | |
| # Usage: | |
| # $ crontab -e | |
| # Add the following lines (will run at reboot and at midnight every day): | |
| # @reboot curl -L https://gist.github.com/joaumg/0a66b6329cc5bdd9e02c432e4fe30915/raw | bash | |
| # 0 0 * * * curl -L https://gist.github.com/joaumg/0a66b6329cc5bdd9e02c432e4fe30915/raw | bash |
| -----BEGIN RSA PRIVATE KEY----- | |
| MIIEpAIBAAKCAQEAnTYxGpqnoJqgGuXKtZFO0jZAr1KWm2H9u0TU89tASsQzXyso | |
| gL55l2zI5VuCf89NA5O5PBcCYtVmB/1ZyxUjfGukxTxLhIUeruoieXSZVFeZJLj3 | |
| Zgqu48TDh4QZ6uOS060GUtjq5tn3sbDpJe8UTv+NAIAXtN86CwJClICCyzlU2aeU | |
| J+qK2luWC3+1/wy+XT9yLVCndPNRw5EgZvn8IcIwZChX6QfPvpVJTHmWgOybG8cX | |
| Rv1pCTO5EcaD62tpdy3XMjm7qbeGfaC0uLNSOsoL1AUJjWbyvyd2IS0Q15zA+pNq | |
| qNcD6ylR3lYZRF6/hC+cE9+1nijgHeZRSh8OmwIDAQABAoIBAQCD08xrPaIwl1iI | |
| FYbcp+NLfHjTS1LFKu9kGDzl20VXLJzTQdJt2ssFAhCX2xtb503yIO5kB/tVOxKa | |
| woSIOcqO64i4Z23/yszG6chMxkxIoEfntj6mT3EFx5oaSdid0YTugRlbYU/gkogU | |
| dX+b8pW6BKqM79xxK/p0/skr03NZywHr8U/OHRrcT90VzKqfmmwd4UadlVXNQJiw |
| #!/usr/bin/ruby | |
| require 'whois' | |
| require 'whois-parser' | |
| require 'logger' | |
| # | |
| class WhoisDiscovery | |
| def initialize | |
| $stdout.sync = true |
I hereby claim:
To claim this, I am signing this object:
| doctype html | |
| html(lang='en') | |
| head | |
| title Jade | |
| body | |
| #container.col('[(ngModel)]'='bar') | |
| div('[class.active]'='isActive') | |
| button((click)="toggleImage()") | |
| .link | |
| a('[routerLink]'="['/movies']") Movies |
| #!/bin/sh | |
| # Usage : fix_vbox_guest_addition VERSION | |
| # Example : fix_vbox_guest_addition 5.0.20 | |
| # License: MIT ( https://opensource.org/licenses/MIT ) | |
| fix_vbox_guest_addition() { | |
| sudo wget \ | |
| -c http://download.virtualbox.org/virtualbox/$1/VBoxGuestAdditions_$1.iso \ | |
| -O VBoxGuestAdditions_$1.iso |