Goranek
|
9 years ago
|
on: Python Style Guide from Google
I thought everybody does that..who the hell would type space 4 times?
Goranek
|
10 years ago
|
on: Go devel compile times below 2x Go 1.4.3
use go install to cache packages
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
I'm currently in a phase of life when i don't want to reinvent wheel and just focus on building stuff using tools i know (go || python).
Goranek
|
10 years ago
|
on: Porting Flask to Go – Jinja2 to Pongo2
I used sqlx for a while and it's definitely an improvement over std sql, but still isn't full orm.
Goranek
|
10 years ago
|
on: Porting Flask to Go – Jinja2 to Pongo2
I'm missing them more and more. Faster development cycle > performance for most apps.
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
writing raw queries for crud seems like too much effort, especially when performance is not important
Goranek
|
10 years ago
|
on: Porting Flask to Go – Jinja2 to Pongo2
i'm using beego orm(can be used without using whole framework)
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 :(
Goranek
|
10 years ago
|
on: Angular 1 and Angular 2 integration: the path to seamless upgrade
I know that hating angular is popular these days, but i'm still using it, and it serves me well. Looking forward to Angular 2!
Goranek
|
10 years ago
|
on: Imba – A new programming language for the web
really love the design, and how it shows the whole language on the frontpage.
Goranek
|
10 years ago
|
on: Material Design Lite
this feels so much faster than the angular material :/
Goranek
|
10 years ago
|
on: Announcing General Availability of Google Cloud Dataflow and PubSub
Is Python library ready for usage? Will there ever be Go library?
Goranek
|
10 years ago
|
on: Gevent now supports Python 3
also supports pypy
Goranek
|
10 years ago
|
on: Ask HN: You can only be fluent in 3 programming languages. Which ones?
go, python, javascript
Goranek
|
11 years ago
|
on: Announcing Google Cloud Bigtable
Goranek
|
11 years ago
|
on: Announcing Google Cloud Bigtable
Well that's up to you to decide :)
Goranek
|
11 years ago
|
on: Announcing Google Cloud Bigtable
I suppose you should be able to use any Go Hbase client.
Goranek
|
11 years ago
|
on: Announcing Google Cloud Bigtable
You can always move to Hbase ... Google BigTable uses Hbase api.