RSS
 

Archive for July, 2006

HTML Expert – Canvas Element

15 Jul

This may be a stretch, but imagine Doom XII over the web. Enter canvascape – 3D walker – a wolftenstein demo using the html element canvas.

Originally introduced by the folks over at Apple, the canvas element is an extension to the HTML standard that allows for dynamic rendering of scriptable bitmap images.

According to wikipedia’s canvas entry, it’s already fully supported in the latest browsers.

Checkout the other demos of the canvas element:

  1. Canvas Breakout
  2. Canvas Pong
VN:F [1.9.3_1094]
Rating: 2.0/10 (1 vote cast)
VN:F [1.9.3_1094]
Rating: 0 (from 0 votes)
Retweet
 
Comments Off

Posted in Personal

 

Database Schema Examples

14 Jul

Every wonder what a database schema looks like, before you have to start re-inventing the wheel? The Library of Free Data Models has a decent sized repository of sample database schemas, in UML format.

databaseanswers.org is an excellent resource for learning database modeling.

VN:F [1.9.3_1094]
Rating: 7.6/10 (9 votes cast)
VN:F [1.9.3_1094]
Rating: +1 (from 3 votes)
Retweet
 
Comments Off

Posted in Development

 

Unix Cheatsheet

13 Jul

Thanks to freeengineer.org, their guide to learning UNIX in 10 minutes is available which covers some of the basic unix commands to help you move around the system.

Those who have used DOS back in the day, some of the same basic commands exist:

  • cp file1 file2 copy a file
  • mv file1 renamed file1 move or rename a file
  • rm file1 [file2 ...] remove or delete a file
  • rm -r dir1 [dir2...] recursivly remove a directory and its contents BE CAREFUL!
  • mkdir dir1 [dir2...] make a directory
  • rmdir dir1 [dir2...] remove an empty directory
  • export CASROOT=/usr/local/CAS3.0 Defines the variable CASROOT with the value /usr/local/CAS3.0.
VN:F [1.9.3_1094]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.3_1094]
Rating: 0 (from 0 votes)
Retweet
 
Comments Off

Posted in Open Source

 

Open Source Job Listings

12 Jul

In my recent decision to leave my current job in search of a more LAMP-friendly environment, I came across opensourcexperts.com.

Some of the postings in categories are over a year old, I’m hoping to revive it a bit by writing about it here.

The job searches are available as RSS feeds as well as via the site.

VN:F [1.9.3_1094]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.3_1094]
Rating: 0 (from 0 votes)
Retweet
 
Comments Off

Posted in Open Source

 

Blog Readability – Tracking Eye Movements

11 Jul

Jakob Nielsen has an interesting article about the F-Shaped Pattern that occurs when people scan through a web page.

Placement of ads and your most valuable links can be optimized given the “F-shape” pattern, and sometimes an upside down “L-shape” or “E-shape” pattern.

It makes you wonder if using a right-hand navigation bar is better or worse…as you’re going against the learned behavior most people use when scanning a web page.

VN:F [1.9.3_1094]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.3_1094]
Rating: 0 (from 0 votes)
Retweet
 
Comments Off

Posted in Development

 

Linux find Cheatsheet

11 Jul

There’s a great article CLI Magic: Searching with find over at linux.com which has examples of using the command line’s “find” utility.

Examples include:

By size:
find /home -name "*.txt" -size 100k
find /home -name "*.txt" -size +100k
find /home -name "*.txt" -size -100k

By user:
find /home -name "*.txt" -size -100k -user paul
find /home -name "*.txt" -size -100k -not -user paul

By Permission:
find /home -perm -o=r
find /home -perm -o=rw
find /home -perm ugo=r,u=w

VN:F [1.9.3_1094]
Rating: 1.0/10 (1 vote cast)
VN:F [1.9.3_1094]
Rating: 0 (from 0 votes)
Retweet
 
Comments Off

Posted in Open Source

 

The Open Source Advantage in Secure Application Development

11 Jul

The views of proponents of the Open Source model are typified by Eric Raymond’s argument that Open Source software is intrinsically more secure since its open nature lets a greater number of programmers view the source code and uncover potential security threats before they’re released to the wild.

read more | digg story

VN:F [1.9.3_1094]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.3_1094]
Rating: 0 (from 0 votes)
Retweet
 
Comments Off

Posted in Open Source