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
package main | |
import ( | |
"fmt" | |
"math" | |
) | |
type ErrNegSqrt float64 | |
func (e ErrNegSqrt) Error() string { |
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
package main | |
import "golang.org/x/tour/pic" | |
func Pic(dx, dy int) [][]uint8 { | |
grid := make([][]uint8, dy) | |
for y := range grid { | |
line := make([]uint8, dx) | |
for x := range line { | |
line[x] = uint8(y-x) |
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
brew install figlet coreutils # for OSX | |
figlet -f $(ls $(brew --prefix figlet)/share/figlet/fonts/ | grep ".flf" | shuf -n 1) "Atmanaut" |
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
# Kamadhenu | |
# https://www.wikiwand.com/en/Kamadhenu | |
# | |
# the holy cow speaketh | |
# | |
# for OSX, possible to port to Linux | |
brew install figlet cowsay lolcat fortune | |
git clone https://github.com/krry/cowsay-files |
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
* { | |
/* de-pixelates light text on dark backgrounds */ | |
-moz-osx-font-smoothing: grayscale; | |
-webkit-font-smoothing: subpixel-antialiased; | |
text-rendering: geometricPrecision; | |
/* optimizeSpeed turns kerning & ligatures off, optimizeLegibility turns them on */ | |
/* geometricPrecision prevents browsers from rounding partial font sizes */ | |
} |
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
@import url('https://fonts.googleapis.com/css?family=Montserrat'); | |
.tl-embedded-timeline { | |
overflow: hidden; | |
width: 100%; | |
height: 100vh; | |
} | |
.tl-font, .tl-font-head, .tl-font-body { | |
font-family: "Montserrat", "Futura", "Trebuchet MS", sans-serif !important; |
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
# Grap multiple user's user_timeline from twitter API and save to Excel | |
# Code will be save user's tweet ID, created Time, Coordinates-x, Coordinates-y, source, text. Can be modified at line 48 and so on | |
# Original code from https://gist.github.com/yanofsky/5436496 "A script to download all of a user's tweets into a csv" | |
import xlsxwriter | |
import tweepy | |
#https://github.com/tweepy/tweepy | |
consumer_key = "Your_consumer_key" |
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
/* Random Boolean */ | |
var randomNumber = Math.random() >= 0.5; | |
console.log(randomNumber); |
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
.DS_Store | |
*.seed | |
*.log | |
*.csv | |
*.dat | |
*.out | |
*.pid | |
*.gz | |
pids |
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
{ | |
"vars": { | |
"@gray-darker": "#333333", | |
"@gray-dark": "#5f5f5f", | |
"@gray": "#808080", | |
"@gray-light": "#d9d9d9", | |
"@gray-lighter": "#e6e6e6", | |
"@brand-primary": "#008752", | |
"@brand-success": "#13ab4a", | |
"@brand-info": "#59b0e0", |