Skip to content

Instantly share code, notes, and snippets.

View stimms's full-sized avatar
💭
Talking at #MSIgniteToronto

Simon Timms stimms

💭
Talking at #MSIgniteToronto
View GitHub Profile
@stimms
stimms / Post.md
Created October 5, 2016 20:57
Blog post in response to "What it feels like to learn JavaScript in 2016"

Yep

using Completions.Common.Logging;
using MediatR;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
namespace Completions.MvcApplication.Features
{
@stimms
stimms / mva.md
Created October 6, 2015 04:45
MVA

Introduction (30 min)

  • Who we are and what we do
  • Our blogs
  • What's azure

Application and architecture walk-through (1 hour)

  • Slide showing all of azure and all the crazy services http://i.imgur.com/96sUcGk.jpg
var BugTracker = BugTracker || {};
BugTracker.SomePage = BugTracker.SomePage || {};
BugTracker.SomePage = function(){
//constructor
var table = new BugTracker.Controls.Table(document.querySelector("#container"));
}
var page = new BugTracker.SomePage();
@stimms
stimms / Actions.es6
Created February 3, 2015 13:39
Code review of React.js
var Prime = Prime || {};
Prime.BHAComponents = Prime.BHAComponents || {};
Prime.BHAComponents.Actions = Marty.createActionCreators({
list: Prime.BHAComponents.Events.List(),
receiveComponents: Prime.BHAComponents.Events.ReceiveComponents(),
fetchCandidates: Prime.BHAComponents.Events.FetchCandidates(),
receiveCandidates: Prime.BHAComponents.Events.ReceiveCandidates(),
openCopyDialog: Prime.BHAComponents.Events.OpenCopyDialog(),
closeCopyDialog: Prime.BHAComponents.Events.CloseCopyDialog(),
bundles.Add(new PreassembledJavaScriptBundle("~/Scripts/all.min.js", "~/bundles/site")
.IncludeDirectory("~/Scripts/Site", "*.js", true));
/Users/stimms/Projects/drakewell/spec/models/bha_item_spec.rb:106:in `block (3 levels) in <top (required)>': uninitialized constant BhaItem::Motor (NameError)
from /Users/stimms/.rvm/gems/ruby-2.1.2@drakewell/gems/rspec-core-2.14.8/lib/rspec/core/example_group.rb:246:in `module_eval'
from /Users/stimms/.rvm/gems/ruby-2.1.2@drakewell/gems/rspec-core-2.14.8/lib/rspec/core/example_group.rb:246:in `subclass'
from /Users/stimms/.rvm/gems/ruby-2.1.2@drakewell/gems/rspec-core-2.14.8/lib/rspec/core/example_group.rb:232:in `describe'
from /Users/stimms/Projects/drakewell/spec/models/bha_item_spec.rb:90:in `block (2 levels) in <top (required)>'
from /Users/stimms/.rvm/gems/ruby-2.1.2@drakewell/gems/rspec-core-2.14.8/lib/rspec/core/example_group.rb:246:in `module_eval'
from /Users/stimms/.rvm/gems/ruby-2.1.2@drakewell/gems/rspec-core-2.14.8/lib/rspec/core/example_group.rb:246:in `subclass'
from /Users/stimms/.rvm/gems/ruby-2.1.2@drakewell/gems/rspec-core-2.14.8/lib/rspec/core/example_group.rb:232:in `describe'
f
Configuration = new Configuration()
.AddJsonFile("config.json")
.AddPrivateJsonFile("private.config.json");
Configuration = new Configuration()
.AddJsonFile("config.json")
.AddEnvironmentVariables();
@stimms
stimms / fundamentals.md
Last active August 29, 2015 14:08
fundamentals topics

#Testing

  • why test
  • types of tests
    • what is
    • what isn't
  • unit testing frameworks
  • UI testing frameworks
  • TDD - Mindset
  • BDD - Mindset, frameworks/syntax