Kategorie: Informatik

Everything Ubus

Computer scientists seem to reinvent the wheel quite often. For the more cynical observers every new Remote-Procedure-Call implementation looks quite like CORBA or Sun-RPC, but under a different name, different interfaces and - more often than not - some restricted features or inefficiencies....

Learning COBOL with Examples - Part 2: FILE I/O

The previous post in this series was about learning the basics of the COBOL programming language. Now I will cover a very important and essential part of COBOL - File Input / Output (I/O). I find it really interesting, as I haven't seen any other language which makes it that easy to read...

Porting Micropython to bare-metal Raspberry Pi

In the last months I ported Micropython to the Raspberry Pi. Micropython is an embedded Python interpreter, which already runs on ARM Cortex-M processors. I had to understand the build process, alter it as to target the Raspberry Pi processor and fix some annoying bugs and glitches. The...

KiF 45,5 in Duisburg - Meine Eindrücke

Die Konferenz der Informatik Fachschaften (kurz KiF) findet halbjährlich statt und wird jeweils von einer anderen Informatik-Fachschaft im Bundesgebiet ausgerichtet. Die KiF 45,5 in Duisburg war meine erste KiF, deshalb hat der Text keinen Anspruch auf Richtigkeit und Vollständigkeit. Sollte...

Adding a module to Micropython

Using Micropython on your own hardware, like I do on Raspberry Pi, is quite a challenge. First of all you have to port Micropython. But when it runs on your platform you will probably need some module for Python, to extent the language itself by some functionalities only accessible in C or...