Skip to content

Instantly share code, notes, and snippets.

View craignicholson's full-sized avatar
🌴
On vacation

Craig Nicholson craignicholson

🌴
On vacation
View GitHub Profile
@arjabbar
arjabbar / csrportal.nuspec
Created May 18, 2018 21:38
CSR Portal generated nuspec from Jenkinsfile
<?xml version="1.0"?>
<package xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>csrportal-webapp</id>
<version>2.0.0</version>
<authors>ElectSolve</authors>
<licenseUrl>https://electsolve.com/EULA</licenseUrl>
<projectUrl>http://portal.kiln.url</projectUrl>
<description>Stuff loaded from the README.md</description>
<releaseNotes>
@jessfraz
jessfraz / boxstarter.ps1
Last active April 11, 2024 16:02
Boxstarter Commands for a new Windows box.
# Description: Boxstarter Script
# Author: Jess Frazelle <jess@linux.com>
# Last Updated: 2017-09-11
#
# Install boxstarter:
# . { iwr -useb http://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force
#
# You might need to set: Set-ExecutionPolicy RemoteSigned
#
# Run this boxstarter by calling the following from an **elevated** command-prompt:
@bishboria
bishboria / springer-free-maths-books.md
Last active April 25, 2024 06:27
Springer made a bunch of books available for free, these were the direct links
@scttnlsn
scttnlsn / README.md
Created July 30, 2012 22:16
Pub/sub with MongoDB and Node.js

Pub/sub with MongoDB and Node.js

Setup:

$ mongo
> use pubsub
> db.createCollection('messages', { capped: true, size: 100000 })
> db.messages.insert({})