Skip to content

Instantly share code, notes, and snippets.

View elmaedesistemas's full-sized avatar
💻
Wait... I'm check this line of code...

Deiby Mejia Ruiz elmaedesistemas

💻
Wait... I'm check this line of code...
  • San José, Costa Rica
View GitHub Profile
@elmaedesistemas
elmaedesistemas / Ethereum_private_network.md
Created April 23, 2022 22:02 — forked from 0mkara/Ethereum_private_network.md
Ethereum private network configuration guide.

Create your own Ethereum private network

Introduction

Used nodes:

Linux raspberrypi 4.9.41-v7+ #1023 SMP Tue Aug 8 16:00:15 BST 2017 armv7l GNU/Linux
Linux localhost.localdomain 4.14.5-200.fc26.x86_64 #1 SMP Mon Dec 11 16:29:08 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux
@elmaedesistemas
elmaedesistemas / binary-tree.js
Created October 4, 2021 19:53 — forked from rodrwan/binary-tree.js
Implementación árbol binario en JavaScript
class Node {
constructor (value) {
this.value = value
this.right = null
this.left = null
}
}
class Tree {
constructor () {
@elmaedesistemas
elmaedesistemas / TetherToken.sol
Created September 4, 2021 00:12 — forked from plutoegg/TetherToken.sol
TetherToken.sol - Tether.to USD
pragma solidity ^0.4.11;
/**
* Math operations with safety checks
*/
library SafeMath {
function mul(uint a, uint b) internal returns (uint) {
uint c = a * b;
assert(a == 0 || c / a == b);
return c;
@elmaedesistemas
elmaedesistemas / introduction_pandas.ipynb
Created January 9, 2020 11:47
Introduction to Pandas
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@elmaedesistemas
elmaedesistemas / introduction_numpy_arrays.ipynb
Created January 9, 2020 11:01
Introduction Python Numpy - Arrays
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.