HackerTrans
TopNewTrendsCommentsPastAskShowJobs

notRobot

15,122 karmajoined 6 ปีที่แล้ว
ʕ º ᴥ ºʔ

HN badges: https://hnbadges.netlify.app/?user=notRobot

Submissions

Stride Game Engine

stride3d.net
2 points·by notRobot·เมื่อวานซืน·0 comments

Instagram is incorporating users' photos in ads for Meta Glasses

twitter.com
357 points·by notRobot·12 วันที่ผ่านมา·146 comments

Police officer investigated over AI-generated evidence

theguardian.com
3 points·by notRobot·18 วันที่ผ่านมา·0 comments

Unpatched Firefox focus universal XSS 0day poc released

twitter.com
3 points·by notRobot·เดือนที่แล้ว·1 comments

AI slop has infiltrated the homes of the elderly

old.reddit.com
5 points·by notRobot·เดือนที่แล้ว·0 comments

Gitea is 10 years old, but official repo is still hosted on GitHub

github.com
3 points·by notRobot·เดือนที่แล้ว·0 comments

Decache – you might have the internet's lost media in your PC's cache folders

sindexmon.github.io
4 points·by notRobot·เดือนที่แล้ว·0 comments

Paint.NET developer gets "paint.net" domain from scammers after 22 years

twitter.com
35 points·by notRobot·เดือนที่แล้ว·7 comments

Pixel phones running Graphene OS not eligibile for battery replacement program

twitter.com
20 points·by notRobot·2 เดือนที่ผ่านมา·1 comments

Curl maintainer: AI security reports are no longer slop

daniel.haxx.se
8 points·by notRobot·2 เดือนที่ผ่านมา·1 comments

Non stupid age verification for social media

twitter.com
1 points·by notRobot·2 เดือนที่ผ่านมา·0 comments

"Mathematics is a fundamentally *human* story"

twitter.com
2 points·by notRobot·3 เดือนที่ผ่านมา·1 comments

Single ATC controller was managing LaGuardia Airport at time of Air Canada crash [video]

youtube.com
33 points·by notRobot·4 เดือนที่ผ่านมา·0 comments

Metaphors Ubiquitous in Computer and Internet Terminologies [pdf]

theartsjournal.org
2 points·by notRobot·4 เดือนที่ผ่านมา·0 comments

Anthropic and Palantir Bring Claude to U.S. Intelligence and Defense (2024)

investors.palantir.com
1 points·by notRobot·4 เดือนที่ผ่านมา·0 comments

Tailwind lays of 75% of their team due to traffic drop to docs because of LLMs

twitter.com
2 points·by notRobot·6 เดือนที่ผ่านมา·3 comments

Portableapps.com – Portable software for USB, portable, and cloud drives

portableapps.com
1 points·by notRobot·8 เดือนที่ผ่านมา·0 comments

List of predictions for autonomous Tesla vehicles by Elon Musk

en.wikipedia.org
5 points·by notRobot·9 เดือนที่ผ่านมา·2 comments

comments

notRobot
·3 วันที่ผ่านมา·discuss
This is SO COOL. Works perfectly in FF for me, if it can be made to work in safari then this might be one of the easiest ways to generate and display QR codes on the front-end.
notRobot
·15 วันที่ผ่านมา·discuss
@mhurhangee also appears to have a mirror of the missing github repo here: https://github.com/mhurhangee/docx-editor
notRobot
·23 วันที่ผ่านมา·discuss
Not exactly what you asked for, but this page lists their impact: https://www.cureswithinreach.org/about-us-repurposing-resear...
notRobot
·25 วันที่ผ่านมา·discuss
Yes, you can have sandboxed Google apps: https://grapheneos.org/usage#sandboxed-google-play
notRobot
·เดือนที่แล้ว·discuss
I agree that a consistent QA mindset is rare, but I'm not sure even if present if it's enough to replace an SDE.

I very recently looked at the codebase of a vibe-coded app made by someone with domain expertise but no software dev experience.

It was very clear to me that he had described it from his POV to an AI, and the AI had implemented features in a manner that technically worked, but made future maintenance or expansion extremely tricky, which is why he was now looking for a dev.

For example, in his data schema, for every item on a menu, instead of simply having an array property like so for ingredients:

    items["latte"]["ingredients"] = ["water", "milk", "sugar", ...]
He had individual flags for every item for every possible ingredient it could have or not have:

    items["latte"]["has_milk"] = true
    items["latte"]["has_nutmeg"] = false
    items["latte"]["has_cinnamon"] = false
    items["latte"]["has_sugar"] = true
    ...
