Ben Bernanke Updated +Created
Blinkenlights Updated +Created
Discord email notifications Updated +Created
Discord is useless if you want to participate in more than one large group because of this. It is impossible to get email notification for selected threads you care about.
ELF Hello World Tutorial / Introduction Updated +Created
ELF is the dominating file format for Linux. It competes with Mach-O for OS X and PE for Windows.
ELF supersedes .coff, which supersedes a.out.
Frobenius theorem (real division algebras) Updated +Created
Key exchange Updated +Created
Nitrogen-vacancy center Updated +Created
N-V center quantum computer Updated +Created
ONNX Updated +Created
The most important thing this project provides appears to be the .onnx file format, which represents ANN models, pre-trained or not.
Deep learning frameworks can then output such .onnx files for interchangeability and serialization.
Some examples:
The cool thing is that ONNX can then run inference in an uniform manner on a variety of devices without installing the deep learning framework used for. It's a bit like having a kind of portable executable. Neat.
Organization developing electron on helium quantum computer Updated +Created
Positron Updated +Created
Teleprinter Updated +Created
Way, way before instant messaging, there was... teletype!
Video 1.
Using a 1930 Teletype as a Linux Terminal by CuriousMarc (2020)
Source.
Top-level domain Updated +Created
Yet another Updated +Created
Binet (École Polytechnique) Updated +Created
TODO is there a publicly visible list?
ELF Hello World Tutorial / Generate the example Updated +Created
Let's break down a minimal runnable Linux x86-64 example:
hello_world.asm
section .data
    hello_world db "Hello world!", 10
    hello_world_len  equ $ - hello_world
section .text
    global _start
    _start:
        mov rax, 1
        mov rdi, 1
        mov rsi, hello_world
        mov rdx, hello_world_len
        syscall
        mov rax, 60
        mov rdi, 0
        syscall
Compiled with:
nasm -w+all -f elf64 -o 'hello_world.o' 'hello_world.asm'
ld -o 'hello_world.out' 'hello_world.o'
TODO: use a minimal linker script with -T to be more precise and minimal.
Versions:
We don't use a C program as that would complicate the analysis, that will be level 2 :-)

There are unlisted articles, also show them or only show them.