I hereby claim:
- I am nilsology on github.
- I am nilsology (https://keybase.io/nilsology) on keybase.
- I have a public key whose fingerprint is F723 3BAF CF27 6695 CDE8 4A36 FAEB C3CB 07B6 8375
To claim this, I am signing this object:
/* Youtube Home */ | |
.ytd-browse #primary { | |
display: none; | |
} | |
ytd-guide-section-renderer:not(:nth-child(1), :nth-child(2)) { | |
display: none; | |
} | |
#footer { |
def counting_sort(a, mn, mx): | |
mx = max(a) if mx > max(a) else mx | |
count, result = [0] * (max(a) + 1), [] | |
i, j = 0, mn | |
while i < len(a): | |
count[a[i]] += 1 | |
i += 1 | |
while j <= mx: | |
result += [j] * count[j] | |
j += 1 |
$('select#f').addEventListener('change', function(e) { | |
console.log(this.options[this.selectedIndex].value); | |
}, false); |
package main | |
import "fmt" | |
func main() { | |
helper := 0 | |
out := 0 | |
for i := 1; i <= 30; i++ { | |
if i == 1 { |
I hereby claim:
To claim this, I am signing this object:
#example list of severs/sites to ping | |
blog.fefe.de | |
google.com | |
spiegel.de |
Please follow the instructions to backup "all" the media of one wordpress.com instance.
Go to https://your-blog.wordpress.com/wp-admin/upload.php
path
by typing: path = "";##Usage:
gpgkeylabel -k KEYID
To get a listing:
gpgkeylabel -l -k KEYID
and then to convert this to a pdf to finally be able to print it out
you will need [phantomjs] (https://github.com/ariya/phantomjs/) and [makepdf.js] (https://gist.github.com/philfreo/5854629) and should use the following:
gpgkeylabel -l -k KEYID | phantomjs ../makepdf.js > yourListing.pdf
#!/bin/sh | |
# usage: ./pwdgen.sh [keysize] | |
keyfile=file | |
ssh-keygen -t rsa -f $keyfile -b 1024 -N '' -v &> /dev/null | |
totallinenumbers=$(grep -c ".*" $keyfile) | |
linenumber=$(echo $(($RANDOM % $(expr $totallinenumbers - 2) + 2 | bc))) | |
echo $(sed -n $(echo $linenumber)p $keyfile) | fold -w $(echo $1)| cat -b | sort -rn | cut -f2- | tail -1 | |
rm $keyfile $keyfile.pub |