Comment by stavros
5 years ago
> αcτµαlly pδrταblε εxεcµταblε
As a Greek, if you do this, I hate you. Why the hell do you have to make me read "actmally pdrtable execmtable"? At least this is one of the less offensive cases.
EDIT: Solidarity to our Cyrillic friends!
Author here. I wanted to honor Greece for the amazing cultural impact they've had, similar to how mathematics honors Greece. We got a lot of comments like this in the last thread. What dang said about it was really smart: https://news.ycombinator.com/item?id=24264514
Ah, I don't want to make a fuss about it (my comment was tongue-in-cheek), it's really not a big deal, but it is annoying to spend 2-3 seconds trying to figure out if you're having a stroke, and then some more trying to suss out what the sentence is actually trying to say.
If you want to honor Greece, use the letters as they're meant to be used! "Acτuaλλy πoρτabλe εxecuταbλe" would be much better (though I've intentionally tried to give English readers a stroke with this one :)!
The entire project is built on not using things the way they are meant to be used, though. The name is kind of doing the exact same thing the code is.
2 replies →
It's actually not smart at all. Replacing the letters in the Roman alphabet with Greek letters based on superficial resemblance is not any different from replacing the "R" with "Я" when writing about anything Russian-related (you see it stupidly used in book covers, t-shirts, etc).
How does this do anything to honor the cultural legacy of Greece? Perhaps we could honor the legacy of 19th century mathematics by using Fraktur characters when they resemble Latin ones?
When people who can read Greek are telling you it's bad taste maybe take their word for it! Not dang.
What you're really saying is that the Greek alphabet (and by extension its language community) is so insignificant compared to Latin that the cost of potential misrecognition is so low that it can be disregarded. This is chauvinism, not "honoring Greek mathematics"!
Word. I'm still trying to find out who Doidld Tyatsmr is and why is he so hated in the US.
Aren't the Greek symbols used in math void of implicit meaning? You're taking a meaningful English sentence and replacing its letters with Greek letters while making it extremely difficult for people with disability on screen readers, those two things are not the same.
I have to admit, every previous time I saw this linked I didn't bother clicking through, because from the title I thought it was a post mocking the concept of portable executables.
I'm guessing this the unfortunate consequence of the pattern "actually, " becoming a pejorative meme in the past year or so.
1 reply →
I appreciate the good intentions, but confusing Greek readers doesn't seem to me like a good way to honor the cultural impact of Greece.
I know this is a loaded question, but are there any resources you can point to in learning the linux syscall stuff, or perhaps writing a C compiler from scratch? I thought I had a fairly good grasp of this stuff but after looking through cosmopolitan code, I realized Im not even close.
Rui is writing a book for the chibicc compiler in the cosmo codebase. I should probably write a book on system interfaces since there's no school for it. I had to go straight to the primary materials, i.e. the source to pretty much every existing kernel and libc along with the historical ones in order to understand the origin of influence. That's what helped me have a razor sharp focus on the commonalities which made this project possible.
So I'd say that the SVR4 source code would be a good place for you to start. It's like ambrosia and once you've read it you can always tell by reading modern code which developers have and haven't seen it. There's also the Lions' Commentary on Unix. I highly recommend Richard W. Stevens. The last book on the required reading list is BOFH.
> learning the linux syscall stuff
I've been studying this for a while. Turns out Linux has an amazing interface. It's stable and language-agnostic. All you need to do is put the values in specific registers and execute a special instruction. The result comes back in one of those same registers.
The high level documentation is here:
https://man7.org/linux/man-pages/man2/syscall.2.html
https://man7.org/linux/man-pages/man2/syscalls.2.html
https://www.kernel.org/doc/Documentation/ABI/stable/syscalls
https://www.kernel.org/doc/Documentation/ABI/stable/vdso
On Windows there is a similar interface but it is not stable. The system call numbers can change. Developers are supposed to use the good old Microsoft DLLs in order to get anything done. Just like how everyone uses libc on other systems.
Linux is different. The system call binary interface is the Linux interface. So it's actually possible to trash all of GNU and rewrite the entire Linux user space in Rust or Lisp or whatever. It doesn't have to be written in C. It doesn't even have to be POSIX compliant. Could be GUI-focused!
All you need to make any x86_64 Linux system call is this code:
This is all you need to do anything. You can perform I/O. You can allocate memory. You can obtain your terminal's dimensions. You can perform ioctl's to your laptop's camera. You could make a new programming language today and all it really needs to be complete is this single function. What if instead of having this function the compiler could simply emit code that conform to this binary interface? The language could have a system_call keyword that generates Linux system call code!
Once I realized this I tried to turn it into a library called liblinux... I stopped working on it when I found out the kernel already has an awesome single file header you can include that lets you build freestanding Linux executables for a ton of architectures. They use it on the kernel to build their own tools!
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/lin...
It even includes process entry point code! Linux copies the argument and environment vectors to the stack before entering the executable. The process start up code obtains those pointers and passes them to the main function. It also ensures the exit system call is called.
The process entry point is usually called _start because that's what linkers look for by default. In reality the ELF header has a pointer to the program's entry point, the actual symbol doesn't matter. You can tell the linker to set it to any other address or symbol. Also note that it's an entry point, not a function. There is no return address. Allowing that code to terminate results in a segmentation violation. Hence the need to ensure exit is called before that happens.
The only feature that seems to be missing is support for the table of auxiliary values:
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/lin...
The auxiliary values are placed on the stack immediately after the environment vector. So all you need to do to find this pointer is loop through it until it goes out of bounds. I wrote this code and it works:
https://github.com/matheusmoreira/liblinux/blob/master/start...
You can just loop over the pointer to the structure until you find one with type equal to AT_NULL. Example here:
https://github.com/matheusmoreira/liblinux/blob/master/examp...
5 replies →
> The quality of this post is so high that it doesn't feel right to override any aspect of what the author created, including quirks like the title.
I agree with dang's feelings/thoughts about the issue.
Perhaps a solution would be to add the "normal" meaning between parenthesis, after the one in greek alphabet?
By the way, Justine: great work. Besides the obvious HN recognition, I wanted to tell you explicitly as well.
What are you going to work on in the near future? Curious to hear about it. If you don't want to post in public, $my_hn_username at gmail
What dang said about it was not smart.
> it's good for readers to have to work a little
Unless they're using assistive technologies. In that case it's a nightmare. Don't make your users work.
> it's not hard for any HN reader to do the bit of work to figure it out
Unless they're using assistive technologies. Or just want to read it without work.
Or, say searching for it. This post comes up. The one you linked to doesn't.
https://hn.algolia.com/?dateRange=all&page=0&prefix=false&qu...
Respect to you for wanting to honor Greece. I think using the letters* correctly would honor them more. (thanks for the correction)
> I think using Cyrillic correctly would honor them more.
(Greece doesn't use Cyrillic but I agree with you otherwise)
Yes. My screen reader, at least Voiceover on my phone, had a stroke reading that. I had to navigate letter by letter and guess what it meant. But it's also quite common so I'm used to doing that regardless.
As a Russian speaker, I LOVE these things. Both ways (Russian letters abused to spell English words and vice versa.) In fact I miss old phones with just English keyboards where abuse to spell Russian words (eg CCCP) was an art form, for a brief period.
Especially since if you want to port the title to Greek lettering, you have upsilon and omicron for u and o:
αcτυαlly pοrταblε εxεcυταblε
Omicron looks exactly the same as the English o (it's not visually distinguishable in most typefaces) so it doesn't matter much, but upsilon is an "ee" sound usually, not an "oo" like in "actually" and "executable", so it wouldnt' work exactly. It would read "actially execeetable".
EDIT: For completeness, the full transliteration (or as close to it) would be "άξουαλι πόρταμπολ εξεκιούταμπολ". The extra "o" in "portabol" and "execiutabol" is actually a schwa, I think, so it can be omitted.
Upsilon is admittedly an "i" sound in Modern Greek, but in Attic Greek (which is what I studied, sorry) it did have the "oo" sound.
Edited: I missed the pi and rho completely though, my bad
1 reply →
Deep breaths. Deep, slow breaths. You're going to be just fine.
Female white privilege
Because it makes you look like you know what you're doing, not too different than obfuscating javascript for the sake of security, which does kind of work, at least on the lowest common denominator type of attacks, and this does kind of works too by having people think you're more of a genius than previously thought because you can turn boring English letters into something exotic which appeals to the ignorance of the masses [0].
[0] https://en.wikipedia.org/wiki/Argument_from_ignorance
you might be overthinking this