HN user

benjacksondev

87 karma
Posts22
Comments2
View on HN
www.economist.com 6mo ago

What self-help books tell us about ourselves

benjacksondev
2pts0
www.youtube.com 9mo ago

How neural networks work on a mathematical level. [video]

benjacksondev
1pts0
jontysinai.github.io 10mo ago

The Perceptron

benjacksondev
1pts0
jontysinai.github.io 10mo ago

The MCP Neuron

benjacksondev
1pts0
netflixtechblog.com 11mo ago

Linux Performance Analysis (2015)

benjacksondev
181pts40
domofutu.substack.com 1y ago

Evidence-Based Truth Claim Scale (0-100)

benjacksondev
2pts0
raw.githubusercontent.com 1y ago

Sequence Diagram: Verifying a TLS Certificate with its Issuer

benjacksondev
3pts0
www.emerald.com 1y ago

Appendix: Assumptions, Presumptions, Suppositions, and Presuppositions

benjacksondev
3pts0
owl.purdue.edu 1y ago

Using Logic in Writing

benjacksondev
66pts19
www.benjacksondev.co.uk 1y ago

How character decoding works – kinda

benjacksondev
1pts0
www.nku.edu 1y ago

Melian Dialogue

benjacksondev
3pts0
imagine.gsfc.nasa.gov 1y ago

The Different Types of Radiation

benjacksondev
2pts2
benjackson.blog 1y ago

Bash: Creating and Managing Child Processes

benjacksondev
1pts1
www.youtube.com 1y ago

How, Where and When Apache Kafka Writes Data (Page Cache Included) [video]

benjacksondev
1pts0
en.wikipedia.org 1y ago

J.R.R.Tolkien

benjacksondev
2pts0
news.ycombinator.com 1y ago

Kafka falls back to an advertised listener, is there a performance penalty?

benjacksondev
1pts0
pdos.csail.mit.edu 1y ago

MIT 6.1810: Operating System Engineering

benjacksondev
3pts0
www.sheffield.ac.uk 1y ago

Maths in Computer Science. What I wish I knew before starting university

benjacksondev
10pts2
benjackson.blog 1y ago

Bash: Creating and Managing Child Processes

benjacksondev
6pts2
www.quantamagazine.org 1y ago

Mathematical thinking isn't what you think it is

benjacksondev
3pts0
hackerone.com 1y ago

For some reason, the PS4/PS5 is vulnerable to [CVE-2006-4304]

benjacksondev
2pts0
hwgh.net 1y ago

We Got Here: A World History Timeline Generated by AI

benjacksondev
2pts0

Yeah, seems to be happening since OP posted. I played the game a few times (3 days in a row). It was fun. But, what I found was strange with the game was the most significant bit was on the right. So, 10000000 was 1 instead of 64; took a while to get used to.

Hey PopGreene, initially, `$child_pid` was set, but I refactored to use `$!` throughout instead. It must have been an oversight when I refactored `$child_pid` out, as the script still passes with the `$child_pid` not set. This is because running `wait` without an argument exits successfully. With `$child_pid` no longer set, it should be replaced with `$!`; otherwise, the script does not wait until the child process is terminated.

To clarify, the `wait` is there to avoid zombie processes, which is the script's intention; it should not be `$child_pid` but instead `$!`.

I've amended the post; thank you.