I hereby claim:
- I am ryanwischkaemper on github.
- I am ryanwischkaemper (https://keybase.io/ryanwischkaemper) on keybase.
- I have a public key ASBqGauG4X2gX-q6vHVgjCJh_Yte8j5-tv77C8LmSUe8bwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| function Remove-DirectoryWithPathTooLongFileNames(){ | |
| [CmdletBinding()] | |
| param( | |
| [Parameter(Mandatory = $true, Position=1)] | |
| [ValidateScript({ Test-Path $_ })] | |
| [String]$folderPath | |
| ) | |
| $dirInfo = New-Object -TypeName System.IO.DirectoryInfo -ArgumentList $folderPath | |
| $parentFolder = ([System.IO.Directory]::GetParent($dirInfo.FullName)).FullName |
| @echo off | |
| SET MyPath=%PATH% | |
| echo %MyPath% | |
| echo -- | |
| setlocal EnableDelayedExpansion | |
| SET TempPath="%MyPath:;=";"%" | |
| SET var= |
| jspm install aurelia-animator-css aurelia-binding aurelia-bootstrapper aurelia-dependency-injection aurelia-event-aggregator aurelia-framework aurelia-history aurelia-history-browser aurelia-http-client aurelia-loader aurelia-loader-default aurelia-logging aurelia-metadata aurelia-path aurelia-route-recognizer aurelia-router aurelia-task-queue aurelia-templating aurelia-templating-binding aurelia-templating-resources aurelia-templating-router |
| var promises = []; | |
| for(var i = 0; i < 10; i++)promises.push({config: i}); | |
| // execute each request synchronously | |
| return promises.reduce(function (promise, item) { | |
| return promise.then(function () { | |
| return myService.thatReturnsPromise(item); | |
| }); | |
| }, $q.when()); |