Standard Braking Distance
- DE:
(Geschwindigkeit / 10) * (Geschwindigkeit / 10) - EN:
(Speed / 10) * (Speed / 10)
Evasive (Emergency) Braking Distance
- DE:
((Geschwindigkeit / 10) * (Geschwindigkeit / 10)) / 2 - EN:
((Speed / 10) * (Speed / 10)) / 2
| // tslint:disable:max-classes-per-file | |
| declare module 'react-native-paper' { | |
| import { Component, ReactNode } from 'react'; | |
| import { | |
| StyleProp, | |
| TextProps, | |
| TextStyle, | |
| TouchableHighlightProps, | |
| TouchableNativeFeedbackProps, | |
| ViewProps, |
| declare module 'react-native-material-kit' { | |
| import * as React from 'React'; | |
| import { | |
| ViewProperties, | |
| ViewStyle, | |
| TextStyle, | |
| KeyboardType, | |
| TextInputProperties, | |
| TouchableWithoutFeedbackProperties | |
| } from 'react-native'; |
| module.exports = { | |
| “extends”: “../src/.eslintrc.js”, | |
| “rules”: { | |
| “import/no-extraneous-dependencies”: “error” | |
| } | |
| }; |
Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm
| import Darwin | |
| enum Signal: Int32 { | |
| case HUP = 1 | |
| case INT = 2 | |
| case QUIT = 3 | |
| case ABRT = 6 | |
| case KILL = 9 | |
| case ALRM = 14 | |
| case TERM = 15 |
| private class LRUCacheNode<Key: Hashable, Value> { | |
| let key: Key | |
| var value: Value | |
| var previous: LRUCacheNode? | |
| var next: LRUCacheNode? | |
| init(key: Key, value: Value) { | |
| self.key = key | |
| self.value = value | |
| } |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.