##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
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
- Click the first media item and then as the pop-up appears, right-click on the right-arrow/next-arrow (>) in the top-right-hand corner and select "Inspect Element".
- Replace this button and the it contains with the corrosponding one you find in next-btn.html (this directory). This procedure my vary depending on the type of browser you use.
- Go to your browsers Javascript console and initialize the path variable
pathby typing: path = ""; - The pop-up still open: click through all the pictures/media-files until you reach the end. Never close the pop-up or you have to start all over again.
- When you have reached the last picture, paste the following code into the Javascript console: var el=document.querySelector('div.settings label.setting:first-child input'); path += '\n' + el.value;
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
| #example list of severs/sites to ping | |
| blog.fefe.de | |
| google.com | |
| spiegel.de |
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:
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" | |
| func main() { | |
| helper := 0 | |
| out := 0 | |
| for i := 1; i <= 30; i++ { | |
| if i == 1 { |
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
| $('select#f').addEventListener('change', function(e) { | |
| console.log(this.options[this.selectedIndex].value); | |
| }, false); |
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
| 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 |
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
| /* Youtube Home */ | |
| .ytd-browse #primary { | |
| display: none; | |
| } | |
| ytd-guide-section-renderer:not(:nth-child(1), :nth-child(2)) { | |
| display: none; | |
| } | |
| #footer { |
OlderNewer