This file contains 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) 2024, Dominic Szablewski - https://phoboslab.org | |
SPDX-License-Identifier: MIT | |
Compile with: | |
gcc l555.c -lm -O3 -o l555 | |
PCM WAV to L555 MWV: | |
./l555 in.wav out.mwv |
This file contains 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> | |
// ----------------------------------------------------------------------------- | |
// Cross platform high resolution timer | |
// From https://gist.github.com/ForeverZer0/0a4f80fc02b96e19380ebb7a3debbee5 | |
#include <stdint.h> | |
#include <stdbool.h> | |
#if defined(__linux) |
This file contains 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
'use strict'; | |
let http = require('http'), | |
url = require('url'), | |
querystring = require('querystring'), | |
fs = require('fs'), | |
editorIndex = 'editor/editor.html', | |
port = parseInt(process.argv[2] || 8080, 10); | |
This file contains 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
ig.module( | |
'plugins.json' | |
) | |
.defines(function(){ "use strict"; | |
ig.JSON = ig.Class.extend({ | |
data: null, | |
path: '', | |
This file contains 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
ig.module( | |
'game.entities.door' | |
) | |
.requires( | |
'plugins.twopointfive.entity' | |
) | |
.defines(function(){ | |
EntityDoor = tpf.Entity.extend({ | |
type: ig.Entity.TYPE.NONE, |
This file contains 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
ig.module( | |
'plugins.gamepad' | |
) | |
.requires( | |
'impact.input', | |
'impact.game' | |
) | |
.defines(function(){ | |
// Assign some values to the Gamepad buttons. We use an offset of 256 |
This file contains 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
// idbsimple - tiny wrapper around indexeDB to behave like an | |
// asynchronous localStorage. | |
// API (all callbacks are optional): | |
// idbsimple.getItem(key, function(error, value){...}); | |
// idbsimple.setItem(key, value, function(error){...}); | |
// idbsimple.removeItem(key, function(error){...}); | |
// idbsimple.clear(function(error){...}); | |
// idbsimple.delete(); |
This file contains 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 <stdbool.h> | |
#include <stdlib.h> | |
#include <ctype.h> | |
#include <string.h> | |
typedef union { | |
unsigned int hex; | |
struct { | |
unsigned char r, g, b, a; |
This file contains 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 <stdlib.h> | |
#include <string.h> | |
#include <unistd.h> | |
#include <sys/ioctl.h> | |
#include <arpa/inet.h> | |
#include <net/if.h> | |
void ip_for_interface(const char *interface_name, char *ip, const int length) { | |
*ip = NULL; | |
This file contains 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
/** | |
* @author mrdoob / http://mrdoob.com/ | |
*/ | |
THREE.OBJLoader = function () { | |
THREE.EventDispatcher.call( this ); | |
}; |
NewerOlder