LGTM. Though do people really code with ligatures turned on?
Edit: Ok so there are some big advocates of ligatures, I’m going to have to give them a second chance. I’ll try for a week, and either way that Fira Code font looks great.
I was skeptical of ligatures at first, too, it took me awhile to warm up to it. But yeah, love me some Fira Code now.
That’s neat, so TIL ligature in code do actually have a strong following
I always do, I love having ligatures
Having ≠ looks much nicer then !=
Ah! You see, in my mind != looks nicer than ≠. Haha
That’s why those exist
Yes, I use Fira Code myself
When you realize 90% of programming is reading, then you’ll end up embarking on a journey to make code more readable. At some point you fall in love with ligatures.
Ligatures make code way easier to read, especially if you’re using lambdas or a language with different comparison operators than “normal”.
Long live Fixedsys! My favourite font since before time.
I found a version with ligatures. Love the thick equally spaced characters. Makes stuff so nice to read.
Yes, with Iosevka font
python -c 'print((61966753*385408813*916167677<<2).to_bytes(11).decode())'how?
$ python >>> b"Hello World".hex() '48656c6c6f20576f726c64' >>> 0x48656c6c6f20576f726c64 87521618088882533792115812 $ factor 87521618088882533792115812 87521618088882533792115812: 2 2 61966753 385408813 916167677Umm… someone explain this code please?
What is that weird >>=== symbol? Looks like a cross breed between C and JavaScript here.
It’s a the right shift assignment operator so
x >>= 4right shifts x by 4 and assigns the result back to x. The code editor is displaying single double wide symbol (ligature) instead of the three character long operator>=, I discovered today these are in fact well loved by some coders.Yeah… I love them. Makes my != look like ≠
If someone likes it but doesn’t know where to find it, FiraCode does linea tires really good IMO
I totally thought because of how long the equals looked, it was multiple equals characters, not just >>= lol. That’s what got me confused. Don’t think these are things I’d personally use but each to their own preferences right xD
As long as I don’t have to maintain it.
(Who tf downvoted this? The “legacy code” lobby?)
The best Hello World I saw used a random library. Because there’s no true random without hardware, the author figured out the correct seed to write Hello World with “random” characters. I’ve used that to show junior devs that random in programming doesn’t mean truly random.











