lcarlson's comments

lcarlson | 8 years ago | on: CouchDB vs. MongoDB

I would assume a SQL database would be at least a tad easier to do accounting like tasks?

lcarlson | 8 years ago | on: Ringless voice mails from telemarketers

You can actually sue them if they do call you after you tell them not to for $1200 per violation. Is also illegal for them to call mobile phones. This technology actually cropped up because collection agencies are getting backlash from using robo dialers. I'd argue collection agencies are much more regulated than telemarketers. Google the FDCPA law.

lcarlson | 9 years ago | on: Is Model-View-Controller dead on the front end?

On the contrary, I find that people stuff too much on the model because of rails. I've found that I much prefer very simple models to describe very fine grained parts of the data and use the controller for much of the tying of things together. You kinda of treat models as 'data components' if you will, mixing and matching them where needed in the view

lcarlson | 9 years ago | on: Appropriate Uses for SQLite

Whatever your issue was, it most likely has to do with our query planning or lack of indexes. I've used sqlite with success on many gigabyte datasets.

lcarlson | 9 years ago | on: Golang – encoding/csv: Reading is slow

This may be a bit off topic but I've found sqlite to be quite a powerful csv parser. Once posted you can manipulate the data in lots of ways. When you're working with reports that need to get back into some sort of table format, it's very intuitive and easy for SQL people.

lcarlson | 9 years ago | on: Blazing Fast HTML: Elm vs. React vs. Angular vs. Ember

As a React user, I'd be really curious to see what these benchmarks look like when you're dealing with larger, more complex projects. I was under the impression that React scales well when dealing with lots of nested components and diffing the updates for each.
page 1