I hereby claim:
- I am crispgm on github.
- I am crispgm (https://keybase.io/crispgm) on keybase.
- I have a public key ASAdGm896HU6rlyeNwP5ubKwDHvixAp9L72QhvkL_rty8wo
To claim this, I am signing this object:
/* ==UserStyle== | |
@name Pinboard-Olivia | |
@description Olivia theme for pinboard.in | |
@match *://pinboard.in/* | |
==/UserStyle== */ | |
:root{ | |
--color-0: #ffffff; | |
--color-1: #e8c4b8; | |
--color-2: #2b2b2b; |
// ==UserScript== | |
// @name GeekHack Botanical Theme | |
// @description A simple Botanical theme for GeekHack | |
// @author David Zhang | |
// @match https://geekhack.org/* | |
// ==/UserScript== | |
/* GMK Botanical by Hazzy https://geekhack.org/index.php?topic=102350.0 */ | |
:root{ | |
--color-0: #dde5ed; |
ffmpeg -user_agent "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.7.8 (KHTML, like Gecko) Version/9.1.3 Safari/537.86.7" -i "url_to_m3u8.m3u8" -c copy /path/to/output.mkv |
// ==UserScript== | |
// @name GeekHack Nord Theme | |
// @description A simple Nord theme for GeekHack | |
// @author David Zhang | |
// @match https://geekhack.org/* | |
// ==/UserScript== | |
:root{ | |
--color-0: #ECEFF4; | |
--color-1: #5E81AC; |
package main | |
import ( | |
"fmt" | |
"time" | |
) | |
func main() { | |
loc, _ := time.LoadLocation("Asia/Shanghai") | |
t := time.Now().In(loc) |
I hereby claim:
To claim this, I am signing this object:
grep CRON /var/log/syslog |
awk 'BEGIN {srand()} !/^$/ { if (rand() <= .01) print $0}' |
# roll back commit | |
git reset --soft HEAD^ | |
# remove file from index | |
git reset HEAD path/to/unwanted_file | |
# commit again without unwanted files | |
git commit -m "My commit message" | |
# Source: http://stackoverflow.com/questions/12481639/remove-files-from-git-commit |
module DateAndTime | |
module Calculations | |
def this_year? | |
year == ::Date.current.year | |
end | |
end | |
end |