Skip to content

Instantly share code, notes, and snippets.

View debragail's full-sized avatar
💀
ded

Ophelia debragail

💀
ded
View GitHub Profile
@debragail
debragail / Blockchain.jl
Created September 4, 2018 02:59 — forked from TestSubjector/Blockchain.jl
A very basic implementation of a blockchain in Julia.
using SHA
"""
An individual block structure
"""
struct Block
index::Int
timestamp::DateTime
data::String
previous_hash::String
@debragail
debragail / 0_reuse_code.js
Created October 14, 2015 23:30
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console