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
*PPD-Adobe: "4.3" | |
*% Adobe Systems PostScript(R) Printer Description File | |
*% Copyright 1987-1996 Adobe Systems Incorporated. | |
*% All Rights Reserved. | |
*% Copyright (c) SEIKO EPSON Corporation. 2009 | |
*FormatVersion: "4.3" | |
*FileVersion: "1.1" | |
*LanguageVersion: English | |
*LanguageEncoding: ISOLatin1 | |
*PCFileName: "EPET-8550 Series.PPD" |
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
main | |
index.js | |
index.wasm | |
index.html | |
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
sfx.render{ | |
["frequency"]="C4", | |
["name"]="shot", | |
["volume"]=0.5, | |
["duty"]=0.5, | |
["fwav"]="square", | |
["adsr"]= | |
{ | |
1, |
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
local wstr=require("wetgenes.string") | |
local chatdown=require("wetgenes.gamecake.fun.chatdown") -- conversation trees | |
local bitdown=require("wetgenes.gamecake.fun.bitdown") -- ascii to bitmap | |
local chipmunk=require("wetgenes.chipmunk") -- 2d physics https://chipmunk-physics.net/ | |
----------------------------------------------------------------------------- | |
--[[#hardware |
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
local wstr=require("wetgenes.string") | |
hardware,main=system.configurator({ | |
mode="fun64", -- select the standard 320x240 screen using the swanky32 palette. | |
graphics=function() return graphics end, | |
update=function() update() end, -- called repeatedly to update+draw | |
}) | |
-- debug text dump |
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
-- | |
-- This is fun64 code, you can copy paste it into https://xriss.github.io/fun64/pad/ to run it. | |
-- | |
hardware,main=system.configurator({ | |
mode="fun64", -- select the standard 320x240 screen using the swanky32 palette. | |
update=function() update() end, -- called repeatedly to update+draw | |
}) | |
local wstr=require("wetgenes.string") |
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
local wstr=require("wetgenes.string") | |
local wgrd=require("wetgenes.grd") | |
local tardis=require("wetgenes.tardis") -- matrix/vector math | |
local bitdown=require("wetgenes.gamecake.fun.bitdown") | |
local bitdown_font_4x8=require("wetgenes.gamecake.fun.bitdown_font_4x8") | |
-- |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
-- | |
-- This is fun64 code, you can copy paste it into https://xriss.github.io/fun64/pad/ to run it. | |
-- | |
hardware,main=system.configurator({ | |
mode="fun64", -- select the standard 320x240 screen using the swanky32 palette. | |
update=function() update() end, -- called repeatedly to update+draw | |
}) | |
-- we will call this once in the update function |
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
sudo install -o root -g root -m 0600 /dev/null /swapfile | |
dd if=/dev/zero of=/swapfile bs=1k count=256k | |
mkswap /swapfile | |
swapon /swapfile | |
echo "/swapfile swap swap auto 0 0" | sudo tee -a /etc/fstab | |
sudo sysctl -w vm.swappiness=10 | |
echo vm.swappiness = 10 | sudo tee -a /etc/sysctl.conf |
NewerOlder