Initialize
gitflow | git |
---|---|
git flow init |
git init |
git commit --allow-empty -m "Initial commit" |
|
git checkout -b develop master |
// This sample demonstrates handling intents from an Alexa skill using the Alexa Skills Kit SDK (v2). | |
// Please visit https://alexa.design/cookbook for additional examples on implementing slots, dialog management, | |
// session persistence, api calls, and more. | |
const Alexa = require('ask-sdk-core'); | |
const data = [ | |
'A year on Mercury is just 88 days long.', | |
'Despite being farther from the Sun, Venus experiences higher temperatures than Mercury.', | |
'On Mars, the Sun appears about half the size as it does on Earth.', | |
'Jupiter has the shortest day of all the planets.', | |
'The Sun is an almost perfect sphere.', |
import { Directive, HostListener, ElementRef, OnInit } from '@angular/core'; | |
@Directive({ selector: '[InputValidator]' }) | |
export class InputValidatorDirective implements OnInit { | |
el: any; | |
constructor(private elementRef: ElementRef) { | |
this.el = this.elementRef.nativeElement; | |
} |
{ | |
"vars": { | |
"@gray-base": "#000", | |
"@gray-darker": "lighten(@gray-base, 13.5%)", | |
"@gray-dark": "lighten(@gray-base, 20%)", | |
"@gray": "lighten(@gray-base, 33.5%)", | |
"@gray-light": "lighten(@gray-base, 46.7%)", | |
"@gray-lighter": "lighten(@gray-base, 93.5%)", | |
"@brand-primary": "darken(#363b59, 6.5%)", | |
"@brand-success": "#f58020", |
. | |
├── app | |
│ ├── module.ts | |
│ ├── page.css | |
│ ├── page.html | |
│ ├── page.spec.ts | |
│ ├── page.ts | |
│ ├── routing.ts | |
│ ├── core | |
│ │ ├── about |
#!/bin/bash | |
sudo apt-get install apt-transport-https ca-certificates -y | |
sudo apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys 58118E89F3A912897C070ADBF76221572C52609D | |
sudo rm -f /etc/apt/sources.list.d/docker.list | |
sudo add-apt-repository \ | |
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \ | |
$(lsb_release -u -cs) \ | |
stable" | |
sudo apt-get update | |
sudo apt-get purge lxc-docker |
gitflow | git |
---|---|
git flow init |
git init |
git commit --allow-empty -m "Initial commit" |
|
git checkout -b develop master |