Skip to content

Instantly share code, notes, and snippets.

View fabriciosantana's full-sized avatar

FABRICIO FERNANDES SANTANA fabriciosantana

View GitHub Profile
@fabriciosantana
fabriciosantana / gen_eth_keys.sh
Created September 3, 2021 17:34 — forked from ignition42/gen_eth_keys.sh
Generate ethereum key pairs and address
#!/bin/bash
# Source: https://kobl.one/blog/create-full-ethereum-keypair-and-address/
# Install dependencies
sudo apt-get install openssl curl
# Download prebuilt sha3 keccak
if [ $(uname -m) == 'x86_64' ]; then
curl -L -O https://github.com/vkobel/ethereum-generate-wallet/raw/master/lib/x86-64/keccak-256sum
else
@fabriciosantana
fabriciosantana / hello_tensorflow.py
Created August 21, 2017 16:31
My first test gist
# -*- coding: utf-8 -*-
"""
Spyder Editor
Este é um arquivo de script temporário.
"""
import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')