site map

This site is organized by sections following a reverse timeline.
The map below is made as an helper for you to direct access any section of the site.
A tag cloud is also made available for you accessing one of the main subjects the site is about. Finally, you'll find an index of the main articles stored in the site database.

Table of Content

  1. Homepage

    • Homepage — Edito
    • Blog — Things that pops, lives and fade...
  2. Wireless Telecom Industry

    1. 2006 | Mobile Earth — A high performance 3D realtime streaming system for mobile gaming
    2. 2005 | Web-to-Wireless MMO — A massive multiplayer online technology for simultaneous desktop and mobile gaming
    3. 2003-2004 | Wireless Multiplayer Service — An HTTP-based multiplayer system and service for mobile gaming
  3. Video game industry

    1. 2000-2002 | Nightare creatures 3: "Angel of darkness" — A fanstatic action/adventure game for Microsoft Xbox, Sony Playstation 2 and Nintendo Game Cube
    2. 1998-1999 | Nightmare Creatures 2 — A beat'em all game from the famous NC series for Sony PlayStation and Sega Dreamcast
    3. 1998 | Commando — A futuristic exploration game for namco on Sony PlayStation
    4. 1996-1997 | Angel Quest — An innovative title featuring optic motion capture for Sony PlayStation and PC
    5. 1994-1996 | Storm — An adventure/action game that will make you discover the Atlantis for PC/Dos, PC/Windows, Sony PlayStation and Sega Saturn
  4. Before 1994

    1. Miscellaneous
      1. 1997 | Asterix — a demo on Sony Playstation for Infogrames
      2. 1994 | Create your video game — my book about creating a professionnal video game on ‘94 PCs
    2. 1991-1993 | PC200 — Running a pc integrator business
    3. 1980-2006 | My Computer History
  5. Résumé

    1. Résumé — My résumé
    2. Download résumé — Download my résumé as pdf file
  6. Others

    1. Search the site
    2. Sign in the site


Taxonomy

Here we discuss about the following topics, each indexed with a collection of tags. The bigger the tag size, the more popular. Just click on the appropriate tag to display all related articles.




Article ID 896: This content is not yet published
Article ID 871: This content is not yet published
Article ID 908: This content is not yet published
Article ID 862: This content is not yet published

Site Index

July. 26th, 2006 20:47 by Stéphane de LucaPermalink | TrackBack: https://stephanedeluca.com/trackback/347 — updated on Apr. 25th, 2019 16:10 exists for 18 years & 4 months ago - .

global $db, $siteid;
$object=”“;

$query = “SELECT id, title, subject, refurl, published, authorid FROM columnarticles where site_id=’$siteid’ ORDER BY title ASC”;

$arts = $db->querySelectAllRows( $query);

reset($arts);

$n = count($arts)>>1;

$alphabet=”| “;

$i=0;
foreach ( $arts as $art )
{ if (!hasAccessRightsToArticle($art) ) { $i++; continue; }

if (empty($idx)) $idx = mb_strtoupper( mb_substr($art[title],0,1));

$nidx = mb_strtoupper( mb_substr($art[title],0,1)) ;

if ($nidx != $idx) { $idx = $nidx; $object .= “ 

$idx

“; $alphabet .= “$idx | “; }

$allTags = split(“;\s*”, $art[subject]); $tags = “”; foreach ($allTags as $tag) { $tags .= “$tag “; } //$tags = “(Tags: “.str_replace(“;”,”; “,$art[subject]).” )”;

// GET TO ARTICLE PAGE //if (ItsMe()) {print $pageurl; }

if (!stristr($art[refurl],$domainname)) $object .= “$art[title] $tags
“ ; else $object.= “$art[title] $tags
“ ;

$i++;
}

$object = “

“.$alphabet.”



.$object.”
“.$alphabet.”

“;

$common = $object;