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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
// Hide My Ass <https://www.hidemyass.com/> | |
// Copyright (C) 2005-2015, Privax Ltd. | |
$payments: "avangate_bank", "avangate_cashu", "avangate_webmoney", "avangate_qiwi", "avangate_boleto", | |
"avangate_sofort", "avangate_cc", "adyen_cc", "adyen_ideal", "onebip", "mopay", "bitpay", "paypal"; |
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
/** | |
* Returns server environment information and copyright. This is intended | |
* only to be displayed inside of a terminal. | |
* | |
* @returns {String} Copyright and server environment information | |
*/ | |
function getServerInfo() { | |
const engineName = process.title == 'node' ? 'Node.js' | |
: process.title == 'iojs' ? 'io.js' : '(unknown engine)'; | |
const engineVersion = process.title + ' v' + process.versions.node; |
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
/** file 1: lines.c */ | |
/************************************************************************** | |
* lines.c * | |
* written by David Brackeen * | |
* http://www.brackeen.com/home/vga/ * | |
* * | |
* Tab stops are set to 2. * |
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
// small test (compiled with DJGPP for MSDOS) | |
#include <stdio.h> | |
int main(int argc, char *argv[]) | |
{ | |
int a; | |
char *arg; | |
if (argc == 0) { |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
int main(int argc, char *argv[]) | |
{ | |
int a, b, len, chr; | |
for (a = 1; a < argc; ++a) { |
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 fs = require('fs'); | |
var fse = require('fs-extra'); | |
var path = require('path'); | |
var mkdirp = require('mkdirp'); | |
// The file we'll write the stats to. | |
var deployPath = path.resolve(__dirname, '../../../deploy/'); | |
var filepath = deployPath + '/.webpack-stats.json'; |
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
// Webpack config for creating the production bundle. | |
var path = require('path'); | |
var webpack = require('webpack'); | |
var CleanPlugin = require('clean-webpack-plugin'); | |
var ExtractTextPlugin = require('extract-text-webpack-plugin'); | |
var strip = require('strip-loader'); | |
// Stats plugin. | |
var writeStats = require('./utils/write-stats'); |
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
CC = $(DJGPP_CC) | |
VENDOR = vendor | |
CFLAGS = | |
LDFLAGS = | |
BIN = game1.exe | |
SRCDIR = src | |
OBJDIR = obj | |
DISTDIR = dist |
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
/* | |
* Copyright (C) 2015, Michiel Sikma <[email protected]> | |
* MIT License | |
*/ | |
#include "video.h" | |
byte *VGA = (byte *)0xA0000; // Pointer to the video memory. | |
word *SYS_CLOCK = (word *)0x046C; // The 18.2hz internal clock. |
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
/* | |
* Copyright (C) 2015, Michiel Sikma <[email protected]> | |
* MIT License | |
*/ | |
#ifndef __GAME1_VIDEO__ | |
#define __GAME1_VIDEO__ | |
void plot_pixel(int x, int y, byte color); | |
void set_mode(byte mode); |