Skip to content
Logo Theodo

Articles from Georges Biaux

How I ruined my application performances by using React context instead of Redux

Georges Biaux7 min read

TL;DRI used React contexts instead of Redux for centralized states Without a selector system, my components where getting lots of data as props, some of them were often changing and not necessary to build the view Any changes in these contexts objects…

Continue reading →

CSV & Excel: escape from the encoding hell in NodeJS

Georges Biaux3 min read

CSV is great, especially to export or import table-like data into your system. It is plain-text and it can also be opened with Microsoft Excel and be edited by almost anyone, even nontechnical people. But, despite all those advantages, the use of…

Continue reading →

Pretty Url in AngularJS and Loopback. Drop the '#'

Georges Biaux3 min read

AngularJS routing system is great to create RESTful single-page applications, but it comes at the cost of accepting the # fragment in all your urls. There are several reasons you would like to drop this tiny character:Search Engine Optimization (SEO)…

Continue reading →