by codingclaws on 9/7/24, 7:28 PM with 8 comments
by crackalamoo on 9/8/24, 6:16 AM
Similar for libraries. There are some libraries like NumPy that I know most common functions off the top of my head, but I still need to look things up frequently. Then there are libraries like Hugging Face where I have to check the documentation every time.
by muzani on 9/8/24, 3:42 PM
Like one of the less common hacks I did was to use YAML over JSON for communicating, because the way it tokenizes data gives it a few extra IQ points when processing YAML. If there's a mistake, I can quickly identify which part of the pipeline it's failing on.
by austin-cheney on 9/7/24, 11:14 PM
* People who write high performance software spend an absurd amount of time measuring things and possibly writing their own tools to provide deeper insights. Other people that talk about performance are hallucinating.
* There are developers that think in terms of other people. Those people put more effort into documentation, content, and architecture. It’s all about what they say. There are developers that think in terms of themselves. They focus on what they believe is easy and stylish. It’s all about what they are willing to do, how to do it, and how it looks.
Everything developers know off the top of their heads come from stuff like those three bullet points and the hours they spend practicing it.
by mikewarot on 9/9/24, 12:57 PM
debug
a 100
mov ah,9
mov dx,120
int 21
mov ax,4c00
int 21
e 120 "Hello, World!" 0d 0a 24
r cx
80
n hello.com
w
q
hello
You can try it out here[1]. (Hit F3 twice to exit setup first)[1] https://www.pcjs.org/software/pcx86/sys/dos/microsoft/6.22/
by qup on 9/7/24, 7:49 PM
by snailb on 9/8/24, 12:47 PM
I kid, I kid :)
by solardev on 9/8/24, 3:32 PM