This technically worked and passed tests from his POV at an MVP level. But added a lot of complications when actually trying to build more features or when a new menu item had ingredients the founder hadn't thought to include in the schema beforehand.

I totally get how he ended up where he did though. While describing it to the AI, he probably said something like "store info on each menu item's ingredients, they might have milk or coffee or sugar", and the AI created individual flags for them and he didn't think to question it, because he didn't know what's "right" or "wrong", but then as he kept building the AI stuck with keeping individual flags instead of swapping it out with an array mechanism, and he couldn't have known the correct way to implement it.

Only a dev with experience would know how to describe the system to an AI model to get an output that works well, and how to assess the quality of its output beyond what can be assessed through the basic UI. This wasn't a QA failure, it was a design failure.
notRobot
·2 เดือนที่ผ่านมา·discuss
You can just click play on a server without having to run one yourself, the enthusiasts do that. Eg: Halo CE, Armagetron, countless others.
notRobot
·2 เดือนที่ผ่านมา·discuss
Claude Code is really good at stuff like this. The other day I tried to recover some images from an SD card that had gone bad. I used GetDataBack to recover files, but they appeared to be malformed and didn't open in image viewers.

I tasked Claude to analyze the files and figure out what's going on, and eventually we figured out that each file had a custom metadata header + thumbnail + actual image concatenated. I had it write a python script and was able to recover all the images with their metadata. It's nothing a human couldn't have figured out, but it was definitely WAY faster than doing it myself.

I've also used Claude in the past to figure out how to break into routers with locked down firmware. It's great at suggesting and trying different approaches.
notRobot
·2 เดือนที่ผ่านมา·discuss
IDK if it's just me, but the rate at which Anthropic and similar are launching (and changing!) features and offerings doesn't inspire confidence. I expect stability from software and platforms I buy into and integrate into my systems.

Feels like they're just using LLMs to produce enormous levels of output, without understanding that quantity ≠ quality.
notRobot
·3 เดือนที่ผ่านมา·discuss
Have you taken a look at armbian? If so, what was your experience?

https://www.armbian.com/boards?vendor=xunlong
notRobot
·4 เดือนที่ผ่านมา·discuss
There was a single traffic controller handling the entire airport. This was bound to happen and will keep happening unless things change. It's absurd that the US hasn't been able to fix its ATC shortage in decades.

Currently over 41% of facilities are reliant on mandatory overtime, with controllers frequently working 60-hour weeks with only four days off per month.
notRobot
·4 เดือนที่ผ่านมา·discuss
We could even call it... Stack Overflow for... Teams.
notRobot
·4 เดือนที่ผ่านมา·discuss
I don't really think it's "journalism" to be doxxing the identities of folks who clearly want to stay anonymous and have their work be detached from their irl personalities.
notRobot
·4 เดือนที่ผ่านมา·discuss
"Original research" isn't worth much unless replicated, which is the entire problem being discussed in this thread. Replicating studies are great though because they tell you if the original research actually stands and is valid.

> Replicating work is far more difficult than a lot of original work.

Only if the original work was BS. And what, just because it's harder, we shouldn't do it?
notRobot
·4 เดือนที่ผ่านมา·discuss
There are 15 interface admins as per these links

https://en.wikipedia.org/wiki/Wikipedia:Interface_administra...

https://en.wikipedia.org/wiki/Special:ListUsers/interface-ad...
notRobot
·5 เดือนที่ผ่านมา·discuss
Shell In A Box has been a thing for like two decades now, and gives you a simple web-based interface ssh interface you can use from any device. https://github.com/shellinabox/shellinabox
notRobot
·5 เดือนที่ผ่านมา·discuss
Wikipedia is actually the secondary source when someone reads a page on it, and it requires primary sources (like factbooks) to cite to exist.
notRobot
·6 เดือนที่ผ่านมา·discuss
> never going to be able to get App Attest/Play Integrity verification without relying on a jailbreak/vulnerability.

Even with jailbreak/rooting, hardware attestation is nearly impossible to spoof.
notRobot
·6 เดือนที่ผ่านมา·discuss
I use a Windows Metro inspired launcher on Android and it's the best phone UI experience I've ever had: https://play.google.com/store/apps/details?id=com.nfwebdev.l...
notRobot
·7 เดือนที่ผ่านมา·discuss
Custom ROMs fail device integrity, which means you cannot use banking, financial, government, payments and telcom apps, not to mention all the games that refuse to work.
notRobot
·9 เดือนที่ผ่านมา·discuss
Isn't analysing and writing bits of code one of the few things LLMs are actually good at and useful for (as opposed to creative writing or whatever).

Before LLMs if someone wasn't familiar with deobfuscation they would have no easy way to analyse the attack string as they were able to do here.