Skip to content

Instantly share code, notes, and snippets.

@tortillaj
tortillaj / SassMeister-input-HTML.html
Last active August 29, 2015 14:20
Sass Variables
<div>
<h1>This text is red</h1>
<p>Yet paragraphs are blue. <a href="#">Links are blue too.</a></p>
</div>
@tortillaj
tortillaj / gist:80dfd6a7030bf50b4855
Last active August 29, 2015 14:18
Gotour Loops and Functions
package main
import (
"fmt"
"math"
)
func NewtonSqrt(x float64, z float64) float64 {
return z - ((math.Pow(z, 2.0) - x) / (2 * z))
}
@tortillaj
tortillaj / _.md
Created March 20, 2015 17:22
perlin ink
@tortillaj
tortillaj / mysql-backup.sh
Last active January 4, 2016 18:09
Easy MySQL backups with Bash
#!/bin/bash
# Database credentials
user="XXXXX"
password="XXXXX"
host="XXXXX"
db_name="XXXXX"
# Other options
backup_path="/location/of/your/backups"