Skip to content

Instantly share code, notes, and snippets.

View cuisse's full-sized avatar
☺️

Brayan Roman cuisse

☺️
View GitHub Profile
@cuisse
cuisse / sketch.js
Created September 3, 2022 21:06
Regions lookup example using P5 JS, you can try it online using: https://editor.p5js.org/
class Point {
constructor(y, x) {
this.y = y;
this.x = x;
}
getY() {
return this.y;
}
@cuisse
cuisse / signos_zodiaco.cpp
Created April 23, 2021 23:51
Ejercicio de programación I
#include <iostream>
#include <utility>
#include <string>
using namespace std;
class Fecha {
public: