require 'balanced' | |
# create an api key and marketplace for example purposes only. | |
# in real-life you only do this once by the dashboard. | |
api_key = Balanced::ApiKey.new.save | |
Balanced.configure(api_key.secret) | |
marketplace = Balanced::Marketplace.new.save | |
# create a bank account. this is normally done with balanced.js |
/** | |
* Balanced.js Validators | |
* | |
* jQuery Validation methods for use with Balanced.js | |
*/ | |
;(function($) { | |
"use strict"; | |
/** |
#!/bin/sh | |
echo Install all AppStore Apps at first! | |
# no solution to automate AppStore installs | |
read -p "Press any key to continue... " -n1 -s | |
echo '\n' | |
echo Install and Set San Francisco as System Font | |
ruby -e "$(curl -fsSL https://raw.github.com/wellsriley/YosemiteSanFranciscoFont/master/install)" | |
echo Install Homebrew, Postgres, wget and cask | |
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)" |
var map = L.map('map').setView([29.7628, - 95.3831], 15); | |
var openStreet = L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png').addTo(map); | |
var baseLayers = { | |
"OpenStreetMap": openStreet | |
}; | |
var overlays = {}; | |
function project(point) { | |
var latlng = new L.LatLng(point[1], point[0]); | |
var layerPoint = map.latLngToLayerPoint(latlng); |
I want to be extremely clear about three things. First, this is my personal opinion – insert full standard disclaimer. Second, this is not a condemnation of everyone at RSA, present and past. I assume most of them are pretty okay, and that the problem is confined to a few specific points in the company. However, “unknown problem people making major decisions at RSA” is a bit unwieldy, so I will just say RSA. Third, I'm not calling for a total boycott on RSA. I work almost literally across the street from them and I don’t want to get beat up by roving gangs of cryptographers at the local Chipotle.
RSA's denial published last night is utter codswallop that denies pretty much everything in the world except the actual allegations put forth by Reuters and hinted at for months by [other sources](http://li
#Getting Started
##Webpage:
<html>
<head>
<title>Testing with Ruby and Selenium WebDriver</title>
</head>
<body bgcolor="antiquewhite">
- RequetBin - http://requestb.in/
- NGrok - https://ngrok.com/
- Man In the Middle Proxy - http://mitmproxy.org/
- PostMan - http://getpostman.com/
- Hurl.it - http://www.hurl.it/
- PonyDebugger - https://github.com/square/PonyDebugger
NOTE: This post now lives (and kept up to date) on my blog: http://hakunin.com/rails3-load-paths
Do nothing. All files in this dir are eager loaded in production and lazy loaded in development by default.