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
| git diff -w | git apply --cached --ignore-whitespace |
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
| private object Eval(KeyValuePair<string, object> df) | |
| { | |
| var properties = df.Key.Split('.'); | |
| object root = Activator.CreateInstance(Assembly.GetExecutingAssembly().GetTypes().First(t => t.Name == properties.First())); | |
| var temp = root; | |
| for (int i = 1; i < properties.Length - 1; i++) | |
| { | |
| var propertyInfo = temp.GetType().GetProperty(properties[i]); |
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
| # artigo sobre a stack de tecnologias usadas no trello | |
| http://blog.fogcreek.com/the-trello-tech-stack/ | |
| # thoughtworks tech radar | |
| http://www.thoughtworks.com/radar | |
| # para aprender mais sobre git | |
| http://www.codeschool.com/courses/try-git | |
| # portais no github de várias grandes empresas |
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
| public class PerformanceLogger : IDisposable | |
| { | |
| private Stopwatch sw; | |
| private string context; | |
| public PerformanceLogger(string context) | |
| { | |
| this.context = context; | |
| this.sw = Stopwatch.StartNew(); | |
| } |