-
Using verbatim strings for SQL queries can make your code much more readable. For example, which one of the following queries is easier to read? This one? or this one? The SQL engine doesn’t care for the whitespace you introduce…
-
Java Swing Game Programming – Pacman Clone
This project is a Pacman clone written in Java and using Swing and Java2D for the UI. I began this project in autumn 2003 after working for several years as a software engineer and having never written a game. v…
-
Using ctypes to call additional win32 functions
Introduction The Windows extensions for Python offer a lot of the Win32 api to the Python developer but there will always be cases where a certain functions will not be available, as the Win32 api is very large. But in…
-
Hello World in Python using Win32
Introduction Python is a cool scripting language available on many platforms and has an extensive standard library. Additionally, under Windows there are extensions available that allow Python to interface with the Win32 API or to call COM objects. You can…