header

TODO

CCBot/1.0 (+http://www.commoncrawl.org/bot.html) = Unknown, Unknown version Unknown
  1. This would be fun to implement: http://feed43.com/understanding-patterns.html (Could probably just use a scraping library instead though)
  2. RSS2RSS Fix this error, possibly by adding an incrementing number of seconds to each one? "Error: Two entries with the same value for atom:updated: 2008-04-14T15:34:41-07:00"
  3. RSS2RSS finish adding editing feeds and editing channels forms.
  4. Work on Breathe Game Engine
  5. Create a content delivery system similar to Steam
  6. Create a sky from a screen aligned billboard. Moves with camera, texture coords change to look at horizon, sky or ground. Add sun, stars, moon, planes, birds and clouds.
  7. Log referer in counter table
  8. Release some stuff
  9. Create grass, billboard rotated towards the camera, randomly populate level
  10. Work on editor, create game entities, rotate, position, delete, edit properties of both entities and nodes
  11. Generate graphs for counter statistics including break down by ISP, time of day, day of week, etc.
  12. Photo album (Just use Flicker?)
  13. Link to IMDB correct page (Movie or search)
  14. Implement editing in Triki
  15. Graphs, tree diagrams and drawing through Javascript/Flash
  16. Hyperlink Triki defined words that appear in each article
  17. Contenterise Triki
  18. Implement categorising, moving, deleting, adding sections/articles in Triki

Code Test

Submitted: 06/10/04 06:19:14 Project: Test Version: 1.0 Author: Chris

begin
#include
<string>

#include
<BREATHE/cBreathe.h>

/*#include <math.h>
#include <BREATHE/MATH/cMath.h>
#include <BREATHE/MATH/cVec2.h>
#include <BREATHE/MATH/cVec3.h>
#include <BREATHE/MATH/cVec4.h>
#include <BREATHE/MATH/cMat4.h>
#include <BREATHE/MATH/cPlane.h>
#include <BREATHE/MATH/cQuaternion.h>
#include <BREATHE/MATH/cFrustum.h>
#include <BREATHE/MATH/cColour.h>*/


char g=10;

//This is a comment
/*This is a comment*/

bool x=true;
unsigned int y=-3;
float z=10.0f;

std::string s="Chris";

class a
{
private:
 void b();
protected:
 void c();
public:
 a();
};

#ifdef
_DEBUG
 unsigned long d;
#endif
//_DEBUG

#define
m 5

namespace BREATHE
{
 std::string StringReplace(std::string sSource, std::string sFind, std::string sReplace)
 {
  size_t j;
  for(;(j = sSource.find(sFind)) != std::string::npos;)
  {
   sSource.replace(j, sFind.length(), sReplace);
  }
  return sSource;
 }
}

end

begin

<?PHP
//This is a comment
/*This is a comment*/

require ("util/util.php");
 
 $db=new cDB();
 $db->OpenDB(false);
$user = new cLogin($db);
$user->loggedIn();

  $util=new cUtil();
 $util->SetTheme();

$theme = new cTheme($db, true, $user->loggedin, $user->login, $user->type);
$theme->header("dev.iluo.net");
$theme->menu($user->loginForm());

$theme->main_begin();
    
    $theme->journal("");
   $theme->main_end();
$theme->footer();

$db->CloseDB();
?>
end

Website Development

Submitted: 06/04/08 07:26:24 Project: Journal Version: 1.0 Author: Chris Pilkington

Triki project started. Also working on code highlighting that automatically highlights anything between <code> tags.