<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'] |
- 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
Ich freue mich über Forks und Pull Requests oder Kommentare mit mehr Links.
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
| bootbox.prompt({ | |
| title: "What is your real name?", | |
| value: "makeusabrew", | |
| callback: function(result) { | |
| if (result === null) { | |
| Example.show("Prompt dismissed"); | |
| } else { | |
| Example.show("Hi <b>"+result+"</b>"); | |
| } | |
| } |
I hereby claim:
- I am k-nut on github.
- I am knut (https://keybase.io/knut) on keybase.
- I have a public key whose fingerprint is 7F58 FF6C 32A2 4C6C 6A8B 7BC7 7341 4264 131E E8A2
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
| from flask import Flask | |
| app = Flask(__name__) | |
| @app.route('/') | |
| def main(): | |
| return notExistingFunction() | |
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
| { | |
| "bot_id": "singaporeFinancialOrganisations", | |
| "title": "Bot for opencorporates mission 562", | |
| "description": "Financial Institutions and Relevant Organisations in Singapore ", | |
| "language": "python", | |
| "data_type": "primary data", | |
| "identifying_fields": [ | |
| "Company" | |
| ], | |
| "files": [ |
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
| from datetime import date | |
| import json | |
| from datetime import date | |
| from bs4 import BeautifulSoup | |
| import requests | |
| import turbotlib | |
| def extractData(link): | |
| source_url = link |
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
| $.getJSON( "./fs132-denk-nicht-in-layern-denk-in-schichten.json", function( data ) { | |
| var items = []; | |
| console.log(data.statistics.tracks); | |
| $.each( data.statistics.tracks, function( key, val ) { | |
| var total = 0; | |
| $.each(val.activity, function(key, val){ | |
| total += val[1] - val[0]; | |
| }); | |
| console.log(val.identifier + ': ' + Math.round(total/60) + ' min'); | |
| }); |