Goals: Add links that are reasonable and good explanations of how stuff works. No hype and no vendor content if possible. Practical first-hand accounts of models in prod eagerly sought.
//SPDX-License-Identifier: MIT | |
pragma solidity 0.8.7; | |
// Import the necessary files and lib | |
import "./Interfaces/IERC4626.sol"; | |
import "./Interfaces/IERC20.sol"; | |
import "https://github.com/Rari-Capital/solmate/blob/main/src/tokens/ERC20.sol"; | |
// create your contract and inherit the your imports | |
contract TokenizedVault is IERC4626, ERC20 { |
#!/bin/sh | |
#this is the command to type when installing ESP Easy to your ESP8266 device. | |
sudo python esptool.py --port /dev/ttyUSB0 write_flash 0x00000 ESP_Easy_mega-20200426_dev_ESP8266_4M1M.bin |
Copyright © 2016-2018 Fantasyland Institute of Learning. All rights reserved.
A function is a mapping from one set, called a domain, to another set, called the codomain. A function associates every element in the domain with exactly one element in the codomain. In Scala, both domain and codomain are types.
val square : Int => Int = x => x * x
Lightning talk proposal for ReactiveConf 2016
At Blueberry, we've been frustrated with maintaining and getting oriented in our React components and their props. That's why we made a tool for automatically generating a component library from a project's components.
We named it BlueKit and released it as open-source.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.