TODO
CCBot/1.0 (+http://www.commoncrawl.org/bot.html) = Unknown, Unknown version Unknown
- This would be fun to implement: http://feed43.com/understanding-patterns.html (Could probably just use a scraping library instead though)
- 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"
- RSS2RSS finish adding editing feeds and editing channels forms.
- Work on Breathe Game Engine
- Create a content delivery system similar to Steam
- 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.
- Log referer in counter table
- Release some stuff
- Create grass, billboard rotated towards the camera, randomly populate level
- Work on editor, create game entities, rotate, position, delete, edit properties of both entities and nodes
- Generate graphs for counter statistics including break down by ISP, time of day, day of week, etc.
- Photo album (Just use Flicker?)
- Link to IMDB correct page (Movie or search)
- Implement editing in Triki
- Graphs, tree diagrams and drawing through Javascript/Flash
- Hyperlink Triki defined words that appear in each article
- Contenterise Triki
- Implement categorising, moving, deleting, adding sections/articles in Triki
- Make a todo clone
- thumbs up, thumbs down for people to vote on the best suggestions
- any user can add a new suggestion doesn't even have to log in
"Release anything at all"
"Release Tetris"
"Release Drive"
"Release Crank"
"Release Sudoku"
Code Test
Submitted: 06/10/04 06:19:14 Project: Test Version: 1.0 Author: Chris
begin
#include <string>
#include <BREATHE/cBreathe.h>
char g=10;
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
#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
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.
|