create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| // Tony Pham | |
| // https://github.com/cptonypham | |
| function range(start, end, type) { | |
| const data = [] | |
| while (end.diff(start, type) >= 0) { | |
| data.push(start.format('DD/MM/YYYY')) | |
| start.add(1, type) | |
| } |
| Originall From: Posted 2015-05-29 http://ubwg.net/b/full-list-of-ffmpeg-flags-and-options | |
| This is the complete list that’s outputted by ffmpeg when running ffmpeg -h full. | |
| usage: ffmpeg [options] [[infile options] -i infile]… {[outfile options] outfile}… | |
| Getting help: | |
| -h — print basic options | |
| -h long — print more options | |
| -h full — print all options (including all format and codec specific options, very long) |
| import { NgModule, Component } from "@angular/core"; | |
| import { | |
| HttpClientModule, | |
| HttpClient, | |
| HttpHeaders, | |
| HttpParams | |
| } from "@angular/common/http"; | |
| import { BrowserModule } from "@angular/platform-browser"; | |
| import { platformBrowserDynamic } from "@angular/platform-browser-dynamic"; |
Just migrated it from Codepen.io to markdown. Credit goes to David Conner.
| Working with DOM | Working with JS | Working With Functions |
|---|---|---|
| Accessing Dom Elements | Add/Remove Array Item | Add Default Arguments to Function |
| Grab Children/Parent Node(s) | Add/Remove Object Properties | Throttle/Debounce Functions |
| Create DOM Elements | Conditionals |
| function number_format(number, decimals, decPoint, thousandsSep){ | |
| decimals = decimals || 0; | |
| number = parseFloat(number); | |
| if(!decPoint || !thousandsSep){ | |
| decPoint = '.'; | |
| thousandsSep = ','; | |
| } | |
| var roundedNumber = Math.round( Math.abs( number ) * ('1e' + decimals) ) + ''; |