- 13th Age
- A Song of Ice and Fire RPG
- Abandon All Hope
- Aces and Eights
- Albedo
- Amber
- Alternity
- Apocalypse World
- Arcanis
- Ars Magica
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Calculate the average effect of each die added to a diepool in Genesys. | |
*/ | |
void Main() | |
{ | |
var rnd = new Random(); | |
var useRandom = false; | |
Dictionary<string, Results> results = new Dictionary<string, Results> | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-WmiObject win32_operatingSystem|select -ExpandProperty Caption |
I hereby claim:
- I am kavaliro on github.
- I am jamesdgilmore (https://keybase.io/jamesdgilmore) on keybase.
- I have a public key whose fingerprint is 6F2F 9868 D249 16BF F60C EA72 27AF 4928 5FE2 2C01
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#add the powershell snapin for sharepoint. This allows a standard powershell | |
#console to run sharepoint commands. | |
if((Get-PSSnapin | Where {$_.Name -eq "Microsoft.SharePoint.PowerShell"}) -eq $null) | |
{ | |
Add-PSSnapin Microsoft.SharePoint.PowerShell; | |
} | |
#Get list of enabled timer jobs | |
$timers=Get-SPTimerJob|? {$_.isDisabled -eq $false} | |
#show ordinal and displayname of timer jobs, so the correct job can be run |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$gacUtil = "${Env:ProgramFiles(x86)}\Microsoft SDKs\Windows\v7.0A\Bin\NETFX 4.0 Tools\gacutil.exe"; | |
function Add-GacItem([string]$path) { | |
#Full Path Name or Relative - ex: C:\Temp\Larned.dll | |
& $gacutil "/nologo" "/i" "$path" | |
} | |
function Remove-GacItem([string]$name) { | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Import-Module ServerManager | |
Add-WindowsFeature PowerShell-ISE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#What's my path? | |
$env:Path | |
#How many characters long is my path? | |
$env:Path.Length | |
#I want to see each entry separately. I'll save the entries into an array... | |
$pathEntries = $env:Path.Split(";") | |
#...and output that array to the commandline. | |
$pathEntries | |
#for grins, how many entries in the array? |
-
Install Ruby and the corresponding DevKit, which is lower down the page. Make sure the DevKit matches the Ruby version. Get Ruby here.
-
Get AsciiDoctor and LiveReload.
gem install asciidoctor gem install guard-livereload guard-shell yajl-ruby