Skip to content

Instantly share code, notes, and snippets.

View KareemDaCosta's full-sized avatar

Kareem DaCosta KareemDaCosta

  • Columbia University
  • New York
View GitHub Profile
@ihavenonickname
ihavenonickname / space-invaders.java
Created April 25, 2018 00:03
Space Invaders in Processing 3
int pixelsize = 4;
int gridsize = pixelsize * 7 + 5;
Player player;
ArrayList enemies = new ArrayList();
ArrayList bullets = new ArrayList();
int direction = 1;
boolean incy = false;
int score = 0;
PFont f;
@mistic100
mistic100 / Mediakeys.ahk
Last active May 13, 2025 17:00
Media keys shortcuts for AutoHotkey
; AutoHotkey Media Keys
^!Space::Send {Media_Play_Pause}
^!Left::Send {Media_Prev}
^!Right::Send {Media_Next}
^!NumpadMult::Send {Volume_Mute}
^!NumpadAdd::Send {Volume_Up}
^!NumpadSub::Send {Volume_Down}