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
@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
@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: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 = {}
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 / paradise-notifications.js
Last active October 9, 2015 14:25
Adds desktop notifications to Paradise
(function() {
if( !( 'Notification' in window ) ) {
return console.error(
'This browser does not support desktop notifications'
)
}
var icon = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGIAAABiCAYAAACrpQYOAAAMF2lDQ1BJQ0MgUHJvZmlsZQAASImVlwdUU8kax+eWFEJCC0RASuhNkF6l9yIgHWyEJEAoMQSCih1ZVHAtqIiiqOgKiKJrAWStWLCwCNjrgojKyrpYsKHyJgX0+d6ed96cM/f+7jff993/zJ25ZwYARXuWQJCFKgGQzc8TRgX6MBMSk5ikPwAKlAEBGAI9FjtX4B0ZGQb+sby7BRDx/bqlONc/+/3Xoszh5rIBQCIhp3By2dmQjwKAa7IFwjwACJ3QbjA3TyDmt5BVhVAgAESymNOkrCXmFClbS3xionwh+wFAprJYwjQAFMT5mfnsNJhHQQDZms/h8SHvhOzBTmdxIPdAnpSdPQeyIhWyacp3edL+LWfKeE4WK22cpX2RFLIfL1eQxZr/fw7H/y7ZWaKxd+jDSk0XBkWJ+wzHrTZzTqiYoXbkBD8lPAKyCuRLPI7EX8z30kVBsTL/QXauLxwzwADwc3NYfqGQ4ViiDFFmrLeMbVlCSSz0R8N5ecExMk4RzomS5Ufzubn+0WOczg0Ok+Vcyc8KH+OqVF5AMGQ409CjBekx8VKd6Pl8Xlw4ZAXInbmZ0aEy/0cF6b7hYz5CUZRYsyHkt6nCgCipD6aenTvWL8yKzZJoUIfslZceEySNxRK4uQlhY9o4XD9/qQaMw+XHyjRjcHb5RMliiwVZkTJ/rIqbFRglHWfsUG5+9Fhsdx6cYNJxwB5nsEIipfqxd4K8yBipNhwHYcAX+AEmEMGaAuaADMDrGGwahE/SlgDAAkKQBrjAUmYZi4iX
@neauoire
neauoire / gist:9f7fb74cc2e496029df1
Last active November 28, 2015 18:11
Trapped in Tokyo Correction
Tokyo, holy excrements from small undefined creatures! We’re there. First place we had on our list was the Nakagin Tower.
Spending two whole days there, we finally experienced the dread and discomfort of living in a capsule hotel. It was wonderful despite the occasional shakeup and earthquake panic you’d feel when, at 5 AM, your four floors up neighbour decides to move their capsule. Althought, this person was courteous enough to leave a box of chocolate with an apology.
Nakagin Tower is one of those rather rare examples of buildings where the exterior matches the interior perfectly. The compact minimalism you can observe from outside, permeates into the rooms and hallways creating a much fuller, more impactful experience. The sounds made from the windows when you adjust them utterly surpasses any horrific sound in existence -- the blades had to be oiled often but tenants sometimes decided against that.
Nina was exactly where she was born to be, and so was that fuzzy sweater, that returned along with her. It
<script>
function test(){
d=document;
d.body.appendChild(c=d.createElement("canvas"));
g=c.getContext("webgl")||c.getContext("experimental-webgl");
sp=g.createProgram();
function gs(t,s){
g.shaderSource(t=g.createShader(t),s);
g.compileShader(t);g.attachShader(sp,t);
}

Dear Lululemon team,

I join to this cover letter, my resume, with hopes that it demonstrates my interest in working with you. I have spent the last six years working in the video game industry, before taking a year long pause to learn new skills. I am now looking to apply them onto new challenges and I wish to work in a company that I believe in.

I believe that I can learn from, and improve, the already great experiences that your store offers. Whenever I found myself shopping at your store, it left a lasting memory. I wish to work with you in perpetrating these memories.

If you would honor me with an interview, I am certain that I can prove myself to be a great addition to your team as an educator. Thank you so much for your time, and I hope to hear from you soon.

Sophie

@neauoire
neauoire / keypress.rb
Created March 10, 2016 21:33 — forked from acook/keypress.rb
Read keypresses from user in terminal, including arrow keys using pure Ruby. This has since been folded into a much more robust gem called Remedy. https://rubygems.org/gems/remedy & https://github.com/acook/remedy
require 'io/console'
# Reads keypresses from the user including 2 and 3 escape character sequences.
def read_char
STDIN.echo = false
STDIN.raw!
input = STDIN.getc.chr
if input == "\e" then
input << STDIN.read_nonblock(3) rescue nil
@neauoire
neauoire / idieyoudie.md
Last active July 8, 2018 19:37
Portalion Interview

For I Die You Die

How long did it take you to finish Portalion? What hang ups did you come across, if any (whether it be inspiration, compositionally, with mixing, etc.)?

Portalion was created in around 80 hours, over the span of 2 months. You can see a breakdown of the work done on the album here: http://wiki.xxiivv.com/Portalion:Horaire The album really materialized during our stay at this AirBnB in Vancouver that we shared with this opera student, where everyday, the house was filled with Satie.

What instruments do you play?

None. I'm not too interested in the tactile aspect of music rendition.