I hereby claim:
- I am neilsarkar on github.
- I am neilsarkar (https://keybase.io/neilsarkar) on keybase.
- I have a public key whose fingerprint is AE1F D2C0 DD5D 0BA6 BBEB 9659 6A89 03A3 7E47 EA82
To claim this, I am signing this object:
require 'bundler/capistrano' | |
set :application, 'app_name' | |
set :repository, '[email protected]:username/app_name.git' | |
set :deploy_to, "/var/www/#{application}" | |
set :scm, 'git' | |
set :user, 'username' | |
server 'example.com', :app, :web, :db, :primary => true |
# /etc/hosts | |
127.0.0.1 example.com | |
127.0.0.1 api.example.com |
[ | |
... | |
{ | |
"keys": ["super+r"], | |
"command": "run_tests", | |
"args": {"single": false} | |
}, | |
{ | |
"keys": ["super+shift+r"], |
# user.rb | |
class User < ActiveRecord::Base | |
# create a balanced account for each new user | |
before_create :create_balanced_account | |
# credit_card_uri and bank_account_uri are tokenized client side | |
# in webviews using balanced.js | |
attr_accessible :account_uri, | |
:credit_card_uri, |
<!doctype html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Cookies</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<h1>The Best Chocolate Chip Cookies</h1> |
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Wendy G. Bite</title> | |
<link rel="stylesheet" href="css/style.css"> | |
</head> | |
<body> | |
<h1>Wendy G. Bite</h1> |
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Wendy G. Bite | Résumé</title> | |
<link rel="stylesheet" href="css/style.css"> | |
</head> | |
<body> | |
<h1>Wendy G. Bite</h1> |
body { | |
font-family: sans-serif; | |
font-size: 18px; | |
line-height: 1.5; | |
margin: 30px; | |
border: 5px solid #777777; | |
padding: 50px; | |
background: #444444; | |
color: #EEEEEE; | |
} |
I hereby claim:
To claim this, I am signing this object:
'use strict'; | |
import React, {Component} from 'react'; | |
import { | |
Text, | |
} from 'react-native'; | |
export default class AppText extends Component { | |
constructor(props) { | |
super(props) |