I hereby claim:
- I am rbwestmoreland on github.
- I am rbwestmoreland (https://keybase.io/rbwestmoreland) on keybase.
- I have a public key ASCNc7VMbRhst4ipOUUDlCbBwwwNPC2426x6cq_SFtk4Uwo
To claim this, I am signing this object:
| git config --local core.hooksPath ./tools/githooks |
| #!/bin/sh | |
| echo ---------------------------------------- | |
| echo Updating boot script... | |
| echo ---------------------------------------- | |
| sudo git -C /usr/bin/rbwestmoreland/ pull | |
| sudo sh /usr/bin/rbwestmoreland/start.sh |
I hereby claim:
To claim this, I am signing this object:
| @echo off | |
| set year=%date:~10,4% | |
| set month=%date:~4,2% | |
| set day=%date:~7,2% | |
| set hour=%time:~0,2% | |
| set minute=%time:~3,2% | |
| set second=%time:~6,2% | |
| set millisecond=%time:~9,2% | |
| echo %year% %month% %day% %hour% %minute% %second% %millisecond% |
| --- | |
| layout: post | |
| title: Hello World | |
| permalink: | |
| - posts/hello-world | |
| date: 2012-06-19 16:46:51 -04:00 | |
| tags: | |
| - example | |
| - markdown | |
| - post |
| using System; | |
| using System.Diagnostics; | |
| using System.Web; | |
| public class ResponseTimeHttpModule : IHttpModule | |
| { | |
| private static readonly String XResponseTimeHeaderName = "X-ResponseTime"; | |
| public void Init(HttpApplication context) | |
| { |
| using System; | |
| /// <summary> | |
| /// An example prototype interface. | |
| /// <para>The Prototype pattern is a creational | |
| /// pattern, whose purpose is to specify the kinds | |
| /// of objects to create using a prototypical | |
| /// instance, and create new objects by copying | |
| /// this prototype.</para> | |
| /// </summary> |
| using System; | |
| public class ConcreteTemplateA : Template | |
| { | |
| protected override void DoThis() | |
| { | |
| // Do this | |
| } | |
| protected override void DoThat() |
| using System; | |
| /// <summary> | |
| /// Generic Chain of Responsibility | |
| /// <para>Avoid coupling the sender of a request to its | |
| /// receiver by giving more than one object a chance to | |
| /// handle the request. Chain the receiving objects and | |
| /// pass the request along the chain until an object | |
| /// handles it.</para> | |
| /// </summary> |