Skip to content

Instantly share code, notes, and snippets.

Nachweis der Fahrberechtigung

Diese befristete Prüfungsbescheinigung dient anstelle des Führerscheins zum Nachweis der Fahrberechtigung in Deutschland. Sie ist nur gültig in Verbindung mit einem amtlichen Lichtbildausweis. Beim Führen von Kraftfahrzeugen ist sie mitzuführen und zuständigen Personen bei Kontrollen auf Verlangen zur Prüfung auszuhändigen.

Proof of Driving Authorization

This limited examination certificate serves in place of the driver's license for the detection of the driving authorization authority in Germany. It is only valid in conjunction with an official photo ID. When driving vehicles it must accompany and to hand over persons responsible for inspections upon request for examination.

Deutsch English
Vergangen past
Verlangen request

Netzgesellschaft - Ablesung der Gaszähler

Sehr geehrte Kundin, sehr geehrter Kunde,

als Ihr zuständiger Netzbetreiber erheben wir einmal jährlich Ihren Zählerstand für Gas, damit Ihr jeweiliger Energielieferant eine Verbrauchsabrechnung erstellen kann.

Bitte teile Sie uns Ihren Zählerstand vor dem Ablesetermin ganz bequem online unter www.nbb-ablesung.de mit oder...

ermöglichen Sie unseren Mitarbeitern im oben genannten Zeitraum den Zutritt zum Zahler Halten Sie bitte hierfür Ihre Zählernummer, die Postleitzahl sowie den aktuellen Zählerstand bereit. Unter der Rufnummer 030 20 179 179 nehmen wir Ihren Zählerstand sich telefonisch entgegen.

UHU - The All-Purpose Adhesive

Whether porcelain, wood, metal, glass, ceramics, plexiglass, felt, cork, fabric, cardboard, paper - UHU All-Purpose Adhesive simply bonds everything. UHU All Purpose Adhesive is ideal for household repairs, creative crafts, school and office. Not suitable for styrofoam.

Application Note

Apply thinly on one side, pat down and perhaps readjust - done. For hard materials spread onto both splices (dry and free of grease), let dry, spread thinly again and press together.

#set editing-mode vi
#set keymap vi
# If there is any text in front of the cursor then up and down
# do history search, otherwise up and down do normal history prev/next.
"\e[B": history-search-forward
"\e[A": history-search-backward
# allow the use of the Home/End keys
"\e[1~": beginning-of-line
var numOfFeedItems = 0;
var removeRightCol = function () {
var rightCol = document.getElementById("rightCol");
if (rightCol && rightCol.remove) rightCol.remove();
var content = document.getElementById("contentArea");
content.setAttribute("style", "width: 100%");
};
@whroman
whroman / insertionSort.js
Created January 4, 2016 18:59
Javascript Array Insertion Sort
var insertionSort = function () {
var sortedArray = [];
var argLen = arguments.length;
while (argLen--) { sortedArray = sortedArray.concat(arguments[argLen]); }
var newArr = [];
newArr.push(sortedArray[0]);
sortedArray.slice(1, sortedArray.length).forEach(function (itemToSort) {
var iter = newArr.length - 1;
for (iter; iter >= 0; iter--) {
if (itemToSort > newArr[iter]) {
@whroman
whroman / gist:5bf82bf2c517db7a0dec
Created November 30, 2015 21:25
Fahrschule Passer Script
App.data.currentSet.attributes.sd.each(function (model) {
var attrs = model.attributes.question.attributes;
model.set({
a1: attrs.answer1_value,
a2: attrs.answer2_value,
a3: attrs.answer3_value,
answered: true
});
});
javascript: (function() {
var root = $(document.getElementsByTagName('html'));
var watchers = [];
var attributes = [];
var attributes_with_values = [];
var elements = [];
var elements_per_attr = [];
var scopes = [];
@whroman
whroman / extendDatePrototype.js
Created May 1, 2014 00:01
Extending Javascript's Date.prototype
Date.prototype.getDayofYear = function(){
var d= new Date(this.getFullYear(), 0, 0);
return Math.floor((this-d)/8.64e+7);
}
Date.prototype.addDays = function (n) {
var year = this.getFullYear();
var month = this.getMonth();
var date = this.getDate() + n;
newDate = new Date(year, month, date);