RSSAmplifier

Blog

Thomas Burette

tburette.github.ioRSS feed ↗2 posts

Latest posts

The power of keeping a coding journal

This post was inspired by the tool jrnl which has been mentioned on hacker news. An innumerable number of thoughts go through you head as you develop : The pending issue you’ll get back to later This design decision The rejected algorithm alternative That library that might be deprecated This potential bug when the file is empty The error case that could be handled better What if you possessed a…

So You Want To Write Your Own CSV code?

So You Want To Write Your Own CSV code? Fields separated by commas and rows separated by newline. Easy right? You can write the code yourself in just a few lines. Hold on a second… What if there are commas inside the fields? You need to enclose the field with quotes ( “ ). Easy right? But can only some fields but not all be quoted? What if there are quotes in the fields You need to double each…