Skip to content

Instantly share code, notes, and snippets.

View joemocha's full-sized avatar
🎯
Focusing

joemocha

🎯
Focusing
View GitHub Profile
{"started_at":1444594479652,"response":{"status":200,"size":"324","headers":{"x-content-type-options":"nosniff","content-type":"text\/html;charset=utf-8","request-id":"f34bff7d-8efa-4912-bf4a-4637cac05b22","content-length":"6","via":"kong\/0.5.0","vary":"Accept-Encoding","x-xss-protection":"1; mode=block","x-frame-options":"SAMEORIGIN","connection":"close"}},"request":{"method":"GET","uri":"\/","size":"118","request_uri":"http:\/\/akuja.dev:8000\/","querystring":{},"headers":{"host":"akuja.dev","user-agent":"Paw\/2.2.3 (Macintosh; OS X\/10.11.0) GCDHTTPRequest","connection":"close"}},"client_ip":"10.0.2.2","api":{"upstream_url":"http:\/\/192.168.99.100:5000","request_path":"\/","id":"e1f91295-76e4-4557-c581-347e0bfa7287","name":"akuja","preserve_host":true,"created_at":1444587685000,"request_host":"akuja.dev"},"latencies":{"request":160,"kong":35,"proxy":123}}
{"started_at":1444594480630,"response":{"status":200,"size":"324","headers":{"x-content-type-options":"nosniff","content-type":"text\/html;charset=utf-
begin
address = EasyPost::Address.create(
:name => 'Test Person',
:street1 => '15 TANGUAY AVENUE',
:city => 'Nashua',
:state => 'NH',
:zip => '03062',
:country => 'US',
:phone => '201-273-8374',
:residential => false
@joemocha
joemocha / designer.html
Created October 17, 2014 03:22
designer
<link rel="import" href="../google-map/google-map.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
@joemocha
joemocha / symbol_vs_string.rb
Created August 19, 2014 00:56
Benchmark for comparing symbol and string usage
require 'benchmark'
str = Benchmark.measure do
10_000_000.times do
"test"
end
end.total
sym = Benchmark.measure do
10_000_000.times do
@joemocha
joemocha / home.html
Created February 12, 2014 20:55
google ad for the frontpage
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<script type="text/javascript">
// <![CDATA[
/*
App Data
Changeable
*/
#! /bin/sh
# Run this from the folder you want to be the parent of your docs
# By default, generated docs go into
# titanium_mobile/dist/apidoc/ti_mobile_docs/
#
# This can be changed below
git clone https://github.com/appcelerator/titanium_mobile.git
cd titanium_mobile
sudo apt-get install python-setuptools python-dev
<article class='activity_stream_message' id='activity_stream_message_4f7130161aabef3963000026'>
<aside class='user-thumbnail'>
<figure>
<img alt="Picture_100x100" height="100" src="/assets/missing/picture_100x100.jpg" width="100" />
</figure>
</aside>
<aside class='stream_message_content'>
<section>
<a href="#" class="bookmark " path="/events/4f6c0c7c1aabef4d8c000005" title="Let's Go!"> </a>
<header>
{
"login": "asdfasdfas",
"password": "ASDF354asda@sss",
"validation_mode": ":live"
}
@joemocha
joemocha / gist:1811956
Created February 13, 2012 00:04
rbenv this Mf'er
namespace :rvm do
task :bootstrap do
run "echo 'Overwrote rvm:bootstrap'"
rbenv_script = <<-SH
#!/bin/bash
#
# And now install rbenv
export PATH=$PATH:$HOME/bin:$HOME/.rbenv/shims
VERSION='#{ruby_version}'
- simple_form_for @user, :url => user_account_path(@user), :html => { id: "user_form", method: "put", multipart: true, remote: true } do |f|