| Deutsch | English |
|---|---|
| Vergangen | past |
| Verlangen | request |
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.
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.
| # 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" |
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".
| 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), |