Dit is een samenvatting van de content van Arjan Lubach's Keezer's quest, gepresenteerd bij Zondag met Lubach. Ik vond deze content in een javascript file, die ik vervolgens wat voor leesbaarheid bewerkt heb (zie scriptje) om hier in yaml formaat te presenteren, voor wie graag alles wil kunnen lezen zonder honderd keer te moeten spelen. :) De content is in spreadsheet formaat (partij vs partij) tevens hier te vinden.
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
group | Amorphous | Bug | Dragon | Fairy | Field | Flying | Grass | Human-Like | Mineral | Monster | Water 1 | Water 2 | Water 3 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Amorphous | - | |||||||||||||
Bug | - | |||||||||||||
Dragon | Dreepy | - | ||||||||||||
Fairy | - | |||||||||||||
Field | Seviper/Silicobra | Pichu/Pachirisu/Dedenne/Tandemaus | - | |||||||||||
Flying | Swablu/Noibat | - | ||||||||||||
Grass | Applin | Hoppip/Shroomish | Spirigatito | - | ||||||||||
Human-Like | Ralts | Impidimp | Lucario | Hawlucha | Cacnea | - | ||||||||
Mineral | Sinistea | Frigibax | Snorunt/Falinks | Cufant/Fidough | - |
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
# prerequisite: create $censored_pdf from $original_pdf using chrome print pdf -> tick 'print as image' (linux chrome) -> save as pdf | |
# split | |
for page_range in ${original_page_ranges[*]}; do | |
pdftk $original_pdf cat $page_range output $page_range.pdf | |
done | |
for page_range in ${censored_page_ranges[*]}; do | |
pdftk $censored_pdf cat $page_range output $page_range.pdf | |
done |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
// https://npm.runkit.com/calendar-link | |
const { google, outlook, office365, yahoo, ics } = require("calendar-link"); | |
const event = { | |
start: "2021-12-31 18:00:00 +0200", | |
duration: [1, "hour"], | |
title: "", | |
location: "", | |
description: "", |
observation: if users wanted not to compensate authors, they already could, so the goal is to facilitate fair reward rather than combat piracy.
- UI: clones aplenty
- payment models
- simple: Payment Request API
- crypto not standardized into this particular API yet, so far just fiat handlers (cc, banks, apps)
- recurring payments not standardized in an API yet
- simple: Payment Request API
- for cheapskates: ad-based
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
// clean db | |
MATCH(n) DETACH DELETE n; | |
// flowcharts: https://www.reddit.com/r/MonsterHunter/search?q=flow%20chart&restrict_sr=1 | |
// motion values: https://www.reddit.com/r/MonsterHunter/comments/7v0pp3/mhworld_motion_values_compiled/ | |
// motion frames: ??? | |
// Long Sword | |
CREATE |
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
# assumptions: audio files in .flac, no other flac files, named alphabetically | |
# cut to part of a recording | |
ffmpeg -ss mm:ss -to mm2:ss2 -i in.flac -codec copy out.flac | |
# replace a segment | |
ffmpeg -to mm:ss -i in.flac -codec copy pre.flac; ffmpeg -ss mm2:ss2 -i in.flac -codec copy post.flac; ffmpeg -f concat -safe 0 -i <( for f in {pre,replacement,post}.flac; do echo "file '$(pwd)/$f'"; done ) -c copy out.wav; flac out.wav; rm pre.flac; rm post.flac; rm out.wav | |
# get chapter timestamps for youtube | |
for song_file in *.flac; do echo $song_file; done | |
duration=0; total=0; rounded=$total; hours=0; mins=0; secs=0; for song_file in *.flac; do rm -f tmp.wav; echo "$hours:$(printf "%02d\n" $mins):$(printf "%02d\n" $secs)"; flac -d -o tmp.wav $song_file > /dev/null 2>&1; duration=`soxi -D tmp.wav`; total=`echo "$total + $duration" | bc`; rounded=`printf "%.*f\n" "" "$total"`; hours=`expr $rounded / 3600`; mins=$((`expr $rounded / 60` - $hours * 60)); secs=$(($rounded - $hours * 3600 - $mins * 60)); done; rm -f tmp.wav |
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
/* | |
==UserScript== | |
@name LinkedIn - dark | |
@description This is a black and very dark gray LinkedIn style with a lot of attention to detail. Like the rest of my styles, it's just a basic change of paint without any major remodeling. | |
@author Kete, Kiara Grouwstra | |
@homepage https://gist.github.com/KiaraGrouwstra/4c6b93d1593de22a28f834be8c5f3565 | |
@include http://linkedin.com/* | |
@include https://linkedin.com/* | |
@include http://*.linkedin.com/* | |
@include https://*.linkedin.com/* |