Skip to content

Instantly share code, notes, and snippets.

View whroman's full-sized avatar

Walter H. Roman whroman

View GitHub Profile
Deutsch English
Vergangen past
Verlangen request

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.

En La Ciudad de La Furia by Soda Stereo

beat  | 1 + 2 + 3 + 4 +
snare | - - o - - - o -
kick  | o - - o o - - -
hh    | o o o o o o o o
# Sanity - Start
echo "Booting up..."
# Load environment vars
. ~/.env_vars
# Aliases
alias ns="npm start"
alias nr="npm run"
alias subl="/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl"

Website Overview

aqua-volta.com is hosted for free through Github Pages (GHP)

This requires that the code be stored in a public Github repository (or "repo"), which it is (https://github.com/whroman/kite-lite).

Github listens for new commits on the branch gh-pages. When new commit(s) are found, Github automagically pushes the new code to aqua-volta.com. This is one form of a process called "continuous integration".

What is Continuous Integration?

@whroman
whroman / tenses.md
Last active February 27, 2017 16:30

The Six German Tenses

  • In the active and passive voices
  • With and without modal verbs.

Examples

present-simple (Präsens)

Describes something that is currently happening.

let buttons = `<button type="button" class="btn btn-warning lessFields"><span class="glyphicon glyphicon-minus"></span></button>
<button type="button" class="btn moreFields"><span class="glyphicon glyphicon-plus"></span></button>`;
prefillFields();
bindMoreFieldsClickHandler();
function bindMoreFieldsClickHandler() {
$(".moreFields").click(function() {
console.log("on click moreFields");
// TODO: refactor to permit more than 10 filters
/*
This only works on Chrome!
Steps:
1) Execute this in your dev console
2) Click anywhere on your current webpage
3) Try saying one of the colors in `colorList`
4) See if the resulting "alert" prints out the color that you spoke
*/
function getWordsByFrequency (text) {
return text
.replace('\'', '')
.replace(/\W+/g, ' ')
.toLowerCase()
.split(' ')
.reduce((acc, word) => {
if (acc[word] === undefined) {
acc[word] = 1
} else {
// SomeConnectedComponent.js
// ============================
// Before:
const mapDispatchToProps = (dispatch) => ({
dispatch,
})
const mapStateToProps = (state) => ({
resumable: (state.exam.attempt.attemptUUID !== null),