Skip to content

Instantly share code, notes, and snippets.

View TheFrostlixen's full-sized avatar

Matt Fredrickson TheFrostlixen

View GitHub Profile
@TheFrostlixen
TheFrostlixen / SamLatin.ps1
Last active August 29, 2015 14:26
aamsay aatinlay aistgay anoay aithubgay
function SamL ($a) {$a = $a -replace "[^\w\s]",""; $b = $a.split(" ") | %{"a" + $_.substring(1) + $_[0].ToString().tolower() + "ay" }; [string]::Join(" ", $b) | Out-String }
function DecryptSamL ($a) {$b = $a.split(" ") | %{$_[$_.Length-3] + $_.Substring(1, $_.Length-4) }; [string]::Join(" ", $b) | Out-String }
@TheFrostlixen
TheFrostlixen / dank.ps1
Last active February 3, 2017 02:59
d a n k m e m e s 5 e v e r
Function ToMeme($a){$b=""; foreach($c in $a.tochararray()){$b="$b $c"}; return $b.Trim(' ');}
@TheFrostlixen
TheFrostlixen / PythonOgre_EXE.md
Last active December 14, 2015 16:43
How to compile Python Ogre to EXE

How To Compile Python Ogre to Standalone Executable

  1. Install python ogre. I recommend using this guide followed by this.

  2. Download and install py2exe for your Python version.

  3. Create setup.py:

setup.py