I hereby claim:
- I am metavida on github.
- I am metavida (https://keybase.io/metavida) on keybase.
- I have a public key ASCAyyfQAc_O2ixZXqcFp0VpTT3QNBG-VtgPJC_iAUh97Ao
To claim this, I am signing this object:
| # The following instructions allowed me to isntall a custom version of OpenSSL | |
| # along-side any existing versions | |
| # and then re-compile ruby using rvm so that the custom OpenSSL was used. | |
| openssl_version='1.0.2j' | |
| # Get openssl | |
| cd ~root/src/ | |
| wget https://www.openssl.org/source/openssl-${openssl_version}.tar.gz |
| def plain | |
| <<-ERR | |
| Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor | |
| incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud | |
| exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure | |
| dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla | |
| pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia | |
| deserunt mollit anim id est laborum. | |
| ERR | |
| end |
| $ node --version | |
| v5.6.0 | |
| $ node -e "console.log(-1 % 7)" | |
| -1 | |
| $ bc --version | |
| bc 1.06 | |
| Copyright 1991-1994, 1997, 1998, 2000 Free Software Foundation, Inc. | |
| $ echo "-1 % 7 "| bc | |
| -1 |
| require 'fileutils' | |
| @basedir = "/tmp/symlink_test" | |
| def print_dir | |
| Dir.glob('./**/*').each do |path| | |
| if File.symlink?(path) | |
| puts "#{path} -> #{File.readlink(path)}" | |
| else | |
| puts path | |
| end |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env ruby | |
| require 'time' | |
| if ARGV[0].to_s.empty? | |
| puts <<-USAGE | |
| Outputs info & warnings that try to help determine if Chrome, Firefox, or IE might display SHA1-related warnings about your the certificates for a given domain. | |
| Usage: #{__FILE__} hostname [-v|--tabs] | |
| Examples: |
| After Dinner Mint | |
| Aloe Can You Go? | |
| Aloe Mist | |
| Aloe Plant | |
| Apple Martini | |
| Applemint | |
| Arboretum | |
| Artificial Turf | |
| Asparagus Fern | |
| Bonsai |
| # A simple web service that can be used to test Haiku's Federated Login system. | |
| # | |
| # Since there's no real data backing this authentication script, it will authorize | |
| # any username given as long as the password matches the default_password (set below). | |
| # | |
| # In order to simulate "SSO via a Signed Link" this script will authorize any session_key | |
| # given to it, removing any non-login-safe characters. | |
| # | |
| # Use the following commands to start this authentication service: | |
| # gem install sinatra |
| cd /tmp | |
| curl -o git-2.2.1.tar.gz "https://www.kernel.org/pub/software/scm/git/git-2.2.1.tar.gz" | |
| curl -o git-2.2.1.tar.sign "https://www.kernel.org/pub/software/scm/git/git-2.2.1.tar.sign" | |
| tar zxvf git-2.2.1.tar.gz | |
| cd git-2.2.1 | |
| ./configure |
| document.getElementById('content-main-heading') | |
| document.getElementById('content-main-heading').style.zoom //=> "1" | |
| document.getElementById('content-main-heading').style.zoom = 2 | |
| document.getElementById('content-main-heading').style.zoom //=> "2" | |
| var myZoomyTitle = document.getElementById('content-main-heading') | |
| myZoomyTitle.style.zoom //=> "2" | |
| myZoomyTitle.style.zoom = 1 | |
| jQuery(myZoomyTitle).animate({zoom: 2}) |