L1VM data version 1.0.3 - open source

NEU: Ich habe entschlossen die Datenbank als open source zu veröffentlichen. Das Repo ist auf GitHub: L1VM-data GitHub.

Hier ist nochmal das alte Posting: Die Datenbank läuft als Server der über TCP/IP Sockets Kommandos bekommt und antwortet.

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



NEW: I decided to release the data base as an open source version on GitHub: L1VM-data GitHub.

Here is the old posting again: 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!