Viewing profile — screcth
screcth
HN member- Joined
- Fri, Mar 24, 2023, 5:33 PM UTC
- HN karma
- 97
- Public activity
- 49 items
- HN profile
- View on Hacker News ↗
About screcth
No profile information was provided.
Recent public activity
-
comment
Comment #44072568
Many companies use RHEL Workstation to run proprietary GUI applications. The application usually runs on RHEL Servers and uses X11 forwarding to show the GUI on the Workstation. Ru…
-
comment
Comment #43911034
A very important part of people trusting you is them being able to understand what you say without making extra efforts compared to a native speaker. An easy way to improve intonat…
-
comment
Comment #43797784
If we consider writing out of bounds to be legal, we make it impossible to reason about the behavior of programs.
-
comment
Comment #43149758
Can you use the remaining SIMD lanes for processing independent data streams? Think encoding or decoding non-overlapping parts of a video.
-
comment
Comment #42633351
[dead]
-
comment
Comment #42579838
It implements tmux control mode. It's very useful when working with a remote server. No other terminal implements it AFAIK.
-
comment
Comment #42574578
The security team cares about minimizing risks to the company and to their own careers. Deviating from what everybody else is doing makes it so that the burden of proving that your…
-
comment
Comment #42504696
You can still have use-after-free errors when you use array indices. This can happen if you implement a way to "free" elements stored in the vector. "free" should be interpreted in…
-
comment
Comment #42371157
Why does an optimizing compiler introduce nondeterminism? In my mind an optimizing compiler is a pure function that takes source code and produces an object file.
-
comment
Comment #42257722
The problem here is that Emacs is the Elisp interpreter. They are the same thing. Emacs would have to start another process for Elisp analysis and code completion. That would be a …
-
comment
Comment #42117585
It biases results towards people that "studied how to do the test" rather than studying the material that is evaluated.
-
comment
Comment #42117535
English exams for ESL students are a great example. Getting good grades in those exams requires that you know the criteria for evaluating each part of the exam and how to tailor yo…
-
comment
Comment #42002158
I understood that you were making an analogy between installing a piece of hardware and its associated kernel driver with installing a game and its associated kernel anticheat. Whe…
-
comment
Comment #42001640
User space is not the same as kernel space. User space applications can't access hardware or physical memory. They can't bypass permissions enforced by the OS. None of that applies…
-
comment
Comment #41951509
Can't the tunneling software detect when the upper TCP is retransmitting segments and drop them? That would give the lower TCP enough time to transmit the original segment.
-
comment
Comment #41902916
Well, you could pick only 10% of the class for one on ones. Pick that 10% randomly or based on your intuition on the authenticity of their work. That threat may be enough to dissua…
-
comment
Comment #41749671
In my case, I work with proprietary EDA tools. Vendors love messing with LD_LIBRARY_PATH. Chaos ensues when they override a system library or two versions require mutually incompat…
-
comment
Comment #41636192
I don't think that Brazil is on its way to a humanitarian catastrophe. What makes you say that?
-
comment
Comment #41633864
Do you think that Pakistanis don't know already that their country is poorly run and that their politicians are corrupt and incompetent? It's pretty condescending to expect a lectu…
-
comment
Comment #41566682
FAANG pays very well, and money can be exchanged for goods and services. I know that having benefits like a free bike feels good, but the total compensation you are getting is much…
-
comment
Comment #41546859
When Starbucks sells a cup of coffee who makes more money? Starbucks or the coffee farmer? This is the same thing. Businesses that are closer to the consumer make more money than t…
-
comment
Comment #41541468
[dead]
-
comment
Comment #41541445
[dead]
-
comment
Comment #41526087
Life as a rich person in the capital city of an Empire is great. I doubt that people in conquered territories felt the same way about the Empire.
-
comment
Comment #41329564
You could store the current date and time in a global variable and have the producers just read it atomically. The consumer thread would then update it periodically. Timestamps wil…