HN user

Goranek

903 karma

goranpopovic on gmail

Posts41
Comments188
View on HN
github.com 10y ago

GoPy generates a CPython extension module from a go package

Goranek
1pts0
docs.google.com 11y ago

Go 1.5 Bootstrap Plan

Goranek
134pts51
groups.google.com 11y ago

iOS support in Go 1.5

Goranek
1pts0
github.com 11y ago

Minimal Acyclic Finite State Automata in Go

Goranek
39pts2
groups.google.com 11y ago

Go 1.4 beta 1 is released

Goranek
1pts1
github.com 11y ago

Apache Lucene Go port

Goranek
7pts3
github.com 11y ago

A timed rate limiter for Go

Goranek
1pts0
groups.google.com 11y ago

Golang-dev: Help: Converting everything on the G stack to Go

Goranek
2pts0
developers.google.com 11y ago

Google Pub/Sub quota increased by 10x

Goranek
2pts0
groups.google.com 11y ago

Go 1.3.1 released

Goranek
6pts1
github.com 11y ago

BTree implementation for Go

Goranek
1pts0
ledisdb.com 12y ago

LedisDB - Redis like database written in Go

Goranek
5pts0
tobyhede.github.io 12y ago

Underscore.go

Goranek
140pts60
googledevelopers.blogspot.com 12y ago

Cloud Platform at Google I/O – new Big Data, Mobile and Monitoring products

Goranek
119pts31
googlecloudplatform.blogspot.com 12y ago

Google BigQuery and Datastore Connectors for Hadoop

Goranek
3pts0
digitalocean.com 12y ago

DigitalOcean website is down

Goranek
2pts0
gobyexample.com 12y ago

Go by example

Goranek
4pts0
googlecloudplatform.blogspot.com 12y ago

Google Cloud Platform - New console

Goranek
1pts0
blogs.msdn.com 12y ago

Announcing general availability of Windows Azure multi factor authentication

Goranek
1pts0
googlecloudplatform.blogspot.com 12y ago

App Engine 1.8.5 released – featuring Search API and PHP updates

Goranek
4pts0
googlecloudplatform.blogspot.com 12y ago

Google BigQuery goes real-time with streaming inserts, time based queries

Goranek
2pts0
blogs.msdn.com 12y ago

Windows Azure now fully supported by Juju

Goranek
1pts0
www.youtube.com 12y ago

Seven Databases in Song

Goranek
2pts0
michael.otacoo.com 12y ago

Postgres 9.3 feature highlight: event triggers

Goranek
1pts0
aws.typepad.com 12y ago

Copy DynamoDB Data Between Regions Using the AWS Data Pipeline

Goranek
2pts0
aws.typepad.com 12y ago

New - Modify EC2 Reserved Instance Reservations

Goranek
2pts0
www.digitalocean.com 12y ago

Introducing Private Networking

Goranek
185pts75
cloud.google.com 12y ago

Hadoop on Google Compute Engine

Goranek
5pts0
googlecloudplatform.blogspot.com 12y ago

Differential snapshots for Persistent Disks on GCE

Goranek
1pts0
groups.google.com 12y ago

AppEngine VM based backends

Goranek
1pts0

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.

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)

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 :(

datastore is a copy of Google Megastore service. It has indexes, sql like queries, transactions.. and you don't need to run servers like with BigTable (you pay for documents and api calls only)

Simple scales better than complex. What they need is key->value caching and for that memcached is a perfect match. I'm not saying that Redis is bad, but when all you need is key-value memory caching, redis isn't needed.

Oh, sorry missed that "development" part. I'm afraid it's not possible. When it comes to managed vms, python local dev server is still not available(java is), so there is no way to know if using same local server will be possible.

This was already possible by using multiple modules within a single project. Each module can be written in a different language and all modules use same datastore, taskqueue, etc.