Skip to content

Instantly share code, notes, and snippets.

View neauoire's full-sized avatar
💭
Siouxsie & The Banshees - Cities In Dust

Devine Lu Linvega neauoire

💭
Siouxsie & The Banshees - Cities In Dust
View GitHub Profile
import Foundation
extension String
{
func subString(start: Int, length: Int) -> String
{
let range = Range<String.Index>(start: startIndex.advancedBy(start), end: startIndex.advancedBy(start + length))
return self.substringWithRange(range)
}
}
@neauoire
neauoire / gist:63a5446441e8cdc5492e
Last active August 29, 2015 14:26
Pico8 - Screensaver
-- SCREENSAVER
-- BY ALICEFFEKT
point1 = {}
point1.x = 64
point1.y = 64
point1.a = 90
point1.s = 2
point2 = {}
@neauoire
neauoire / gist:200d97396805dda71154
Last active September 12, 2021 01:01
Pico8 Cube
-- 3D CUBE
-- BY ALICEFFEKT
angle = 0
function _update()
angle += 2
if angle > 360 then
angle = 0
end
@neauoire
neauoire / gist:e8f189af4c8ab7743001
Last active August 29, 2015 14:26
Pico8 Tunnel
-- GEODEZIK
-- BY ALICEFFEKT
frame = 0
function _update()
frame += 1
-- loop at f127