Tag Archive for 'code'

A premature UberLog announcement

Uberlog is a project by Felix Farquharson and Sam Cater, it’s a personal journal/logging application. And is not fully complete. It has the basic functionality and it works without a GUIĀ  (see the trunk version). A GUI is nearing completion and should be done after a good couple of hours work (see lp:uberlog/gui).

This project is primarily to make sure Sam and me are set up for IRME (a new take on IRC, that will hopefully make it more accessable by using an Instant Messenger style frontend) which is a project we are planning to start after this is finished.

Currently all code has to be checked out from the bzr repository.

Web Development with The Gimp and Blueprint CSS – Part 3

First things first, buckle your seatbelts, this is going to be a long one. It concludes the three part tutorial (Part 1, Part 2). We’re going to write the code to make the design happen, this includes putting in some dummy text, and at the end, we will have a working design, that could be converted into a WordPress theme. (future tutorial?).

Anyway, first we are going to fill out the index.html file with some standard HTML and the code needed to call blueprint into action, (there will be a download later on in the post if you can’t be bothered to fill out the file yourself):

<html>
<head>
<title>Our Design</title>

<link rel="stylesheet" href="blueprint/screen.css" type="text/css" media="screen, projection">
<link rel="stylesheet" href="blueprint/print.css" type="text/css" media="print">
<!--[if IE]><link rel="stylesheet" href="blueprint/ie.css" type="text/css" media="screen, projection"><![endif]-->

<!-- this needs to be after the framework -->
<link rel="stylesheet" href="style.css" type="text/css" media="screen" />

</head>
<body>
<div class="container">

</div>
</body>
</html>
 Continue reading 'Web Development with The Gimp and Blueprint CSS – Part 3'

Snippets library

It isn’t very full at the moment. But i have written it over the weekend in any spare time i have had using Django and I aim to put all the peices of code in there that don’t really deserve their own sourceforge/launchpad project. The URL is http://code.dontclickonme.com/. I will update the links in this blog to point to the Snippets library rather than the plain text files that they usually are sometime soon.

I think it really shows what you can do with Django, and how quickly you can make somthing functional using it.

If you are at all intrested in the code for the Library itself. Leave a comment.