Category Archives: Programming

The first Unix

We can learn a lot from the past – you may even experience aha moments. Reading the source code of the first edition of Unix is such an experience. The simplicity of it all, combined with the knowledge that this … Continue reading

Posted in Programming | Comments Off on The first Unix

800×600 Video Output for Small Systems

The Mesa-Video is a low cost, low power, small open source hardware/software solution for providing graphics from embedded projects. It is, basically, a graphics card with an UART interface. The graphics card side of the solution can display text and … Continue reading

Posted in Electronics, FPGA, Open Hardware, Programming | Comments Off on 800×600 Video Output for Small Systems

NodeIT – stackable IoT

The NodeIT by Sweet Pea’s is an extendable, minimal IoT thing being launched on kickstarter right now. The project has already been funded, but is still open to additional backers. Based on the ESP8266, the core module, called ESP210, provides an … Continue reading

Posted in Electronics, IoT, Platforms, Programming | Comments Off on NodeIT – stackable IoT

Understanding Intel’s Itanium

Raymond Chen has written a multi part series on the Intel Itanium processor architecture. It really helps you understand the CPU architecture from a software development and performance optimization perspective. To quote Raymond: The Itanium may not have been much … Continue reading

Posted in Programming | Comments Off on Understanding Intel’s Itanium

An embeddable C interpreter

If you like scripting and embedded systems, but feel that Python, Lua, Javascript and the rest are too high level, I give you picoc. The picoc interpreter, created by Zik Saleeba, is an embeddable, minimal C interpreter environment that you can … Continue reading

Posted in Programming | Comments Off on An embeddable C interpreter

Python without an OS

Josh Triplett just did a presentation at PyCon demonstrating Python running in GRUB and EFI. He has a full interactive Python 2.7 environment, including the ability to peek and poke at memory, including the framebuffer. What excites me about this, … Continue reading

Posted in Programming, Retro | Comments Off on Python without an OS

Embrio

This is a Windows only tip, so I’ve not played much with it. However, Embrio does look like a perfect experimentation kit. Take an Arduino, connect your peripherals and draw the solution. It even lets you work in a live … Continue reading

Posted in Arduino, Programming | Comments Off on Embrio

Compiling for the C64

Michael Steil from pagetable just posted a nice article on the art of migrating software to newer systems. Basically, he has built the code of a project started back in 1995 today. The code base has gone through both the … Continue reading

Posted in Programming, Retro | Comments Off on Compiling for the C64

Open Source GPGPU

A GPGPU is a graphical processing unit, but with adaptations to make it possible to use it for general purpose computing as well. For those of you who followed Intel’s Larrabee project – that is a GPGPU. Intel’s project was … Continue reading

Posted in Electronics, FPGA, Programming | 2 Comments

Learn about Compiling

Matt Godbolt has created an intriguing webpage letting you enter C++ code and then watch the resulting assembly code. You can try it right here. The compilers supported are gcc, lcc and clang in various versions. Hardware target architectures are … Continue reading

Posted in Programming | Comments Off on Learn about Compiling