HN user

natly

757 karma
Posts8
Comments149
View on HN

Didn't google used to incorperate this into their search rankings? There's no way they still do that today right? Imagine how amazing it'd be if they suddenly turned on the button to downrank pages as a function of how many cookie banners and autoplaying videos etc you have to click away to get to the content.

A Response 4 years ago

Writers have a responsibility to ensure that they take reasonable steps to ensure the accuracy of their statements, and that those statements are clear.

What a crazy take. Writers can write whatever they want. A book of poetry or prose doesn't have to meet some HN rationalist level of accuracy and rigour.

I was initially annoyed by this title but now I'm gonna switch my perspective to being happy that ideas like this are floating around since it acts as a really cheap signal to tell if someone knows what they're talking about or not when it comes to ML.

Unless every invention is gonna be AI generated (which is kind of a scary situation), intellectual property still needs to be a thing (otherwise people won't have incentive to invent, it'll just be stolen from them).

I know it's a sort of exaggerated paranoid thought. But like these things do all come down to scale and some areas of the world definitely could have the amount of compute available to make dall-e level quality full scale videos which we might be consuming right now. It really does make you start to wonder at what point we will rationally be able to have zero trust that not everything we watch online is fabricated.

Twitter Notes 4 years ago

I agree. However I doubt it'll be long lived. Twitter gives up on features all the time (fleets, I doubt spaces will be around in a year). They'll try this out and abandon it like most of their experiments.

I totally acknowledge and sympathize with people (nerds) who strugge with finding love and sex. I don't recoil, I was a similar situation as a teenager. My point is mostly that it's far from a global population wide phenomenon. Plenty of people are having sex - it's alive and well - and it's not really going out of fashion would be my clarified expanded argument.

The comments in this thread and this article is making me want to read HN less. (What a crazy incorrect take for most of the population.)

Wow the source code is kind of blowing my mind. I had no idea this was possible (only in theory).

  import * as torch from "./torch.mjs";

  ...

  const w0 = torch.tensor(weights["conv1.0.weight"]);
  const b0 = torch.tensor(weights["conv1.0.bias"]);
  const w1 = torch.tensor(weights["conv2.0.weight"]);
  const b1 = torch.tensor(weights["conv2.0.bias"]);
  const lw = torch.tensor(weights["out.weight"]);
  const lb = torch.tensor(weights["out.bias"]);

  const convs = nn.Sequential(
    nn.Conv2d(w0, b0, 1, 2),
    nn.MaxPool2d(2),
    nn.ReLU(),
    nn.Conv2d(w1, b1, 1, 2),
    nn.MaxPool2d(2),
    nn.ReLU()
  );
  ... 
Looks like near identical python torch code except apparantely running in local js!

I recently got a new phone and forgot my apple password but I considered just creating a new account because I didn't really consider it that big of a deal to just start fresh. I don't cling onto my emails and I only have like 30 contacts that I actually care about, all of which I have their emails stored in gmail rather than in contacts (and don't call them anyway). So I'm not sure I would care if I had to start from scratch.

It's crazy how much work went into those old games. I have a feeling those programmers weren't even paid that well considering how few people owned computers back then (so the market can't have been large).

The popularity of these types of word games around developer circles and my total disinterest in them (partially because I'm so bad at them) makes me wonder if I have a differnet brain setup than the average coder.

That "NEVER SETTLE" author bio here is funny in this context. I thought it the whole repo creator was some disgruntled coder who wrote it to push for never settling out of court (but it turns out to be the slogan for the phone).