HN user

jey

7,552 karma

Human interested in bits and humans.

Berkeley, California

Email: jey#kottalam!net

Posts67
Comments2,090
View on HN
www.inc.com 2y ago

27 years ago, Steve Jobs said the best employees focus on content, not process

jey
393pts273
computerengineeringforbabies.com 2y ago

How I Built Computer Engineering for Babies

jey
2pts0
computerengineeringforbabies.com 2y ago

Why I haven't run an Indiegogo campaign

jey
57pts4
cen.acs.org 5y ago

Without these lipid shells, there would be no mRNA vaccines for Covid-19

jey
38pts1
en.wikipedia.org 7y ago

Fixed price of Coca-Cola from 1886 to 1959

jey
8pts3
www.nytimes.com 7y ago

A Generation Grows Up in China Without Google, Facebook or Twitter

jey
3pts1
risecamp.berkeley.edu 7y ago

UC Berkeley RISECamp on October 11-12 with hands-on tutorials on new systems

jey
6pts0
medium.com 7y ago

Lessons From a Failed Startup — From and For First Time Founders

jey
202pts47
onlinelibrary.wiley.com 8y ago

Solitude: An Exploration of Benefits of Being Alone

jey
4pts0
www.nytimes.com 8y ago

Leading Scientific Publisher Bows to Chinese Censorship

jey
3pts0
www.washingtonpost.com 8y ago

Facebook’s willingness to copy rivals’ apps seen as hurting innovation

jey
3pts1
kk.org 9y ago

The California Ideology (2011)

jey
2pts0
www.chrisstucchio.com 10y ago

The Autodidact Ratio: A Way to Measure Bias Against Women

jey
3pts1
amplab.cs.berkeley.edu 11y ago

UC Berkeley AMP Camp 5 Big Data Bootcamp (Nov 20-21)

jey
5pts0
news.ycombinator.com 14y ago

Ask HN: EC2 spot price history site to replace defunct cloudexchange.org?

jey
4pts1
www.nytimes.com 14y ago

Facebook Agrees to F.T.C. Settlement on Privacy

jey
3pts0
news.ycombinator.com 15y ago

Ask HN: Review my startup, a search engine to find what you like

jey
11pts9
news.ycombinator.com 15y ago

Ask HN: Rent a mathematician / numerical analyst?

jey
3pts2
www.scivee.tv 15y ago

The Algorithmic Lens: Christos Papadimitriou on how CS is transforming science

jey
4pts1
consc.net 15y ago

The Singularity: A Philosophical Analysis

jey
1pts0
www.archive.org 16y ago

Excellent talk by SICP author Gerry Sussman

jey
3pts1
review.source.android.com 16y ago

Android Project Changeset 4f8b683: libc/memset.c

jey
87pts90
www.youtube.com 16y ago

"Like a bicycle for our minds"

jey
1pts0
news.ycombinator.com 16y ago

Ask HN: What happened to Vidly?

jey
7pts2
www.youtube.com 16y ago

Jeff Bezos - Regret Minimization Framework

jey
88pts7
ocw.mit.edu 16y ago

Great Ideas in Theoretical Computer Science

jey
5pts0
papersincomputerscience.org 16y ago

Papers in Computer Science: summary and discussion of important papers

jey
60pts6
en.wikipedia.org 16y ago

Important publications in Computer Science

jey
5pts0
www.cscs.umich.edu 17y ago

Viruses of the Mind - Richard Dawkins on Religion

jey
8pts8
www.nytimes.com 17y ago

In Silicon Valley, Recruiting Clashes With Immigration Limits

jey
54pts64

I'm not a mathematician, but I don't think that's true..? It's just that some problems are considered "hard" or known to have been "open" for a long time or that involve some clever/pioneering new technique. There's tons of math papers out there that are in some technical sense a novel contribution but in practice just languish without much attention except maybe from like two other people working in the same subfield.

Emojis don't even render the same on every platform

This is a feature, not a bug. That it's using your platform-specific emojis makes it easier to scan, since it's the ideograms you are already accustomed to. Much faster to scan familiar symbols than to read each section heading serially.

I'm not convinced this is a problem. For example, all the folks who developed convex analysis for its pure geometric and mathematical beauty in the land of pure Platonic forms, well their work was still useful downstream for all of us doing convex optimization and dealing with log-concave probability distributions. So no harm, no foul.

And I would further add: In addition to performance, Julia's language and semantics are much more ergonomic and natural for mathematical and algorithmic code. Even linear algebra in Python is syntactically painful. (Yes, they added the "@" operator for matmul, but this is still true).

I wonder if there's a law+econ analysis of comparing the current framework (regulations and upfront permitting) vs having the regulations but then enforcement via combination of randomized gov't inspections and private lawsuits. The motivation would be to allow things to move faster while also requiring the same degree of compliance, but without the massive red tape upfront with administrators having no real incentive to approve projects or move fast. One obvious downside is that it effectively creates an economic incentive to try and skirt the law and/or find loopholes, but that arguably exists to the same degree in the existing system.

I don't think the point was to say "look, AI can just take care of writing a browser now". I think it was to show just how far the tools have come. It's not meant to be production quality, it's meant to be an impressive demo of the state of AI coding. Showing how far it can be taken without completely falling over.

EDIT: I retract my claim. I didn't realize this had servo as a dependency.

That makes sense, but how do you efficiently evaluate the Gaussian kernel based approach (“operator-based data structures (OBDS)”)? Presumably you want to do it in a way that keeps a dynamically updating data structure instead of computing a low rank approximation to the kernel etc? In my understanding the upside of the kNN based approaches are fast querying and ability to dynamically insert additional vectors..?

I’m pretty sure you are supposed to declare agricultural products at customs. Sure, if the apples are cooked into a pie that’s probably fine but I believe most countries don’t let people bring in fresh fruit because of the possibility that some pest (insect, fungus) could be hitching a ride on it.

That the annotation applies to variables and not types is surely an oversight or mistake right? Seems like it could have been easier to initially implement that way but it just doesn’t seem to fit with how C type system works. (Yes it will make declarations uglier to do it on types but that ship has sailed long ago; see cdecl.org)