Viewing posts for the category Programming
Somebody who deleted himself posted this comment about another Microservices craze critique. I reproduced it below for the sake of hoarding:

Some time ago I stumbled upon this stupid meme attempt:
Today I was playing (never competing, please!) on a CodeChef programming contest and was dismayed when comparing my timings with some other competitors. Theirs were way shorter and I saw no way to improve my O(N) solution because I HAD to read an array of values. My processing was taking place while reading the data, using no loops only simple calculations.
When creating a simple web application for a friend I found out the Formtastic (later Simple Form) solution for a belongs_to: :customer
associaton, a <SELECT> was not the best. It simply loaded all customer names and ids into the HTML (more than 15 thousand!). Among the solutions I thought an Autocomplete field to be the best.