Raylib Scorched Tanks, pixel based.

A quick scorched tanks demo with terrain tracking based on lemmings, using pixel operations as opposed to GL stuff to apply masks etc as an example, I’ll post one using GL and render targets next Source Here Controls Left & Right cursor keys to move. Aim and fire with the mouse

Copying Data Between/Within Tables in Sql

Simple method of copying data between tables or within the same table in SQL. The following can be used to copy data within its own table, altering fields as required: INSERT INTO Table1 ( [Some_Id], ,[Position] ,[Name] ,[Description] ,[LastAction] ) SELECT 954 as Some_Id, ,[Position] ,[Name] ,[Description] ,[LastAction] FROM Table1 where Some_Id = 52 The Copying Data Between/Within Tables in Sql

Dungeon Master Javascript

Could this be the height of my retro 80’s/90’s gaming obsession I hear you ask? Well quite possibly..probably not though. Dungeon Master Javascript is my version of the 80’s classic Dungeon Master By FTL Games. The entire ‘game’ is written in javascript and CSS, it should be CSS2 compliant but I have used a few Dungeon Master Javascript