This file contains hidden or 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
| function number-part($name) { return $name.Split(' ')[0] } | |
| function prepend-if-needed($fi) { | |
| $numberpart = number-part $fi.Name | |
| $potentialnewname = "0" + $fi.Name | |
| if( $numberpart.length -lt 2 ) { ren -Path $fi.FullName -NewName $potentialnewname } | |
| } | |
| ls | foreach { prepend-if-needed $_ } |
This file contains hidden or 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
| using EchelonTouchInc.Gister.Api.Credentials; | |
| namespace EchelonTouchInc.Gister.Api | |
| { | |
| public interface GitHubSender | |
| { | |
| string SendGist(string fileName, string content, GitHubCredentials credentials); | |
| } | |
| } |
This file contains hidden or 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
| var TASKLISTMODULE = (function(module) { | |
| module.Task = function (name, owner, duedate, status) { | |
| var self = this; | |
| self.name = ko.observable(name || ''); | |
| self.owner = ko.observable(owner || ''); | |
| self.duedate = ko.observable(duedate); | |
| self.status = status || 'unassigned'; |
This file contains hidden or 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
| Rock your development environment! | |
| You see Visual Studio more than you see your family. Make your tools rock for you! In this session | |
| we'll look at extensions, tools, customizations, and patterns to developing on the .Net stack which | |
| can have you fly through code like Chipotle through a geek. |
This file contains hidden or 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
| age = (bday) -> | |
| // now - bday | |
| 17 |
This file contains hidden or 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
| using System; | |
| using EchelonTouchInc.Gister.Api; | |
| using EchelonTouchInc.Gister.Api.Credentials; | |
| namespace EchelonTouchInc.Gister | |
| { | |
| public class RetrievesUserEnteredCredentials : RetrievesCredentials | |
| { | |
| public RetrievesUserEnteredCredentials() | |
| { |
This file contains hidden or 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
| using System; | |
| using EchelonTouchInc.Gister.Api; | |
| using EchelonTouchInc.Gister.Api.Credentials; | |
| namespace EchelonTouchInc.Gister | |
| { | |
| public class RetrievesUserEnteredCredentials : RetrievesCredentials | |
| { | |
| public RetrievesUserEnteredCredentials() | |
| { |
This file contains hidden or 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
| [TestFixture] | |
| public class MyWebApiIntegrationTests | |
| { | |
| [Test] | |
| public void ShouldWorkWithWebApi4() | |
| { | |
| var config = new HttpSelfHostConfiguration("http://localhost:8080"); |
This file contains hidden or 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
| using System; | |
| using OpenQA.Selenium; | |
| using OpenQA.Selenium.IE; | |
| using OpenQA.Selenium.Internal; | |
| namespace AtddDotNetSpecs.StepDefinitions | |
| { | |
| public class DriverFactory | |
| { | |
| static InternetExplorerDriver currentWebDriver; |
This file contains hidden or 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
| function Start-GitFetch() { | |
| pushd . | |
| cd ~/vim-config | |
| git fetch origin | |
| cd ~/git-config | |
| git fetch origin master | |
| cd ~/ps-config | |
| git fetch origin master |
OlderNewer