L1VM data version 1.0.1

Ich entwickle gerade eine Datenbank für die L1VM. Hier sind die Binaries für Linux und Windows 10 WSL Debian:

L1VM-data

Die Datenbank läuft als Server der über TCP/IP Sockets Kommandos bekommt und antwortet. Der Port ist 2020. Mehr steht im README im Archiv.

Neu: 3n1-server und 3n1-client Demos. Das 3n1-Problem: starte mit einer ganzen Zahl: wenn sie gerade ist, teile sie durch zwei. Wenn sie ungerade ist dann multipliziere mit drei und addiere eins. Wiederhole diese Schritte mit dem Ergebnis bis eins erreicht wird!

Der Client holt die Zahl from Server und führt die Berechnung aus. Danach wird das Ergebnis auf den Server geladen.

Mit “nc” kann man sich mit dem Server verbinden:

$ nc localhost 2020
GET INT64
3n1-100
1



I’m developing a small database for L1VM. There are binaries for Linux and Windows 10 WSL. The database runs as a server and communicates over TCP/IP sockets. The port is set to 2020. There is more info in the README in the archive.

Update V1.0: now the port and the number of elements can be set:

$ l1vm-data -p 2000 -s 1000000

This sets the port to “2000” and the data elements to : “1000000”.

New 3n1-server and 3n1-client demos. The 3n1-problem: start with a real number: if it is even then divide by two. If it is odd then multiply by three and add one. Repeat this steps with every result until one is reached!

The client gets the number from the server and calculates the result. Then the result is copied to the server.

With “nc” you can connect to the server:

$ nc localhost 2020
GET INT64
3n1-100
1

Have some fun!