⚠️ WARNING
The ordering of listed projects or documents is random and has no connection to relevance or maturity levels!
Extension | Description |
---|---|
pgaudit |
Postgres auditing extension |
pg_dbms_metadata |
extract Postgres object metadata |
⚠️ WARNING
The ordering of listed projects or documents is random and has no connection to relevance or maturity levels!
Extension | Description |
---|---|
pgaudit |
Postgres auditing extension |
pg_dbms_metadata |
extract Postgres object metadata |
from functools import reduce | |
import binascii | |
from os import urandom | |
from py_ecc.bn128 import * | |
from sha3 import keccak_256 | |
""" | |
Implements BLS signatture aggregation as described at: | |
https://crypto.stanford.edu/~dabo/pubs/papers/BLSmultisig.html |
contract MerkleVerifier { | |
function hash_leaf(uint256 value) | |
internal pure | |
returns (bytes32 hash) | |
{ | |
return bytes32(value); | |
} | |
function hash_node(bytes32 left, bytes32 right) |
pragma solidity ^0.4.14; | |
/* | |
Example of how to verify BLS signatures and BGLS aggregate signatures in Ethereum. | |
Signatures are generated using https://github.com/Project-Arda/bgls | |
Code is based on https://github.com/jstoxrocky/zksnarks_example | |
*/ | |
contract BLSExample { |
Picking the right architecture = Picking the right battles + Managing trade-offs
""" | |
Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy) | |
BSD License | |
""" | |
import numpy as np | |
# data I/O | |
data = open('input.txt', 'r').read() # should be simple plain text file | |
chars = list(set(data)) | |
data_size, vocab_size = len(data), len(chars) |
Note: I'm currently taking a break from this course to focus on my studies so I can finally graduate
##Google Interview Questions: Product Marketing Manager