I hereby claim:
- I am jimmcslim on github.
- I am jimmcslim (https://keybase.io/jimmcslim) on keybase.
- I have a public key ASBT50ipVd_wUBR-tbIoW1n3GlKj380Bn7vqONIjGzACDgo
To claim this, I am signing this object:
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"basics": { | |
"name": "James Webster", | |
"label": "Software engineer", | |
"email": "[email protected]", | |
"phone": "+61422036741", | |
"summary": "I am a technical lead, software architect and lead developer with over 20 years of experience in software development. I have worked in a variety of industries including finance, energy, and software consulting. I have a strong background in software development and architecture, and I have worked in a variety of roles including technical lead, software architect, and lead developer. I have experience in a variety of technologies including Java, C#, and JavaScript, and I have experience in a variety of software development methodologies including Agile and Scrum.", | |
"location": { | |
"city": "Brisbane", |
blah blah blah |
#!/bin/bash | |
# Installs https://github.com/gpakosz/.tmux | |
cd | |
git clone https://github.com/gpakosz/.tmux.git | |
ln -s -f .tmux/.tmux.conf | |
cp .tmux/.tmux.conf.local . |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using Shouldly; | |
using TestStack.Dossier; | |
using TestStack.Dossier.Lists; | |
using Xunit; | |
namespace Dossier | |
{ |
I hereby claim:
To claim this, I am signing this object:
using System.IO; | |
using System.Linq; | |
using OfficeOpenXml; // comes from EPPlus | |
namespace SpreadsheetGenerationSample | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ |
using System; | |
using System.Security; | |
using System.Runtime.InteropServices; | |
using System.Security.Cryptography; | |
using System.Runtime.CompilerServices; | |
namespace net.visibleblue.util | |
{ | |
public static class SecureStringExtensions | |
{ |
var Types = new Dictionary<string, string> | |
{ | |
{"WORD", @"\w+"}, | |
{"NUMBER", @"\d+"}, | |
}; | |
var grok = new Regex(@"%{(\w+):(\w+)}"); | |
MatchEvaluator e = match => string.Format("(?<{0}>{1})", match.Groups[2].Value, Types[match.Groups[1].Value]); | |
var regex = new Regex(grok.Replace("%{WORD:method} %{NUMBER:bytes} %{NUMBER:duration}", e)); |
function Load-RoyalDocument | |
{ | |
[CmdletBinding()] | |
param( | |
[Parameter(Mandatory=$true)] [string] $Path | |
) | |
$cred = Get-Credential | |
$store = New-RoyalStore -UserName $cred.UserName | |
$document = Open-RoyalDocument -Store $store -FileName $path -Password $cred.Password |
(defn my-test [x] | |
(.log js/console "I have run for " x) | |
(+ x 10) | |
) | |
(defn my-memoize [x] | |
(fn [a] | |
(let [my-memoize-atom (atom {})] | |
(let [my-atom @!my-memoize-atom] | |
(if (contains? my-atom a) |