This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"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- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="import" href="../google-map/google-map.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'benchmark' | |
str = Benchmark.measure do | |
10_000_000.times do | |
"test" | |
end | |
end.total | |
sym = Benchmark.measure do | |
10_000_000.times do |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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 | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"login": "asdfasdfas", | |
"password": "ASDF354asda@sss", | |
"validation_mode": ":live" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}' | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- simple_form_for @user, :url => user_account_path(@user), :html => { id: "user_form", method: "put", multipart: true, remote: true } do |f| |