HackerTrans
TopNewTrendsCommentsPastAskShowJobs

benjacksondev

no profile record

Submissions

What self-help books tell us about ourselves

economist.com
2 points·by benjacksondev·6개월 전·0 comments

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

youtube.com
1 points·by benjacksondev·9개월 전·0 comments

The Perceptron

jontysinai.github.io
1 points·by benjacksondev·10개월 전·0 comments

The MCP Neuron

jontysinai.github.io
1 points·by benjacksondev·10개월 전·0 comments

Linux Performance Analysis (2015)

netflixtechblog.com
181 points·by benjacksondev·12개월 전·40 comments

[untitled]

1 points·by benjacksondev·12개월 전·0 comments

Evidence-Based Truth Claim Scale (0-100)

domofutu.substack.com
2 points·by benjacksondev·12개월 전·0 comments

Sequence Diagram: Verifying a TLS Certificate with its Issuer

raw.githubusercontent.com
3 points·by benjacksondev·작년·0 comments

Appendix: Assumptions, Presumptions, Suppositions, and Presuppositions

emerald.com
3 points·by benjacksondev·작년·0 comments

Using Logic in Writing

owl.purdue.edu
66 points·by benjacksondev·작년·19 comments

How character decoding works – kinda

benjacksondev.co.uk
1 points·by benjacksondev·작년·0 comments

[untitled]

1 points·by benjacksondev·작년·0 comments

[untitled]

1 points·by benjacksondev·작년·0 comments

Melian Dialogue

nku.edu
3 points·by benjacksondev·2년 전·0 comments

The Different Types of Radiation

imagine.gsfc.nasa.gov
2 points·by benjacksondev·2년 전·2 comments

Bash: Creating and Managing Child Processes

benjackson.blog
1 points·by benjacksondev·2년 전·1 comments

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

youtube.com
1 points·by benjacksondev·2년 전·0 comments

J.R.R.Tolkien

en.wikipedia.org
2 points·by benjacksondev·2년 전·0 comments

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

1 points·by benjacksondev·2년 전·0 comments

MIT 6.1810: Operating System Engineering

pdos.csail.mit.edu
3 points·by benjacksondev·2년 전·0 comments

comments

benjacksondev
·작년·discuss
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.
benjacksondev
·2년 전·discuss
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.