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:
| [ExecuteInEditMode] | |
| public class TileLayer : MonoBehaviour | |
| { | |
| public Vector2 LayerSize; | |
| public Vector2 CellSize; | |
| public Color GridColor; | |
| public bool DrawGridLines; | |
| public bool DrawPaintbrushGuide; |
I hereby claim:
To claim this, I am signing this object:
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Linq.Expressions; | |
| namespace WithTrySample | |
| { | |
| public class WithTryResult<T> | |
| { |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Text.RegularExpressions; | |
| namespace CodeImpossible.Core | |
| { | |
| /// <summary> | |
| /// Object extension methods |
| public override void RenderContent(DataContext dataContext) | |
| { | |
| // Note: Given the framework/tech, I don't have full control over all of this. Maybe I should refactor? | |
| var dataItem = GetDataItem(dataContext); | |
| // If we're right-aligned, either set a new data item or don't do anything | |
| if (IsRightAligned) | |
| { | |
| var rightAlignedDataItem = GetRightAlignedDataItem(dataContext, currentItemDetails, mediaList); | |
| if (rightAlignedDataItem != null) |
| using System; | |
| using UnityEngine; | |
| namespace FragCastle.GameObjects | |
| { | |
| public class Actor : MonoBehaviour | |
| { | |
| private const string HorizontalAxis = "Horizontal"; | |
| private Animator _animator; |
| /*! | |
| * Bootstrap Responsive v2.3.2 | |
| * | |
| * Copyright 2012 Twitter, Inc | |
| * Licensed under the Apache License v2.0 | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Designed and built with all the love in the world @twitter by @mdo and @fat. | |
| */ |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src="http://code.jquery.com/jquery.min.js"></script> | |
| <link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.no-icons.min.css" rel="stylesheet"> | |
| <link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet"> | |
| <link href="http://getbootstrap.com/2.3.2/assets/css/bootstrap-responsive.css" rel="stylesheet" type="text/css" /> | |
| <script src="http://getbootstrap.com/2.3.2/assets/js/bootstrap.js"></script> | |
| <link href='http://fonts.googleapis.com/css?family=Iceland' rel='stylesheet' type='text/css'> |
| var collection = [1,2,3,"4",5]; | |
| var current = -1; | |
| for( var len = collection.length; ++current <= len; ) { | |
| // do stuff | |
| } |