Skip to content

Instantly share code, notes, and snippets.

View shyamalschandra's full-sized avatar
💭
Writing Swift 5 Code...

Shyamal Suhana Chandra shyamalschandra

💭
Writing Swift 5 Code...
View GitHub Profile
@shyamalschandra
shyamalschandra / pickupball.pde
Created May 31, 2020 18:09
A game with the grocery box trying to pick up the most white oranges coming from a fountain of orange generators.
import processing.sound.*;
import de.looksgood.ani.*;
import de.looksgood.ani.easing.*;
// Written by: Shyamal S. Chandra
// Date: May 31, 2020
// Code taken from example: https://processing.org/examples/simpleparticlesystem.html
PGraphics topLayer, bottomLayer;
@shyamalschandra
shyamalschandra / linedrawing1.pde
Last active March 6, 2021 15:56
Line drawing program for Processing for Java
import de.looksgood.ani.*;
PGraphics topLayer, bottomLayer;
int widthandheight = 10;
int smallestwidthandheight = 5;
float numSeconds = 1.5;
int boxColor = 255;
int x, y;
boolean debugMode = false;
@shyamalschandra
shyamalschandra / index.html
Created October 31, 2018 07:15 — forked from krhoyt/index.html
Tesseract.JS OCR
<html>
<head>
<title>Tesseract</title>
<style>
body {
align-items: center;
display: flex;
flex-direction: row;