CS quotes found while browsing Notepad++'s code
131–140 of 186 posts
Re: CS quotes found while browsing Notepad++'s code
#132" Knock knock "Race condition\" "Who's there? - Brilliant!
In the same vein: A programmer had a problem, so he decided to use threads. Now 2 has. He problems
Re: CS quotes found while browsing Notepad++'s code
#133Translations for the few quotes that are in French: > Je mange donc je chie. — Don Ho "I eat therefore I shit." It's a pun on René Descartes' "Je pense donc je suis" (I think, therefore I am). > Mathématiquement, un cocu est un entier qui partage sa moitié avec un tiers. "Mathematically, a cuckold is a whole who shares his half with a third [party]." > Si un jour une chaise te dit que t'as un joli cul, tu xtrouveras…
> "Mathematically, a cuckold is a whole who shares his half with a third [party]."
In French "moitié", which means "half", is also slang for "spouse" (or girlfriend, significant other, etc... you get the idea). "tiers" indeed means "third" or "third party".
"entier" means "integer" in a mathematical sense, but more generally, it means "whole", and by extension, "uncastrated".
So "un entier qui partage sa moitié avec un tiers" can be loosely translated as "an (uncastrated) man who shares his girlfriend with a third party" in addition to the mathematical meaning of "an integer that shares its half with a third".
Re: CS quotes found while browsing Notepad++'s code
#134Isn´t it a very obvious thing to get the idea that the information of this site should not be hidden inside an ancient three-column design that resembles the antique NukeCMS (PHP)? Why is the most important coder website build in a way that hides information so hard? What purpose do the left and right column with empty space serve? Once I used to install some user css to get 100% width for the content, but I got tire…
Are you talking about news.ycombinator.com ? If you are, it's because this is not « the center of "modern development tools" ». It's a textboard and it serves that purpose well. And this is completely off topic.
https://i.imgur.com/HkgCq98.png
If it did not explicitly set a max width, then the code would be much more convenient to read: https://i.imgur.com/hxoHJHM.png
It's a critique of overarching design consistency trumping actual usability.
---
Though to be fair it is still against the guidelines:
> Please don't complain about tangential annoyances—e.g. article or website formats, name collisions, or back-button breakage. They're too common to be interesting.
Re: CS quotes found while browsing Notepad++'s code
#135In C++ it's harder to shoot yourself in the foot, but when you do, you blow off your whole leg. Bjarne Stroustrup Is it though? I feel it's as easy to shoot my foot as to modify few lines of C++ code and get 200+ lines of STD error messages.
Re: CS quotes found while browsing Notepad++'s code
#136Re: CS quotes found while browsing Notepad++'s code
#137Earlier quoted context omitted.
This only makes sense from a naively individualist perspective. If no one ever made a billion dollars, so to speak, there would be no money at all.
> If no one ever made a billion dollars, so to speak, there would be no money at all. Could you please elaborate?
Suppose we all lived on an island in a completely stable economy valued somehow at 1 trillion dollars.
Then imagine that a dozen or so explorers went to another island and started a completely independent economy that (after some centuries) gets also valued at 1 trillion dollars.
The latter billion dollar was created at the meager cost of a boat and the life work of some people.
This is a horrible analogy for anything that ever happened, but it is something that could possibly happen.
Re: CS quotes found while browsing Notepad++'s code
#138Earlier quoted context omitted.
The joke is indeed the false syllogism: https://en.wikipedia.org/wiki/Syllogism#Syllogistic_fallacie... Well deduced!
It's also the cartesian ontological argument for the existence of God. >The God is perfect. >If the God did not exist it wouldn't be perfect. >Therefore God must exist. https://en.wikipedia.org/wiki/Ontological_argument#Ren%C3%A9...
> A, B implies not A thus not B
The problem is that you have to prove both A and (B implies not A), without self referentially assuming it in the first place,
Re: CS quotes found while browsing Notepad++'s code
#139Earlier quoted context omitted.
I see this huge C++ file and I raise you a Java file that's so enormous github refuses to render it: https://github.com/DrKLO/Telegram/blob/master/TMessagesProj/...
> public class ChatActivity extends BaseFragment implements NotificationCenter.NotificationCenterDelegate, DialogsActivity.DialogsActivityDelegate, LocationActivity.LocationActivityDelegate, ChatAttachAlertDocumentLayout.DocumentSelectActivityDelegate, FragmentContextView.ChatActivityInterface, FloatingDebugProvider Someone call a priest
Re: CS quotes found while browsing Notepad++'s code
#140Earlier quoted context omitted.
I see this huge C++ file and I raise you a Java file that's so enormous github refuses to render it: https://github.com/DrKLO/Telegram/blob/master/TMessagesProj/...
There’s one of those for C++ too, say hello to the .NET garbage collector: https://github.com/dotnet/runtime/blob/main/src/coreclr/gc/g...
IIRC they cited performance reasons when compiling the compiler for the decision not to split the file up, but I could be wrong on this.