Tag Archive for 'simple'

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'

Web Development with The Gimp and Blueprint CSS – Part 2

This tutorial starts where the other one left off and covers chopping up and saving of the image we created. It’s relatively straight forward and easy to follow.

You should open the XCF file you have from last time, or you can download one from here. So that you have the following on your screen:

screenshot-templ_blu-prntxcf-20-rgb-4-layers-950x850-e28093-gimp

Continue reading ‘Web Development with The Gimp and Blueprint CSS – Part 2′

Simple Blackjack

A very simple and text-only version of blackjack. Written in python. It seems to work ok as is. Bug fixes and code improvements to follow in next version.

Just thought I’d mention it, it hasn’t been updated recently either.

Simple Blackjack project on Sourceforge

It’s nothing special