I hereby claim:
- I am codeimpossible on github.
- I am codeimpossible (https://keybase.io/codeimpossible) on keybase.
- I have a public key whose fingerprint is AEB9 81B3 8416 24B7 0CCB 27AA 091E 348F D8F9 61E9
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
[ExecuteInEditMode] | |
public class TileLayer : MonoBehaviour | |
{ | |
public Vector2 LayerSize; | |
public Vector2 CellSize; | |
public Color GridColor; | |
public bool DrawGridLines; | |
public bool DrawPaintbrushGuide; |
Prerequisites
brew install automake
)brew install ragel
)Clone the gcc patched version of ragel-js
$ git clone https://github.com/codeimpossible/ragel-js
# vim:ft=zsh ts=2 sw=2 sts=2 | |
# | |
# Based on agnoster's Theme - https://gist.github.com/3712874 | |
# A Powerline-inspired theme for ZSH | |
# | |
# # README | |
# | |
# In order for this theme to render correctly, you will need a | |
# [Powerline-patched font](https://gist.github.com/1595572). | |
# |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Dynamic; | |
using System.Reflection; | |
using System.Linq.Expressions; | |
namespace MISix { | |
public class ReflectedResult<T> { |
Param ( | |
[Parameter(Mandatory=$True)] | |
[string]$url | |
) | |
# this assumes you have youtube-dl installed | |
# choco install youtube-dl | |
# this also assumes you have ffmpeg installed | |
# choco install ffmpeg |
http://east.paxsite.com/schedule/panel/what-it-takes-to-build-a-next-gen-open-world-game http://east.paxsite.com/schedule/panel/behind-the-game-designs-of-final-fantasy-xv http://east.paxsite.com/schedule/panel/history-in-games-the-big-questions http://east.paxsite.com/schedule/panel/philosophy-life-romance-and-a-super-metroid-speed-run http://east.paxsite.com/schedule/panel/inside-gearbox-software http://east.paxsite.com/schedule/panel/design-rpgs-for-fun-and-profit [http://east.paxsite.com/schedule/panel/blizzard-preview-heart
let subclasses = {}; | |
export default class BlogPostImporter { | |
constructor(body) { | |
for(var p in body) { | |
if(body.hasOwnProperty(p)) { | |
this[p] = body[p]; | |
} | |
} | |
} | |
var variable = "global"; | |
function doSomething() { | |
console.log(variable); | |
var variable = 'local'; | |
console.log(variable); | |
} | |
doSomething(); |
# needs to be run in Package Manager Console | |
# i made this multiple lines for readability, | |
# you might need to compact it to one to run it | |
Get-Project -All | ForEach-Object { | |
Write-Host ""; | |
Write-Host $_.ProjectName; | |
Write-Host "------------"; | |
Get-Package -ProjectName $_.ProjectName -Filter <PACKAGE_NAME> | ForEach-Object { | |
Write-Host ($_.Id, $_.Version) -Separator " " | |
} |