Optional - Set format on save and any global prettier options
npm i -D eslint prettier eslint-plugin-prettier eslint-config-prettier eslint-plugin-node eslint-config-node
# This is a sample build configuration for JavaScript. | |
# Check our guides at https://confluence.atlassian.com/x/14UWN for more examples. | |
# Only use spaces to indent your .yml configuration. | |
# ----- | |
# You can specify a custom docker image from Docker Hub as your build environment. | |
image: node:10.15.3 | |
pipelines: | |
branches: | |
test: #name of your test branch |
// email validation | |
// .test('checkDuplUsername', 'same name exists', function (value) { | |
// return new Promise((resolve, reject) => { | |
// kn.http({ | |
// url: `/v1/api/${value}`, | |
// method: 'head', | |
// }).then(() => { | |
// // exists | |
// resolve(false) |
get-childitem *.mp3 | foreach { rename-item $_ $_.Name.Replace("Radiohead -", "") } | |
// source: https://superuser.com/a/578076 |
// Includes functions for exporting active sheet or all sheets as JSON object (also Python object syntax compatible). | |
// Tweak the makePrettyJSON_ function to customize what kind of JSON to export. | |
var FORMAT_ONELINE = 'One-line'; | |
var FORMAT_MULTILINE = 'Multi-line'; | |
var FORMAT_PRETTY = 'Pretty'; | |
var LANGUAGE_JS = 'JavaScript'; | |
var LANGUAGE_PYTHON = 'Python'; |
componentDidUpdate(prevProps, prevState) { | |
Object.entries(this.props).forEach(([key, val]) => | |
prevProps[key] !== val && console.log(`Prop '${key}' changed`) | |
); | |
if (this.state) { | |
Object.entries(this.state).forEach(([key, val]) => | |
prevState[key] !== val && console.log(`State '${key}' changed`) | |
); | |
} | |
} |
/* Fade In Animation */ | |
@keyframes fadein { | |
from { opacity: 0; } | |
to { opacity: 1; } | |
} | |
/* Firefox < 16 */ | |
@-moz-keyframes fadein { | |
from { opacity: 0; } |
// To see all the requests in the chrome Dev tools in the network tab. | |
XMLHttpRequest = GLOBAL.originalXMLHttpRequest ? | |
GLOBAL.originalXMLHttpRequest : | |
GLOBAL.XMLHttpRequest; |
### Keybase proof | |
I hereby claim: | |
* I am sygn on github. | |
* I am ztadic91 (https://keybase.io/ztadic91) on keybase. | |
* I have a public key ASD0Wy_GZx1WjTmx23vkRwKNBT48DBAMOZzwgtPXaS_5_Qo | |
To claim this, I am signing this object: |
CREATE TABLE adressen.land | |
( | |
isocode_2 character(2) not null, -- ISO 3166 ALPHA-2 | |
isocode_3 character(3) not null, -- ISO 3166 ALPHA-3 | |
name character varying not null, -- deutscher Name des Landes (international besser via ISO-Code ankoppeln!) // German name of the country | |
vorwahl integer default null, -- internationale Vorwahl // international phone code | |
null_bei_vorwahl boolean default FALSE, -- muss man die Null der Ortsvorwahl auch nach der internationalen Vorwahl wählen? // must one dial zero between international and local phone code? | |
vorwahl_lokal boolean default FALSE, -- muss man vor Ort die Vorwahl wählen? // must one dial the local phone code also locally? | |
tld character varying default NULL, -- Top Level Domain | |
kfz character varying default NULL, -- KFZ-Kennzeichen // car code |