Skip to content

Instantly share code, notes, and snippets.

View DrAlbedo's full-sized avatar
🎯
Focusing

Dr Albedo DrAlbedo

🎯
Focusing
  • UoE | Ravenclaw | Sumeru Akademiya
  • New Eridu | Teyvat
View GitHub Profile
@DrAlbedo
DrAlbedo / numpy-benchmark.py
Created April 22, 2021 17:44 — forked from markus-beuckelmann/numpy-benchmark.py
A short Python script to benchmark NumPy and show your BLAS setup
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
# Roughly based on: http://stackoverflow.com/questions/11443302/compiling-numpy-with-openblas-integration
from __future__ import print_function
import numpy as np
from time import time
@DrAlbedo
DrAlbedo / Ballot.sol
Created June 3, 2018 04:37
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.4.24+commit.e67f0147.js&optimize=false&gist=
contract Ballot {
struct Voter {
uint weight;
bool voted;
uint8 vote;
}
struct Proposal {
uint voteCount;