Creating a ConsoleMod to Buildron
In this post we’ll create a mod that adds a console window to Buildron and let you monitor its events. Our ConsoleMod will have 2 classes: ModController and Mod. ModController class ModController class will be a MonoBehaviour responsible to showing to the user a window where the Buildron events will...
Read "Creating a ConsoleMod to Buildron"
Starting a Buildron mod with a mod template
In this post I will show how to start building a mod to Buildron using a mod template. Download Download the Buildron-Mod-Template.zip from releases page. Unzip it in any folder. Creating the solution Open a prompt (win) or a terminal (linux/mac). Go to the folder where you unzip Buildron-Mod-Template.zip. Type:...
Read "Starting a Buildron mod with a m..."
Using a FxCop badge on your GitHub repository
The use of badges on GitHub repositories helps us to promote good pratices about our code. Some amazing services like the Shileds.io can generate almost all badges you can imagine, but what about those badges where there is no such online service to perform this job? One common case is...
Read "Using a FxCop badge on your GitH..."
Auto tracking your time with ControlPlane + Toggl
So, do you want to track the time you spend in some tasks, but always forget to start the time tracking? I love to used Toggl.com to time tracking and a few days ago I discovered another amazing app to OSX: ControlPlane. ControlPlane, in few words, is an app that...
Read "Auto tracking your time with Con..."
Getting your code documentation at runtime
In some situations, like generate a live console for a web api or generate code using T4 template we need a way to read the code documentation at runtime. Some time ago I’ve faced that situation again and I thought: “Should be an easy way to read this code documentation!”....
Read "Getting your code documentation ..."
Improving your debug with DebuggerDisplay
There is an amazing and easy to use custom attribute on .NET Framework stack that I rarely see in use. It helps and improve the way you can debug your code and you just need a line of code to use it: DebuggerDisplay. Maybe you’ve used it a lot and...
Read "Improving your debug with Debugg..."
Using sensitive data on your Travis CI build
You have programmed an amazing functional tests to validate your infrastructure service that connect on Google Docs. These functional tests run perfect well on your development machine and now you want to run them on Travis CI, but how to do this without reveal your Google’s username and password worldwide? Travis...
Read "Using sensitive data on your Tra..."