Goranek's comments

Goranek | 10 years ago | on: Microservices without the Servers

It doesn't matter if you are big or small, you're always wasting resources.. Just count how many servers you have using <50% cpu. By having thousands of users, amazon can organize servers in a way, no cpu is wasted.

Goranek | 10 years ago | on: Porting Flask to Go – Jinja2 to Pongo2

handling m2m is especially painful. I just hate writing same long code for fetching old members, checking if members are changed and then updating/inserting new members. Joins are also problematic (i like how beego orm is handling it, but it works only for single object and not multiple objects)

Goranek | 10 years ago | on: Porting Flask to Go – Jinja2 to Pongo2

Last 2 years I've been using Go (instead of Python), even for webpages & apis. I'm actually considering going back to Python(for webpages and apis) because dealing with database in Go is really ugly. Currently available orms are nowhere near as useful as sqlAlchemy or django orm :(
page 1