#ActiveRecord cheat sheet / EXAMPLES
$ gem install activerecord
in GEMFILE: gem ‘activerecord’
REQUIRE
//https://developers.google.com/analytics/devguides/collection/analyticsjs/advanced#multipletrackers | |
ga('create', 'UA-54906935-2', 'auto', {'name': 'lifefuelsTracker'}); | |
ga('require', 'ec'); | |
ga('ec:setAction', 'purchase', { | |
'id': 'SET_TRANS_ID_HERE', // (Required) Transaction id (string). | |
'revenue': 'SET_TOTAL_HERE', // Revenue (currency). | |
'coupon': 'SET_COUPON_HERE' // Transaction coupon (string). | |
}); | |
ga('lifefuelsTracker.send', 'event', 'preorders', 'completed purchase'); |
package main | |
import ( | |
"fmt" | |
"time" | |
) | |
func main() { | |
count := 0 |
sleep (Time.now.round + 1 - Time.now).to_r | |
puts "Time is now #{"%10.5f" % Time.now.to_f}" | |
start_time = current_time = Time.now | |
while current_time.min == start_time.min | |
i = 0 | |
while Time.now.sec == current_time.sec | |
i += 1 | |
end | |
puts "Ran #{i} in the last sec #{"%10.5f" % Time.now.to_f}" |
/** | |
* Corner Ribbon (css-tricks) | |
*/ | |
.wrapper { | |
margin: 50px auto; | |
width: 280px; | |
height: 370px; | |
background: white; | |
border-radius: 10px; |
/** | |
* Simple Styles for hrs (http://css-tricks.com/examples/hrs/) | |
*/ | |
hr.style-one { | |
border: 0; | |
height: 1px; | |
background: #333; | |
background-image: -webkit-linear-gradient(left, #ccc, #333, #ccc); | |
background-image: -moz-linear-gradient(left, #ccc, #333, #ccc); |
/** | |
* Non-form Fieldset Style | |
*/ | |
.fieldset { | |
position: relative; | |
border: 1px solid #ddd; | |
padding: 10px; | |
} |
.inner-border { | |
background: #000; | |
color: #fff; | |
margin: 50px; | |
padding: 15px; | |
position: relative; | |
} | |
.inner-border:before { | |
border: 5px solid #000; | |
content: ""; |
body { | |
background: #e6e6e6; | |
} | |
.corners { | |
background: #f6f6f6; | |
height: 700px; | |
margin: 50px auto; | |
max-width: 600px; | |
position: relative; | |
width: 80%; |
This diff is a modified version of a diff written by Arnis Lapsa. | |
[ The original can be found here: https://gist.github.com/ArnisL/6156593 ] | |
This diff adds support to tmux for 24-bit color CSI SRG sequences. This | |
allows terminal based programs that take advantage of it (e.g., vim or | |
emacs with https://gist.github.com/choppsv1/73d51cedd3e8ec72e1c1 patch) | |
to display 16 million colors while running in tmux. | |
The primary change I made was to support ":" as a delimeter as well |