By: @BTroncone
Also check out my lesson @ngrx/store in 10 minutes on egghead.io!
Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// Choose either "stable" for receiving highly polished, | |
// or "canary" for less polished but more frequent updates | |
updateChannel: 'stable', |
* -cur_console:d:c:\dev\projects\plutus -cur_console:C:C:\apps\cmder\icons\cmder.ico cmd /k "%ConEmuDir%\..\init.bat" | |
>* -cur_console:s1T50H -cur_console:d:C:\apps\cmder -cur_console:C:C:\apps\cmder\icons\cmder.ico cmd /k "%ConEmuDir%\..\init.bat" | |
>* -cur_console:s1T50V -cur_console:d:C:\apps\cmder -cur_console:C:C:\apps\cmder\icons\cmder.ico cmd /k "%ConEmuDir%\..\init.bat" | |
>* -cur_console:s2T50V -cur_console:d:C:\apps\cmder -cur_console:C:C:\apps\cmder\icons\cmder.ico cmd /k "%ConEmuDir%\..\init.bat" |
/** | |
* @author ebidel@ (Eric Bidelman) | |
* License Apache-2.0 | |
*/ | |
/** | |
* Finds all elements on the page, inclusive of those within shadow roots. | |
* @param {string=} selector Simple selector to filter the elements by. e.g. 'a', 'div.main' | |
* @return {!Array<string>} List of anchor hrefs. | |
*/ |
By: @BTroncone
Also check out my lesson @ngrx/store in 10 minutes on egghead.io!
Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!
[Benchmark(Description = "ImageSharp Resize")] | |
public ImageSharpSize ResizeImageSharp() | |
{ | |
ImageSharpImage image = new ImageSharpImage(Width, Height); | |
image.Resize(ResizedWidth, ResizedHeight); | |
return new ImageSharpSize(ResizedWidth, ResizedHeight); | |
} |
curl -k -g -X POST -d "payload={\"text\":\"my important bot notification\", \"channel\":\"#monitoring\", \"username\":\"computer-bot\", \"icon_emoji\":\":computer:\"}" https://hooks.slack.com/services/XXXXXXXXX/XXXXXXXXX/XxXxXxXxXXXxxXXXxxx |
set sftp:auto-confirm yes | |
set sftp:connect-program 'ssh' | |
open sftp://user:password@site:port | |
mirror -R --verbose --use-pget-n=8 -c /cygdrive/driveletter/folder /remote/path |
set sftp:auto-confirm yes | |
set sftp:connect-program 'ssh' | |
open sftp://user:password@site:port | |
mirror --verbose --use-pget-n=8 -c /remote/path /cygdrive/driveletter/folder |
function Get-LongLat | |
{ | |
[CmdletBinding()] | |
param | |
( | |
[Parameter( | |
Mandatory = $true, | |
ValueFromPipelineByPropertyName = $true | |
)] | |
[string[]]$ZipCode |