HN user

humanfromearth

620 karma
Posts42
Comments127
View on HN
venturebeat.com 6y ago

CockroachDB Raises $55M

humanfromearth
3pts0
plugaru.org 7y ago

Show HN: Kuku: python template tool for k8s

humanfromearth
2pts0
developers.facebook.com 8y ago

Facebook pauses app reviews, disables new user authorizations

humanfromearth
234pts149
plugaru.org 8y ago

Highly Available Celery with RabbitMQ and Kubernetes

humanfromearth
2pts0
youarelistening.to 9y ago

You are listening to LAPD

humanfromearth
2pts0
blog.gorgias.io 10y ago

Running Flask and Celery with Kubernetes

humanfromearth
10pts1
blog.gorgias.io 11y ago

The 100% software company

humanfromearth
1pts0
blog.gorgias.io 11y ago

Turn Gmail into a Helpdesk

humanfromearth
2pts0
chrome.google.com 11y ago

Show HN: Comment on GitHub Projects

humanfromearth
19pts12
thenextweb.com 11y ago

Chrome extension for writing lightning-fast e-mails

humanfromearth
6pts0
blog.gorgias.io 11y ago

Near-future is for human-computer hybrids

humanfromearth
2pts0
blog.gorgias.io 11y ago

How much energy did we spend sending e-mail

humanfromearth
1pts0
www.theguardian.com 11y ago

Stem cell scientist found dead in wake of research paper scandal

humanfromearth
1pts0
chrome.google.com 11y ago

Show HN: Chrome Extension for writing faster in Gmail

humanfromearth
3pts1
plus.google.com 12y ago

A 1000 year time-lapse

humanfromearth
1pts0
plus.google.com 12y ago

IBAN Portability

humanfromearth
2pts0
dl.dropboxusercontent.com 12y ago

Immunity Project – HIV Vaccine Development Program [pdf]

humanfromearth
40pts44
multiverseaccordingtoben.blogspot.fr 13y ago

Finding the right computation model - Ben Goertzel

humanfromearth
2pts0
morepypy.blogspot.fr 13y ago

PyPy releases CFFI v0.3

humanfromearth
5pts0
blog.hiresasha.net 14y ago

Fabric + Pygments = Love

humanfromearth
2pts0
groups.google.com 14y ago

Proposal for an exception-like mechanism - Rob Pike

humanfromearth
4pts0
github.com 14y ago

Show HN: fnd - golang implementation of find

humanfromearth
1pts0
plus.google.com 14y ago

Republic of Moldova - the information free zone

humanfromearth
22pts14
rt.com 14y ago

EU suspends ACTA ratification

humanfromearth
3pts0
videolectures.net 14y ago

Neural Information Processing Systems 2011 Workshops (NIPS)

humanfromearth
2pts0
videolectures.net 14y ago

Relations Betweeen Machine Learning Problems

humanfromearth
6pts0
www.infoq.com 14y ago

The Evolution of Lisp

humanfromearth
45pts4
education.wolfram.com 14y ago

Wolfram launches education portal

humanfromearth
3pts0
www.aiqus.com 14y ago

Finished ai-class at age 81

humanfromearth
2pts0
mail.python.org 14y ago

PyPi switched from apache+fastcgi to nginx+uwsgi

humanfromearth
1pts0
.ai 4 years ago

I love these post burning man posts.

Finally a webhook as a service done right! I've been watching Hookdeck's progress closely and I'm super impressed with what they managed to achieve especially on the CLI side recently. It's exactly what you need to setup a webhook service in development and then seamlessly transition to a full-blown production app with 1000s rps without changing anything.

I've build webhook systems myself in the past and there are so so many issues that you don't think about at first that are difficult to solve correctly like staggering retries, routing, logging is a big one! Really happy that there is now a great service for this. Nice work!

Instead of creating some sort of government/non-profit censorship API and giving up the controls to content censorship, they are playing this censor role that will never have an end. Nobody will ever be satisfied. If they were smart they would say something like the ISPs: Hey, we're just providing the infra, we don't control the content and point the finger at the government.

Is it really profitable to have this information flow controller? Don't they just want to sell ads?

Look, I know it's not that simple. But why not do this?

While these ideas (imperative vs sync, immutability + idempotency) a great in theory, I have yet to see anyone putting them in practice while still keeping a great developer experience - that includes Zapier. I guess Stripe is doing this more or less well?

I just wish people implemented their webhook systems well (a popular standard would be nice as well) - REST is fine, it mostly works and it's pretty standard.

Same here, I tried Linear, but the fact that it doesn't use github as the source of truth is a deal breaker for us.

I would love something like Reviewable - it uses github as the "DB" and provides a nicer interface for doing code reviews.

Software should be built to accomplish its purpose. It's not a special snowflake, it's a tool to do some specific job. To think otherwise is to setup yourself and your company/team for disaster.

Kernels, compilers, language runtimes, databases? Sure, build them to last. Web pages that will not be used in 2 weeks? Don't waste your time with "build to last".

The problem is that some of us think that our software should be build to last - but in reality it's just some mediocre thing that needs to get in front of the clients as fast as possible and some bugs are "OK" to live with.

Maybe gravity is not a force in a quantum sense, but just geometry of spacetime in the presence of mass? Maybe there is no graviton and no quantum theory is needed to explain gravity.

Is there any strong evidence that gravity is following quantum mechanics? Maybe a real theoretical physicist can explain.

Thanks for this. I was wondering about this exact thing. Any idea about the the current transactions/second with finality of the BTC or ETH? What is expected from the new methods?

I'm not sure there is a requirement to cancel subscriptions online as the article suggests. From the bill itself (https://leginfo.legislature.ca.gov/faces/billTextClient.xhtm...):

(b) A business that makes an automatic renewal offer or continuous service offer shall provide a toll-free telephone number, electronic mail address, a postal address if the seller directly bills the consumer, or it shall provide another cost-effective, timely, and easy-to-use mechanism for cancellation that shall be described in the acknowledgment specified in paragraph (3) of subdivision (a).

I'm not a lawyer of course.

The problem I see with this approach is that you don’t know when the planner is going to decide to use parallel scans meaning that you might get worse performance for non parallel queries.

Parallel scans while great for performance, I found them hard to tune considering how they work with `work_mem`, `max_connections`.

The issue is that when a parallel scan starts, it's not limited to the `work_mem` which you would expect per connection. Instead, every parallel worker gets it's own `work_mem` limit. On a very busy db you can quickly end up with lots of OOM errors. What you end up doing is either disable all parallel scans or reduce `work_mem` which sometimes results in slower query performance for non-parallel queries. Suffice it to say, I wasn't smart enough to tune them and just disabled the parallel scans. Another way to do it is set a higher `work_mem` for expensive queries while having a generally low `work_mem`, but that's just hard to get right and you end up with even more bookkeeping.

This behavior might have changed. If anyone knows more about this would be glad to hear what you've done.

Pausing app reviews is annoying for sure, but not allowing new users to authorize their app is really bad.

Meaning that new customers can't connect with facebook anymore to access their own data using OAuth! We don't need permissions about your friends, your photos, or whatever. Just accessing their own messages and posts (which is what our customers want to see in our app and pay for).

I know they are shell-shocked after #deletefacebook stuff, but this overreaction is ridiculous.

So glad it's not our only channel of communication through. Times like this you appreciate email - crazy huh?