This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns web3 | |
"Call an Ethereum smart contract (Uniswap v2) from Clojure. | |
Requires https://github.com/clj-python/libpython-clj for python interop. Also | |
make sure to $ pip install web3." | |
(:require [libpython-clj2.python :as py] | |
[libpython-clj2.require :refer [require-python]])) | |
(comment ;; deps.edn |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns micrograd | |
"autograd engine for scalar values and operations in the style of | |
https://github.com/karpathy/micrograd | |
but with immutable values.") | |
; Wrap a scalar `data` with some additional context | |
(defrecord Value [data grad children op op-deriv]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AWSTemplateFormatVersion: '2010-09-09' | |
# ------------------------------------------------------------# | |
# Metadata | |
# ------------------------------------------------------------# | |
Metadata: | |
AWS::CloudFormation::Interface: | |
ParameterGroups: | |
- Label: | |
default: "Kinesis Data Firehose Configuration" | |
Parameters: |