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:
#!/usr/bin/env bash | |
# Add this file to your ~/.rvm/hooks/ directory to auto-initiate hitch | |
# whenever you cd into a project where the hitch gem is installed in the current rvm gemset. | |
if [[ -r ./.rvmrc && -n $(which hitch) && -x $(which hitch) ]]; then | |
echo 'Starting hitch' | |
hitch | |
fi |
# Syncronization Sequence (Phase 1) | |
User->App: Open & Login | |
App->Server: GET ToDos | |
Server->App: 200 OK\n{title:eat breakfast, updated:02:00} | |
Web->Server: Update ToDo #1 via web at 02:30\n{title:eat lunch} | |
User->App: Update ToDo #1 in app at 03:00 | |
App->Server: PUT update ToDo #1\n{title:eat dinner} | |
note over Server | |
The web changes are overwritten |
<script type="text/javascript" src="https://your.domainna.me/path/to/widget.js"> |
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}) |
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 |
# 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 |
After Dinner Mint | |
Aloe Can You Go? | |
Aloe Mist | |
Aloe Plant | |
Apple Martini | |
Applemint | |
Arboretum | |
Artificial Turf | |
Asparagus Fern | |
Bonsai |
#!/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: |
I hereby claim:
To claim this, I am signing this object:
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 |