Skip to content

Instantly share code, notes, and snippets.

View BlueHatbRit's full-sized avatar

Elliot Blackburn BlueHatbRit

View GitHub Profile
@BlueHatbRit
BlueHatbRit / EDU-CONTRIBUTING.md
Last active May 23, 2016 13:12
Educational Contributing Guide

We want to encourage all students to get involved with the development of this course. The materials here are mostly developed and curated by the staff team but we admit that we may miss things, or occationally get them wrong. We've put together some guidelines that should help you get started with making contributions.

Thanks for helping improve this course for everyone!

Questions, concerns, or issues

If you've got a question or problem that you think others may have, then please read this first.

The GitHub issue tracker is our preferred channel for dealing with these questions. It keeps questions public and allows others to pitch in with potential solutions, it also means everything is documented for the future. This should not be used for personal questions or issues unfit for public discussion, in those instances we encourage you to email the member of staff responsible for this course.

@BlueHatbRit
BlueHatbRit / easy-posh-git.ps1
Created April 15, 2016 10:29
Easy Posh-Git Installation
# Run the following commpands in Power-Shell (as Administrator)
# One time setup to ensure the scripts can be run
Set-ExecutionPolicy RemoteSigned
# Download the install script pipe it into Invoke-Expression
(new-object Net.WebClient).DownloadString("http://psget.net/GetPsGet.ps1") | iex
# Install it
install-module posh-git
@BlueHatbRit
BlueHatbRit / FSharpSyntax.fsx
Last active December 14, 2015 19:41
Basic F# syntax guide
// All credit and any copyright is attributed to the source of this code:
// http://fsharpforfunandprofit.com/posts/fsharp-in-60-seconds/
// single line comments use a double slash
(* multi line comments use (* . . . *) pair
-end of multi line comment- *)
// ======== "Variables" (but not really) ==========
// The "let" keyword defines an (immutable) value