Here I go again...

So I am still alive, but lost a lot of motivation to work on the site after losing so much of it last year. I had almost forgot I had it until I got the notification that the domain was going to expire. Lately, I have been playing a lot of Warframe since giving up The First Descendant, but I am starting to get burned out on Warframe and need something else to focus more of my free time on and I think this is what I want to do rather than jump into another game.

A lot of stuff to work on so this should keep me busy for awhile and hopefully create some interesting content along the way.

You must be logged in to comment.

I have the comment system working properly now I think. Will start working on the discord integration tomorrow.

Testing comments and syntax highlighting.

function utf8_to_extended_ascii($str, &$map)
{
    // find all multibyte characters (cf. utf-8 encoding specs)
    $matches = array();
    if (!preg_match_all('/[\xC0-\xF7][\x80-\xBF]+/', $str, $matches))
        return $str; // plain ascii string
    
    // update the encoding map with the characters not already met
    foreach ($matches[0] as $mbc)
        if (!isset($map[$mbc]))
            $map[$mbc] = chr(128 + count($map));
    
    // finally remap non-ascii characters
    return strtr($str, $map);
}