Skip to content

Instantly share code, notes, and snippets.

View asifadamsha's full-sized avatar
🏠
Working from home

Asif Adamsha asifadamsha

🏠
Working from home
View GitHub Profile
## How to hide API keys from github ##
1. If you have already pushed commits with sensitive data, follow this guide to remove the sensitive info while
retaining your commits: https://help.github.com/articles/remove-sensitive-data/
2. In the terminal, create a config.js file and open it up:
touch config.js
atom config.js
@dc74089
dc74089 / pong.pde
Last active March 1, 2023 19:40
Simple Pong Game in Processing
float x, y, speedX, speedY;
float diam = 10;
float rectSize = 200;
void setup() {
fullScreen();
fill(0, 255, 0);
reset();
}