HN user

diceduckmonk

833 karma
Posts39
Comments280
View on HN
news.ycombinator.com 2y ago

Ask HN: Do companies still do ETL/BigData in house?

diceduckmonk
3pts3
news.ycombinator.com 3y ago

Ask HN: Is the Rings of Power worth watching?

diceduckmonk
2pts4
www.npr.org 3y ago

Japan recounted its islands. Now there may be 7k more

diceduckmonk
2pts1
news.ycombinator.com 3y ago

Ask HN: Hacker News but for Students?

diceduckmonk
2pts1
www.notion.so 3y ago

Notion AI

diceduckmonk
2pts0
www.wired.com 3y ago

The Mastodon Bump Is Now a Slump

diceduckmonk
6pts1
news.ycombinator.com 3y ago

Ask HN: Are there too many CS grads?

diceduckmonk
1pts1
travel.state.gov 3y ago

Russia Travel Advisory

diceduckmonk
2pts0
news.ycombinator.com 3y ago

Ask HN: How's it going for junior devs / rising CS grads?

diceduckmonk
1pts0
news.ycombinator.com 3y ago

Ask HN: How long did it take you to learn (native) mobile dev?

diceduckmonk
4pts2
news.ycombinator.com 3y ago

Ask HN: Why does PHP dominate the CMS space?

diceduckmonk
3pts7
news.ycombinator.com 3y ago

Ask HN: What would HN on Mastodon be like?

diceduckmonk
1pts2
mashable.com 3y ago

Dark Sky is done. Here's how Apple's Weather app succeeded it

diceduckmonk
2pts0
news.ycombinator.com 3y ago

Ask HN: Success stories of apps have built with Airtable / LCNC?

diceduckmonk
3pts0
finance.yahoo.com 3y ago

Apple is now worth more than Alphabet, Amazon, and Meta combined

diceduckmonk
26pts11
old.reddit.com 3y ago

We got rejected after [YC W23] interview

diceduckmonk
2pts1
news.ycombinator.com 3y ago

Ask HN: Platforms for Engineering Blogs?

diceduckmonk
4pts2
news.ycombinator.com 3y ago

Ask HN: How important is a multi-cloud strategy?

diceduckmonk
2pts2
www.youtube.com 3y ago

Show HN: Cross-Cloud Search Engine

diceduckmonk
1pts0
news.ycombinator.com 3y ago

Ask HN: What's the closest option to MMO-infra-as-a-service?

diceduckmonk
1pts2
news.ycombinator.com 3y ago

Ask HN: Will Canva cause Google Slides to shutter?

diceduckmonk
1pts1
en.wikipedia.org 3y ago

Shoutbox

diceduckmonk
1pts0
news.ycombinator.com 3y ago

Ask HN: Has anyone applied for GCP's Google for Startups?

diceduckmonk
2pts0
news.ycombinator.com 3y ago

Ask HN: Has GitHub stars become a gamed metric?

diceduckmonk
16pts19
news.ycombinator.com 3y ago

Ask HN: What was your “honeymoon phase” with HN?

diceduckmonk
5pts10
news.ycombinator.com 3y ago

Ask HN: What tech would you use to build Instagram with in 2022?

diceduckmonk
1pts0
www.heartbeatdrummachine.com 3y ago

A Drum Machine with Congenital Heart Disease

diceduckmonk
2pts0
news.ycombinator.com 3y ago

Ask HN: Thoughts on No Equity “Accelerator”?

diceduckmonk
2pts3
news.ycombinator.com 3y ago

Ask HN: Gamification in Enterprise Products?

diceduckmonk
8pts5
news.ycombinator.com 3y ago

Ask HN: Any blog platforms with support for Org files?

diceduckmonk
2pts3
DIY Soft Drinks 3 months ago

the amount they give you is immaterial to hurting them and can be material to you.

It’s immaterial to Apple if I stole an iPhone from the Apple Store too.

Also, he said that he's somehow stumbled into somehow having a commercial bottling license. If him, why not us?

Because he is a commercial bottler who is sampling from different supplier that he intends to source from for his business.

Funny enough, I’m a Vietnamese person from Portland and was doing this exact same analysis in Paris (highest density of overseas Vietnamese population) visiting a dozen places last month.

People visiting for a few days go with a “10 restaurants you have to try in Portland” which are just mediocre chic restaurants you can find in every other city. They don’t realized how underrated Asian food in Portland is. One, Google Maps and Yelp reviews are negative signals of for Asian food. Restaurants that highly rated above 4.5 are so for the “ambience” rather than the food. Two, the restaurants are dispersed rather than being concentrated around a Chinatown or Little Saigon.

A Social Filesystem 6 months ago

Git is the API.

Github/Gitlab would be a provider of the filesystem.

The problem is app developers like Google want to own your files.

Microjs 2 years ago

If you’re using TypeScript then you have a build step and package manager like NPM, which means packages and libraries are published in the NPM package registries.

