[ Launch: perlin ink ] 6dccc985480cc4ce2c89 by tortillaj[ Launch: perlin ink ] c398dead2022827e9b01 by enjalot[ Launch: perlin ink ] 6096421 by enjalot[ Launch: perlin ink ] 5087625 by enjalot[ Launch: perlin wormsss ] 5080123 by enjalot[ Launch: perlin worms combo ] 5080115 by enjalot[ Launch: perlin worms tan ] 5080107 by enjalot[ Launch: perlin noise ] 5062000 by enjalot[ Launch: perlin noise ] 5061982 by enjalot
This file contains hidden or 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
<div> | |
<h1>This text is red</h1> | |
<p>Yet paragraphs are blue. <a href="#">Links are blue too.</a></p> | |
</div> |
This file contains hidden or 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
package main | |
import ( | |
"fmt" | |
"math" | |
) | |
func NewtonSqrt(x float64, z float64) float64 { | |
return z - ((math.Pow(z, 2.0) - x) / (2 * z)) | |
} |
This file contains hidden or 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/bash | |
# Database credentials | |
user="XXXXX" | |
password="XXXXX" | |
host="XXXXX" | |
db_name="XXXXX" | |
# Other options | |
backup_path="/location/of/your/backups" |
NewerOlder