This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<!-- | |
Just search and replace the following tags: | |
{name} replace with your printed name (ex 'Elon Musk') | |
{image-url} replace with a 4:3 image, presumably your avatar | |
{twitter-username} replace with your twitter username (ex 'elonmusk') | |
{profile-url} replace with your mastodon profile url (ex 'https://mastodon.social/@Gargron') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
namespace DoubleDabble { | |
class Program { | |
static void Main(string[] args) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DEFINT A-Z | |
' this program sets 160x120 256 color VGA mode in QB1.1 | |
' downsides: qbasic drawing commands absolutely don't work correctly | |
' trick qbasic into thinking we're in VGA mode | |
SCREEN 13 | |
' set EGA mode 0Dh through int 10h in assembly | |
' this is equivalent to SCREEN 7 and using SCREEN 7 will work, but |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var binaryFormat = { | |
name: "jRPG binary format", | |
extension: "bin", | |
write: function(map, fileName) { | |
var m = { | |
width: map.width, | |
height: map.height, | |
layers: [] | |
}; |
OlderNewer