This question got voted down everywhere I discussed it on Hacker News, but somehow the submission itself got 11 points. Apparently, it is an offensive question to some silent, pro-censorship part of the population here. Today I'll ask it again, and I hope somebody will respond in a useful way:
QUESTION:
I write software for parallel processors at a hardware/software company you've heard of. I am located in California but many of my coworkers are located in China (roughly half the team).
We are directly affected by the American government's severe new CPU/GPU export restrictions.
It seems to me that America is preparing for a period of cold war, or worse.
It's time to start thinking about contributing to the American war effort by writing high-performance military computing systems.
For example, SIMD particle filters for hypersonic weapons, or low-latency convolutional neural networks for battlefield devices.
So, Hacker News: What company is the best place to do this work? What team?
If you can tolerate a .gov email address, there are high-performance computing, edge computing, and AI groups at DOE labs. My impression is that they're always starved for talent in these areas due to stiff competition from industry and lifestyle restrictions that come with a security clearance (being a US citizen, reduced international travel, no drugs other than alcohol and nicotine, your work may require on-site). Defense labs are probably similar.
Hilariously, the system has no logical OR, only AND and XOR and NOT, because "Inclusive-or is rarely needed."
This system was designed by Chuck Moore, father of Forth. Here is an entertaining video of him explaining the F18A stack machine and programming system:
This is such a simple machine. I am planning to make a tiny emulator for my site. One could probably write an emulator in 80 lines of Go (one goroutine for each of the 144 cores).
The code in Russ Cox's article does not race with the modern Go compiler.
But it's simple to fix that. Given arbitrary memory access within a Go process under Linux, can you see how to terminate the process and return 0 to the system?
Like calling os.Exit(0) when package os is unavailable.
"Use of the Software by any person to train, teach, prompt, populate, or otherwise further or facilitate any so-called generative artificial intelligence, generative algorithm, generative adversarial network, generative model, or similar or related activity (or to attempt to perform any of the foregoing acts or activity), whether in connection with any so-called machine learning, deep learning, neural network, or similar or related framework, system, or model or otherwise, is strictly prohibited and beyond the limited scope of this license, absent prior payment to licensor of the licensing fee of the amount of ____"
That clause appears to violate Item #6 of the OSI's open source definition:
> The license must not restrict anyone from making use of the program in a specific field of endeavor. For example, it may not restrict the program from being used in a business, or from being used for genetic research.
It also seems to violate freedom 0 of the FSF's four essential freedoms that define free software:
> The freedom to run the program as you wish, for any purpose (freedom 0).
I'm not sure this can be used by open source projects if they want to remain open source projects.
Thank you. I see the Humans Only Clause is much more explicit about what is prohibited than the No-AI 3-Clause License, and furthermore directly states a licensing fee.
That wouldn't license code. That's just license text that happens to be in a string. Not sure why this bugfix site is being used instead of just pastebin with text.
I think it is more likely you are just baldly shilling your website. Which is a shame, because I think the site isn't a bad idea - I like the minimal interface and the thought you've put into hints for many not-quite-right solutions. I've seen quality links you've posted in the past with more interesting, subtle, and relevant bugs - but this isn't one of them.
I have a different Hacker News account for every one of my projects. It happens that the No-AI 3-Clause License became part of the BUGFIX-66 project. I'm sorry that upsets you, but I'm sure you'll get over it. Happy Thanksgiving.
Being able to read and understand x86-64 assembly (or PTX/SASS for an Nvidia GPU) is much more important than being able to write it. In practice, even when you're writing assembly, you're looking at reference assembly generated by a compiler from C code you wrote.
Similarly, the reality is that as a professional programmer you spend no time doing work like leetcode.
Instead, you spend a lot of time understanding and slightly modifying (fixing or enhancing/extending) code.
With the rise of language model code completion systems (e.g., Microsoft Copilot) even more time will be spent inspecting and understanding code to find problems.
With these facts in mind, I have been building a new form of leetcode:
Most puzzles are interesting algorithms that you will learn useful techniques from, so it's never a waste of time to think about them. And even though the bugs are all quite trivial, I can see it's very challenging for many people.
It's about half-way ready to launch, needing 30 more puzzles. I am working my way through Knuth's The Art of Programming Volume 4B and today I'll see if Algorithm X (Dancing Links Exact Cover Backtracking) can be made to fit for Bugs 38 and 39 (or whether it's too complicated).
There are also interesting computational possibilities, like the broadword matrix multiplication algorithm that Knuth presents in The Art of Computer Programming Volume 4A:
https://news.ycombinator.com/item?id=33215740
This question got voted down everywhere I discussed it on Hacker News, but somehow the submission itself got 11 points. Apparently, it is an offensive question to some silent, pro-censorship part of the population here. Today I'll ask it again, and I hope somebody will respond in a useful way:
QUESTION:
I write software for parallel processors at a hardware/software company you've heard of. I am located in California but many of my coworkers are located in China (roughly half the team).
We are directly affected by the American government's severe new CPU/GPU export restrictions.
It seems to me that America is preparing for a period of cold war, or worse.
It's time to start thinking about contributing to the American war effort by writing high-performance military computing systems.
For example, SIMD particle filters for hypersonic weapons, or low-latency convolutional neural networks for battlefield devices.
So, Hacker News: What company is the best place to do this work? What team?
Does anyone here already work in this field?