| ▲ | Tiberium 5 hours ago |
| OCRing this is a nightmare and is a good benchmark to any self-proclaimed good OCR/vision model. I think though it could likely be easily OCR'd if you give the image to any decent agentic harness with a good vision model, e.g. newest Claude/GPT ones, and tell them to split the image per lines, and then just OCR each line individually. I wonder if the script itself was written by an LLM before obfuscation? There seem to be a lot of comments in it, but in this case it's still ok :) |
|
| ▲ | lemagedurage 4 hours ago | parent | next [-] |
| I don't think it was written by an LLM, some things stand out: The congratulations text is both in English and Japanese. Contains a single heart emoji. There was an intention to have a cyan to orange gradient, but the range starts in an ANSI block, ends halfway through the 256 color block and 256 terminal colors are not arranged like a gradient at all. There's no sleep at the end of the loop where I feel like an LLM would add that defensively. |
| |
| ▲ | n2j3 4 hours ago | parent | next [-] | | Human here. I added a sleep 0.5 at the end, it's too fast to read otherwise. Makes for a nice terminal screensaver! | | |
| ▲ | INTPenis 4 hours ago | parent [-] | | Hi fellow human, I got the same idea. Just a sleep 0.1 before the echo "" makes it readable. Otherwise it scrolls way too fast. |
| |
| ▲ | make3 4 hours ago | parent | prev [-] | | "the code is not quite detail oriented enough to be AI", times are changing | | |
| ▲ | pkilgore 37 minutes ago | parent | next [-] | | Flawless, completely unnecessary abstraction is a better tell of LLM code than "comment clearly responding to a part of a prompt that I cannot see". | |
| ▲ | DaSHacka 4 hours ago | parent | prev | next [-] | | More like 'not boilerplate-y enough' | |
| ▲ | lemagedurage 3 hours ago | parent | prev [-] | | Ehh, AI makes plenty mistakes but they have a different vibe to it. In my mind an AI would do something the most popular way even when that's not appropriate. A human might do things in an unpopular way even when that's not appropriate. |
|
|
|
| ▲ | grumbelbart2 2 hours ago | parent | prev | next [-] |
| > OCRing this is a nightmare and is a good benchmark to any self-proclaimed good OCR/vision model. It's not that difficult, our industrial OCR model read it correctly on its first attempt with default parameters. The characters are easily separable, there is no structured background (think expiration dates on yogurt aluminum lids) that confuses the reader, there is no almost-text-like texture anywhere that would clutter the result. The font is also nice and standard. |
|
| ▲ | netsharc 4 hours ago | parent | prev | next [-] |
| The last time Internet people were obsessed with OCRing some base64 was a few months ago when the DoJ released tons of emails from some guy who died, but they were released as rasterized PDFs. Can't remember his name now, there's been so many distractions... |
|
| ▲ | OtherShrezzing 4 hours ago | parent | prev | next [-] |
| Safari's copy-text-from-image feature manages the entire base64 part of the string, except for the first character (I instead of a T). Weirdly, it gets much worse performance if you try to copy the entire string, including the hashbang part. I wonder what it's doing under the hood to get such good performance? |
| |
| ▲ | khurs 4 hours ago | parent [-] | | Didn't know Safari had this. Looked it up, you put mouse over text, then just select and copy it - very cool! https://support.apple.com/en-gb/guide/safari/ibrw20183ad7/ma... | | |
| ▲ | al_borland 2 hours ago | parent | next [-] | | It’s actually a system feature, not strictly a Safari feature. It also works in Photos, Preview, etc. On meetings I will often take a screenshot of the URL someone is presenting. I’m then able to just open the image and click the URL in the image. | |
| ▲ | iamflimflam1 3 hours ago | parent | prev | next [-] | | There’s a whole bunch of hidden features that no one seems to be aware of. Preview has pretty good background removal. Notes will transcribe audio from audio files. | | |
| ▲ | al_borland 2 hours ago | parent | next [-] | | Notes will do OCR as well. Trigger the feature, point the camera at something, and it will input just the text. | | |
| ▲ | lostlogin 40 minutes ago | parent [-] | | Notes is amazing.
Autocompleting equations, converting jpg to pdf and various other admin chores. The seamless cloud sync between devices is much appreciated too. |
| |
| ▲ | 2 hours ago | parent | prev [-] | | [deleted] |
| |
| ▲ | agys 4 hours ago | parent | prev [-] | | Preview has it too… And it works extremely well. |
|
|
|
| ▲ | underyx 3 hours ago | parent | prev | next [-] |
| I gave the photo to Opus 4.8 and it reconstructed the same script in one shot. Although it did say it had to correct some parts of it based on context where it suspected OCR mistakes. |
|
| ▲ | shakna 4 hours ago | parent | prev | next [-] |
| > I wonder if the script itself was written by an LLM before obfuscation? From the prototype shown here [0], and the way they talk about their process, I sincerely doubt it. Especially as they mention trying to make it hard for AI to handle the output. [0] https://youtu.be/jocGLiecpjU?t=567 |
| |
| ▲ | cb321 3 hours ago | parent [-] | | I watched that whole video link - thank you for that - and he doesn't really say. In fact, he spends much more time on the beige color harkening to computer case plastics of the 80s & 90s. The AI not handling the output relates to the final base64 output on the T-shirt (which other comments in this thread mention manually keying in or TFA discusses in the context of OCR). So, that is just not relevant to the question. What made me start to wonder, personally, was that the output seems identical if you use "♥PEACE♥FOR♥ALL" instead of the version with internal repeats. IF there is any point to that "manual expansion of the cycles", IMO that deserves a comment much more so than "# Calculate length of text; text_length=". Also, that `echo -n ...` followed by `echo ""` instead of just plain `echo` in the first place seems like the kind of copy-pasta code LLMs generate. Then again, regular devs also write pretty bad copy-pasta code. There is also this the weirdly "broken down" calculation with 3 `bc` invocations not 1 as if it was translated from a language with more arithmetic/special function power than bash. There is also the color scale stuff done in the loop instead of outside (except the one color=$(..)) which seems very unnatural and also very like machine translation. Also, at least for me, on my bash-5.3.15(1), `char="${text:t % text_length:1}"` does not work to slice out the multi-byte UTF8 heart symbols, but it sure does look like the kind of thing an LLM would do translating from a python3 script (such as something like https://news.ycombinator.com/item?id=48830669) into bash. Another thing is, as others here have observed, there is nothing "gradual" about the xterm-256 color cube. So, "gradient" is a misnomer and exactly the kind of weird things LLMs do when they cobble text together. Finally, all the tput stuff the script does instead of just "print x spaces" really smells like a human description of the side scroll in the video game graphic he shows inspired him somehow LLM-corrupted/complexified into the vertical scroll terminals do. None of this is conclusive, but the video mentions 2023..2025 as when he did it and given that he was a designer and his concerns more visual than code-oriented, I'd have to say I disagree with your sincere doubt and I do strongly suspect the decoded script was very likely LLM-circa2024-generated, possibly with light post-edits by hand. | | |
| ▲ | shakna 2 hours ago | parent [-] | | You mention someone else's Python version. Did you note that the prototype in the video was... Python? All the smells you pointed out, just look like a Python dev approaching bash without fully understanding it. | | |
| ▲ | bigfishrunning an hour ago | parent | next [-] | | > All the smells you pointed out, just look like a Python dev approaching bash without fully understanding it. also, referring to Linux as "the language of the internet" when bash isn't particularly suited for internet tasks also smell like "excited windows Python dev"... | | |
| ▲ | cb321 an hour ago | parent [-] | | FWIW, his screens looked a lot like OSX to me (which tracks with graphic design users in my experience). Anyway, he seems like a very nice fellow and I wish him and almost all T-shirt designers well. That bash script just gave me a lot of pause. (And even that seems possibly downstream of him being nice and doing it himself to spare his team from what he called a "FrankenProject".) |
| |
| ▲ | cb321 an hour ago | parent | prev [-] | | Yeah. The Flask web-page prototype was indeed in Python. (The prequel shirt was Go.) { Also, it was my own Py version which I mostly did in case anyone wanted to actually run the thing after such interest was expressed on this thread. :-) } I already said regular devs and LLMs can both gen copy-pasta. That said, being "mostly" a Python dev, asking some LLM to translate to bash for him seems even more likely to me. Only he or those close to him know for sure. You & I cannot settle it here conclusively (as also said). I also noted from the video that the ♥s (hearts) worked on whatever version of bash he tested with though it failed for me (which is why I wrote that Python). And his terminal title bar is switching between `tput` and `bc` and such meaning that what he was demoing was not some Python script. ¯\_(ツ)_/¯ EDIT: Ah..another resolution of the hearts is to not run in an LC_ALL=C environment. Oops! `LC_ALL=en_US.UTF-8 bash ..` fixed it. Oh well, I think the Python script is nicer in almost every way. E.g., you could |head -n60 and send it to a line printer/dot matrix reminiscent of the 1980s computers he shows in the video, although your printer driver would have to strip the color escapes. ;-) |
|
|
|
|
| ▲ | justusthane 2 hours ago | parent | prev | next [-] |
| What is it about this that makes it particularly hard to OCR? |
|
| ▲ | da_grift_shift 2 hours ago | parent | prev | next [-] |
| >I wonder if the script itself was written by an LLM before obfuscation? I seem to recall seeing an Akamai-branded base64'd shell script on a white shirt pre-2021(?), so unless they've changed the code since then, I doubt it... |
|
| ▲ | IshKebab 5 hours ago | parent | prev [-] |
| Definitely LLM. No humans write that many comments. |
| |
| ▲ | ChrisMarshallNY 4 hours ago | parent | next [-] | | Ahem... My code usually clocs at 50/50 (or thereabouts)[0]. Has, since my very first real engineering project (in 1987)[1]. I discuss in detail, here[2]. But one reason that I like LLMs, is that they help me to write even more documentation. I have found that I can instruct an LLM to revise my documentation, and make it even more effective. [0] https://github.com/ChrisMarshallNY (My GH profile. Pretty much everything there, is like that -has, since long before LLMs were a broken rubber on the drug store shelf). [1] https://littlegreenviper.com/wp-content/uploads/2022/07/TF30... (Downloads a PDF) [2] https://littlegreenviper.com/leaving-a-legacy/ | |
| ▲ | petu 5 hours ago | parent | prev | next [-] | | Human could write that many comments to get enough base64 text for a design. Maybe to even get some of the highlighted characters in places they want (roughly equally spaced apart). | |
| ▲ | ivolimmen 2 hours ago | parent | prev | next [-] | | Since LLM's are mimicking our code my guess we do... | |
| ▲ | NamlchakKhandro 41 minutes ago | parent | prev | next [-] | | I do | |
| ▲ | latexr 4 hours ago | parent | prev | next [-] | | > No humans write that many comments. Especially in a case like this, I would definitely write a lot of comments to aid in understanding, thus increasing trust so people would try it out and tinker with it. | | |
| ▲ | boomboomsubban 4 hours ago | parent [-] | | Plus the main point of this code is to have people look at it, the function is secondary to being an easter egg. |
| |
| ▲ | Tiberium 5 hours ago | parent | prev [-] | | Honestly it's a bit of a shame. I checked and they could've shortened their base64 payload by 304 chars by removing all comments except the top two congratulatory ones, or by 524 if they removed those too. | | |
| ▲ | OtherShrezzing 4 hours ago | parent | next [-] | | Would they still get the highlighted "PEACE FOR ALL" text throughout the shortened string? It looks like the length, and presence of those characters, was an explicit design choice. | |
| ▲ | lemagedurage 4 hours ago | parent | prev | next [-] | | Maybe they added the comments to get a longer payload for the sake of the shirt's design. The comments can be more cute/awe inspiring for people who aren't as familiar with bash but like solving puzzles as well. | |
| ▲ | yborg 4 hours ago | parent | prev | next [-] | | The HN optimizing T-shirt compiler is the next stage here :D | |
| ▲ | saidnooneever 5 hours ago | parent | prev [-] | | im just sad it didnt render a qr code leading to malware :'). the different ways ppl look at obfuscated codes and scripts hah |
|
|