- Added support for names as "T Murphy"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
choco install autohotkey.portable --ignoreChecksums | |
choco install conemu --ignoreChecksums | |
choco install curl --ignoreChecksums | |
choco install DotNet4.5 --ignoreChecksums | |
choco install DotNet4.5.1 --ignoreChecksums | |
choco install dropbox --ignoreChecksums | |
choco install git --ignoreChecksums | |
choco install git.install --ignoreChecksums | |
choco install gitpad --ignoreChecksums | |
choco install git-credential-manager-for-windows --ignoreChecksums |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// WIP | |
public interface IAzureStorageTable<TEntity> where TEntity : ITableEntity | |
{ | |
Task AddAsync(TEntity entity) | |
Task CreateIfNotExists() | |
Task DeleteAsync(TEntity entity) | |
Task UpdateAsync(TEntity entity) | |
Task<IEnumerable<TEntity>> GetAsync(string partitionKey) | |
Task<TEntity> GetAsync(string partitionKey, string rowKey) | |
Task<IEnumerable<TEntity>> FindAsync() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Feature: Developer can request current branch to be published | |
As a developet | |
I want tell to the CI to publish the current branch | |
# git describe --tags --long | |
# http://stackoverflow.com/a/1064505/22941 | |
Scenario Outline: Publish master branch with valid arguments | |
Given the current branch is master | |
When npm publish <bumpLevel> is called |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Write-Host | |
Write-Host | |
Write-Host "---------------------------------------------------------------" | |
Write-Host "Path: " $env:Path | |
Write-Host "---------------------------------------------------------------" | |
Write-Host | |
Write-Host | |
Write-Host "---------------------------------------------------------------" | |
Write-Host "where choco" | |
cmd /c where choco |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Public static class DependencyResolver | |
{ | |
Private static IServiceProvider _customServiceProvider; | |
Private static IServiceProvider _defaultServiceProvider; | |
Public static void SetResolver(IServiceProvider) | |
Internal static GetService(Type) | |
( | |
Var service = _currentServiceProvider.GetService(type); |
https://github.com/Swiip/generator-gulp-angular
- Node.js
- Python 2.7.x
- Git
npm install --global --no-optional yo gulp bower tsd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Usage: | |
# | |
# - Open Internet Explorer or Edge | |
# - Go to http://boxstarter.org/package/url?https://gist.githubusercontent.com/TimMurphy/5a9ef3035e95cb6f8cb2/raw/screencasts-boxstarter.ps1 | |
# | |
# See http://boxstarter.org/WebLauncher for more details. | |
# Windows configuration | |
Set-ExplorerOptions -showFileExtensions | |
Enable-MicrosoftUpdate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Write-Host "Hello. My name is '$($env:ComputerName)'." |
NewerOlder