This website was from/for an era where you hotlink the scripts.

We need to move towards “zero trust” for APIs.

SaaS can provide “open core” or better yet simply sell a hosted version of their fully open source code. If the provider fails to provide, you can fall back to self hosting.

The API equivalent would be open sourcing the data. This is the OpenStreetMap model. If the API provider fails to provide, you can fallback to the underlying data.

For Google Maps, They have an “official” limit of 500 where anything beyond that is not guaranteed. In practice, the current limit is 3,000.

I’m wondering if Apple Maps is doing something similar where they set a low official limit that they can walk back on / to in the future, as to avoid legal responsibility

My perspective as an ex-Google SWE:

It is someone's quarterly performance review and OKR to improve SLO. One such SLO is average load time. If you set such metrics as a goal, and financially reward people to do it, it's easy to meet the goal: arbitrary prune out the long tail, especially if the distribution of saved locations per user follows an Pareto/power law distribution.

They've since rolled back that experiment of payload sized limit, and instead used this number based limit. I guess it makes more a cleaner explainaton and internal documentation from a product sense this way as opposed to an arbitrary engineering limit.

The issue is still apathy and laziness from the engineers... they can have this per-request limits, but cache previously loaded pinnned locations, then incrementally append more to the list on subsequent requests. Instead, they attempt to reload the source of truth from the server everytime. There is a specific behavior where I see this is the case: they will load 3,000, you add another location which is now 3,001 locally, but after a few minutes they reconcile with the server and your local machine is back to 3,000. This is especially ironically considering the Google interview's emphasis on Dynamic Programming and building up a larger solution from previous solutions...

On Desktop, you can still load all your locations. There is some weird and intuitive behavior here how they reconcile edits to existing pin. The caveat on Desktop is that they will entire to render entire regions when there is too much (somewhere in the vicinity above 3,000 but below 8,000). I've noticed in recent weeks they've rolled out a quadtree implementation where in a given rectangular region, they'd limit and cap how much saved locations they attempt to render, versus before where it would be seemingly depth-first until they reach the 3,000 limit.

Why are mapping services so stingy with custom lists of pinned location? This announcement from Apple made me excited because Google Map's saved list has become unusable for me. I have 8,000+ favorites (used to mark places I've visited) on Google Maps and behavior above 500 is undefined. On Mobile, Google Maps loads an arbitrary list of 3,000 pins. Unfortunately, Apple is even worst with a limit of 100 [2]

[1] https://www.reddit.com/r/GoogleMaps/comments/1cfqk52/did_i_j...

[2] https://support.apple.com/en-us/103188

Deny that might feel good, but society didn't mandate 10 years of public education for shits and giggles.

k12 was created by industrialists who wanted obedient workers and well behaved citizens who won’t cause crime and instability in the ruling class’ assets.

School prepares workers, not the actual people changing the world.

Most high school grads will know more about how the mitochondria is the power of the cell, more so than know about taxes and personal finance. That’s by design.

I was constantly failing classes in high school, but I ended up as an engineer at FANG company without breaking a sweat. My cofounder didn’t finish high school and worked as an HFT trader.

People here who are judging people based on their high school accomplishments must be coming from a sheltered middle class background.

Having worked in GCP, it is not surprising at all to me that Google, despite having the resources, can’t productize an LLM.

It feels like OP question stems from a belief that all there is to training a good model is throwing lots of compute at it. As with any product, there’s polishing and fine tuning you need to do, both before and after travel. Google can’t do that. You also have to accept imperfection and clever tricks to this end, a.k.a. the startup / hacker mentality, which Google is also not positioned to do. I think Meta has a good chance though

I'm sure there's been so many (failed) attempts at disrupting WordPress. Wondering if anyone has compiled a list of post-mortems. Would also love to know about the successful attempts, though it would seem it's not outsized. Headless CMS' were picking up steam a few years back, but it seems the hype has plateaued?

Restaurants that have the latter are chains or catering to tourists, and unfortunately not going to have such a system.

The latter are ramen and other cheap eats, excluding shokudo. One “boutique” ramen shop owner has told me it was not cost effective to buy a ticket vending machine. I guess you have to be at a particular scale and throughput to have a ticket vending machine. And restaurants that optimize for throughput are usually not the best ones. Again unfortunately.

Then izakayas menus are in Kanji and even Japanese people have trouble ordering at times. That’s kind of the experience and point though.

Regarding QR code based menus, I’m curious whether you’ve experienced bad implementations. I live here, traveled all 47 prefectures maybe 3 times over, and have used dozens of digital menu implementation. There’s only been 1 or 2 that were smooth, but they were not ubiquitous. The face-to-face business / sales culture here means the tech products that spread are not necessarily the good ones.

Same. I’ve experienced over several dozen half baked QR / digital order implementations. I guess it’s an extreme case of the second system effect, where every vendor thinks they can build a better solution than the other 10, but they don’t.