HackerTrans
トップ新着トレンドコメント過去質問紹介求人

notRobot

15,122 カルマ登録 6 年前
ʕ º ᴥ ºʔ

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

投稿

ストライド ゲーム エンジン

stride3d.net
2 ポイント·投稿者 notRobot·一昨日·0 コメント

Instagram is incorporating users' photos in ads for Meta Glasses

twitter.com
357 ポイント·投稿者 notRobot·12 日前·146 コメント

Police officer investigated over AI-generated evidence

theguardian.com
3 ポイント·投稿者 notRobot·18 日前·0 コメント

Unpatched Firefox focus universal XSS 0day poc released

twitter.com
3 ポイント·投稿者 notRobot·先月·1 コメント

AI slop has infiltrated the homes of the elderly

old.reddit.com
5 ポイント·投稿者 notRobot·先月·0 コメント

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

github.com
3 ポイント·投稿者 notRobot·先月·0 コメント

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

sindexmon.github.io
4 ポイント·投稿者 notRobot·先月·0 コメント

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

twitter.com
35 ポイント·投稿者 notRobot·先月·7 コメント

Pixel phones running Graphene OS not eligibile for battery replacement program

twitter.com
20 ポイント·投稿者 notRobot·2 か月前·1 コメント

Curl maintainer: AI security reports are no longer slop

daniel.haxx.se
8 ポイント·投稿者 notRobot·2 か月前·1 コメント

Non stupid age verification for social media

twitter.com
1 ポイント·投稿者 notRobot·2 か月前·0 コメント

"Mathematics is a fundamentally *human* story"

twitter.com
2 ポイント·投稿者 notRobot·3 か月前·1 コメント

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

youtube.com
33 ポイント·投稿者 notRobot·4 か月前·0 コメント

Metaphors Ubiquitous in Computer and Internet Terminologies [pdf]

theartsjournal.org
2 ポイント·投稿者 notRobot·4 か月前·0 コメント

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

investors.palantir.com
1 ポイント·投稿者 notRobot·4 か月前·0 コメント

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

twitter.com
2 ポイント·投稿者 notRobot·6 か月前·3 コメント

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

portableapps.com
1 ポイント·投稿者 notRobot·8 か月前·0 コメント

List of predictions for autonomous Tesla vehicles by Elon Musk

en.wikipedia.org
5 ポイント·投稿者 notRobot·9 か月前·2 コメント

コメント

notRobot
·3 日前·議論
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
·14 日前·議論
@mhurhangee also appears to have a mirror of the missing github repo here: https://github.com/mhurhangee/docx-editor
notRobot
·23 日前·議論
Not exactly what you asked for, but this page lists their impact: https://www.cureswithinreach.org/about-us-repurposing-resear...
notRobot
·24 日前·議論
Yes, you can have sandboxed Google apps: https://grapheneos.org/usage#sandboxed-google-play
notRobot
·先月·議論
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 か月前·議論
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 か月前·議論
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 か月前·議論
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 か月前·議論
Have you taken a look at armbian? If so, what was your experience?

https://www.armbian.com/boards?vendor=xunlong
notRobot
·4 か月前·議論
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 か月前·議論
We could even call it... Stack Overflow for... Teams.
notRobot
·4 か月前·議論
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 か月前·議論
"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 か月前·議論
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 か月前·議論
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 か月前·議論
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 か月前·議論
> 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 か月前·議論
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 か月前·議論
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 か月前·議論
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.