Ich freue mich über Forks und Pull Requests oder Kommentare mit mehr Links.
- The Phoenix Project: A Novel About IT, DevOps, and Helping Your Business Win
- Geek Sublime: The Beauty of Code, the Code of Beauty
- Release It! Design and Deploy Production-Ready Software
- Domain-Driven Design: Tackling Complexity in the Heart of Software
- How to Stop Sucking and Be Awesome Instead
- The Pragmatic Programmer: From Journeyman to Master
- The Healthy Programmer - Get Fit, Feel Better, and Keep Coding
- The Lean Startup
- SQL Performance explained
<n>Gto jump to nth rowctrl+oto jump to last curor positionctrl+nto highlight word, again to jump to next one,ctrl-xto skip onectrl-pto go back-- with plugin:
cto change the selection
- with plugin:
q:to get a window of all last commands<CR>to execute themJto move the following line to the end of this line<leader>sto substitute word under cursor"dddeleted line into register
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
| # -*- coding: utf-8 -*- | |
| import pywikibot | |
| import json | |
| site = pywikibot.Site("wikidata", "wikidata") | |
| repo = site.data_repository() | |
| def set_active(politican_item_id): | |
| item = pywikibot.ItemPage(repo, politican_item_id) | |
| claims = item.get()['claims']['P39'] |
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
| # -*- coding: utf-8 -*- | |
| import pywikibot | |
| import json | |
| site = pywikibot.Site("wikidata", "wikidata") | |
| repo = site.data_repository() | |
| def mark_as_part_of_current_landtag(politican_item_id): | |
| item = pywikibot.ItemPage(repo, politican_item_id) | |
| claims = item.get()['claims']['P39'] |
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
| import pywikibot | |
| def create_bavarian_politician(name): | |
| """ | |
| Creates a new entry in test.wikdata.org | |
| :return: | |
| """ | |
| site = pywikibot.Site("wikidata", "wikidata") | |
| repo = site.data_repository() |
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
| BEGIN:VCALENDAR | |
| VERSION:2.0 | |
| CALSCALE:GREGORIAN | |
| BEGIN:VEVENT | |
| SUMMARY:Registrierung der Teilnehmenden | |
| DTSTART;TZID=Europe/Berlin:20170428T090000 | |
| DTEND;TZID=Europe/Berlin:20170428T100000 | |
| STATUS:CONFIRMED | |
| SEQUENCE:1 | |
| END:VEVENT |
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
| let targetDate = new Date(2017, 8, 26, 0, 0, 0, 0) | |
| let rem = Application('Reminders').lists.byName('Test').reminders(); | |
| rem | |
| .filter(reminder => reminder.completionDate() < targetDate) | |
| .map(reminder => reminder.name()); |
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
| #!/bin/sh | |
| FILENAME="$1" | |
| COUNT=$(pdfinfo "$FILENAME" | awk '$1 == "Pages:" {print $2}') | |
| HALF=$((COUNT/2)) | |
| ARGUMENTS="" | |
| for i in $(seq 1 $HALF) | |
| do | |
| ARGUMENTS="$ARGUMENTS Reorder-Page-$i.pdf" | |
| done |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.