Tag Archives: language

Announcing BD-incollo Project

As I promised, I would like to announce the start of a new BD-thing! I’m currently learning Django because of job needing and because of fun. The best way to learn a new language (even if a framework) is to apply it for solving a problem. That’s why I decided to start BD-incollo! BD-incollo will

How to install OpenGEU on Macbook

Introduction This guide will help you to install OpenGEU and every other Ubuntu based linux distribution on your Macbook (either “normal” or pro). Even Ubuntu will work with this how-to. The tutorial is aimed on how to succesfully partition the hard disk and to correctly boot the distribution. For a better post-install configuration I suggest

BD-shell 1.0.0 RC1 is out!

UPDATE: due to a very serious bug, the rc1 has been retired and replaced by rc2 UPDATE: the release has been delayed for two days I’ve just released the release candidate for the final version of the Unix shell written in C language. Now with a very cleaner code and a lot of bugs fixed!

gOS 3 Gadgets (Beta) Review

Time for a review. Thanks to the always useful DistroWatch.com service, I discovered a new Gnu/Linux distribution, called gOS. gOS stands for Good Os, born in 2007 in California. The version I’m reviewing is the so-called “gOS 3 ‘Gadgets’”, their third release. gOS 3 Gadgets BETA is based on Ubuntu 8.04.1, and the final release

A simple, tiny, Unix Shell written in C language, opensource

BD-shell is a project I started about a month ago, which aims to implement a tiny, simple, clean unix shell written in C language. It’s an academic project. The Operating Systems Course at my University requires this project as part of the assesment. I decided to publish the source code and to release it under

A Generic Quicksort Implementation in C

As assignment for Data Structures and Algorithms course, we had to work with a modified version of the quicksort algorithm. It came obvious that for modifying a qsort you need to implement it It is difficult to find a clear quicksort algorithm implemented, so I wrote it. Here is the generic C implementation of the