Skip to content

Instantly share code, notes, and snippets.

@OldNo7
OldNo7 / Dev.box
Last active June 20, 2018 08:52
My setup of a dev box
# To launch from powershell type the following coomand
# start http://boxstarter.org/package/url/?[The Raw URL for this GIST]
# Boxstarter options
$Boxstarter.RebootOk=$true # Allow reboots?
$Boxstarter.NoPassword=$false # Is this a machine with no login password?
$Boxstarter.AutoLogin=$true # Save my password securely and auto-login after a reboot
# Basic setup
Update-ExecutionPolicy Unrestricted
Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions
@OldNo7
OldNo7 / MakeVentura.box
Last active August 29, 2015 14:22
Boxstarter script for Makerspaces
# Boxstarter options
$Boxstarter.RebootOk=$true # Allow reboots?
$Boxstarter.NoPassword=$false # Is this a machine with no login password?
$Boxstarter.AutoLogin=$true # Save my password securely and auto-login after a reboot
# Basic setup
Update-ExecutionPolicy Unrestricted
Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions
Enable-RemoteDesktop
Disable-InternetExplorerESC
@OldNo7
OldNo7 / xd2md.cs
Last active October 13, 2015 19:15 — forked from formix/xd2md.cs
using System;
using System.Collections.Generic;
using System.IO;
using System.Text.RegularExpressions;
using System.Xml;
using System.Xml.Linq;
namespace Formix.Utils
{
class Program