Wednesday, October 14, 2015

Sharing code with the world

The main reason I started writing this blog was to share snippets of things I find interesting or as a way to document any solutions I come up with that I would like to share. The problem with the web though, is formatting. When you copy and paste code from your code editor into a web form, things don't go as expected. Some pages will try to interpret the code blocks and in some cases can even cause the page to break. Most of the time, indentation is ignored and sometimes line breaks too.

Friday, October 9, 2015

Posting blog entries from Sublime Text 3

This is a proof of concept post that means the Sublime Text 3 Blogger plugin is working.

Friday, October 2, 2015

More Floating Point Goodness

Continuing my look into floating point arithmetic, I decided to see how things work in different languages. If you didn't see my first foray into this, you can check that out here.

Wednesday, September 30, 2015

Floating Point Math

In most cases, I tend to write my own code to do simple tasks. In some cases it's not a simple task but I need more control. Recently I've realized that when it comes to math, specifically floating point operations, I will always rely on someone else's code to do the math for me.