Skip to content

Instantly share code, notes, and snippets.

View JoshuaCarroll's full-sized avatar
🏈
Scoreboards, scorebugs, SDK's, etc

Joshua Carroll JoshuaCarroll

🏈
Scoreboards, scorebugs, SDK's, etc
View GitHub Profile
@JoshuaCarroll
JoshuaCarroll / CreateIISSite
Last active July 25, 2018 20:14 — forked from ifrahim/CreateIISSite
Create IIS Site using Powershell
# The following code will create an IIS site and it associated Application Pool.
# Please note that you will be required to run PS with elevated permissions.
# Visit http://ifrahimblog.wordpress.com/2014/02/26/run-powershell-elevated-permissions-import-iis-module/
# set-executionpolicy unrestricted
Function createIISWebsite {
Param ([string]$Folder, [string]$AppPoolName, [string]$SiteName, [string]$Port)
import-module webadministration
New-Item $Folder -type Directory
@JoshuaCarroll
JoshuaCarroll / gist:3a8b3dfd4829c15f17538a77b0e3bf9f
Created August 22, 2016 01:20 — forked from minkymorgan/gist:4702013
setup mysql on a raspberryPI
## shell commands I used to setup mysql on my raspberryPI and enable SQLyog access to it from my laptop
# install mysql using these instructions
# http://databaseblog.myname.nl/2013/01/how-to-install-mysql-succesfully-on.html
# Verify the MySQL Client was installed
mysql --version
# alter the settings to enable it to be a server on your lan