Skip to content

Instantly share code, notes, and snippets.

View mauriciopoppe's full-sized avatar
🇧🇴

Mauricio Poppe mauriciopoppe

🇧🇴
View GitHub Profile
#include <iostream>
#include "project/Vector.hpp"
Vector::Vector() {
x = y = 0.0;
}
Vector::Vector(double a, double b) {
x = a;
@mauriciopoppe
mauriciopoppe / _README.md
Last active March 30, 2024 09:52
Generic Makefile example for a C++ project
@mauriciopoppe
mauriciopoppe / esnextbin.md
Created April 9, 2016 03:26
esnextbin sketch
@mauriciopoppe
mauriciopoppe / esnextbin.md
Created May 3, 2016 23:53
esnextbin sketch
@mauriciopoppe
mauriciopoppe / esnextbin.md
Created May 3, 2016 23:56
esnextbin sketch
@mauriciopoppe
mauriciopoppe / esnextbin.md
Created May 4, 2016 20:08
esnextbin sketch
@mauriciopoppe
mauriciopoppe / esnextbin.md
Created May 7, 2016 07:04
esnextbin sketch
@mauriciopoppe
mauriciopoppe / index.js
Created May 24, 2016 17:38
requirebin sketch
var adapter = require('floating-adapter');
var Decimal = require('pow-arbitrary-precision')(require('linear-arbitrary-precision')(adapter));
console.log(new Decimal('-8').pow(new Decimal('1/3')).valueOf())
@mauriciopoppe
mauriciopoppe / esnextbin.md
Last active May 24, 2016 18:35
esnextbin sketch
@mauriciopoppe
mauriciopoppe / IJT0-1.clj
Created May 21, 2017 06:50
null created by mauriciopoppe - https://repl.it/IJT0/1
; addition
(+ 6 8)
; 0
(+)