Skip to content

Instantly share code, notes, and snippets.

View marcolago's full-sized avatar

Marco Lago marcolago

  • Villastellone > Turin > Italy
View GitHub Profile
@tcoupin
tcoupin / flowtime-table.css
Last active September 12, 2016 16:06
css for table management in flowtime.js
.ft-table {
width: 100%;
text-align: center;
background-color: rgba(0,0,0,0.3);
border-radius: 0.5rem;
font-size: 1.25em;
}
.ft-table td, .ft-table th {
padding: 0.5rem;
}
@josefnpat
josefnpat / readme.md
Last active April 7, 2024 11:39
Going from Lua 5.2 to PICO-8's Lua

This information applies to the PICO-8 0.1.6 release.

This document is here to help folks with a proficiency in Lua understand the limitations and discrepencies between Lua and PICO-8's Lua.

You can always view the manual or yellowafterlife's extended 0.1.1 manual.

General

  • anything written in uppercase the PICO-8 editor or .p8 is made lowercase by the editor. → editing the .p8 file directly can work
  • print(function() end) outputs the string function instead of the string function: 0x0000000.
@lopezjurip
lopezjurip / README.md
Last active September 10, 2023 06:27
Write to NTFS on OSX Yosemite and El Capitan

OUTDATED, see comments below

Install Homebrew:

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

Update Homebrew formulae:

brew update