Skip to content

Instantly share code, notes, and snippets.

View jmkelly's full-sized avatar

James Kelly jmkelly

  • Coffs Harbour, Australia
View GitHub Profile
#!/bin/bash
#First you update your system
sudo apt-get -y update && sudo apt-get -y upgrade
sudo apt-get -y install curl wget firefox
#Install Google Chrome
echo "Chrome"
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
sudo apt-get -y update
# 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-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowFileExtensions -EnableShowFullPathInTitleBar
Enable-RemoteDesktop
Disable-InternetExplorerESC
@jmkelly
jmkelly / Brand.cs
Last active December 15, 2015 12:19 — forked from luisrudge/Brand.cs
public class Brand : IBrand
{
public int Id { get; set; }
public string Name { get; set; }
public int? ParentBrandId { get; set; }
}