- Vue.js
- Vite
- Vue Router
- PrimeVue
- Vue Devtools
- Set up Vue with Vite
- Install libraries
| ## Github Repos | |
| - Build a Blockchain: https://github.com/gwenf/build-a-blockchain | |
| - Web3 Code (will be pushed during talk): https://github.com/gwenf/web3-py-blockchain-demo | |
| - Merkle Tree Demo: https://github.com/dlom123/merkle | |
| ## Applications | |
| - Metamask (Browser Plugin): https://metamask.io/ | |
| - Ganache: https://trufflesuite.com/ganache/index.html |
| {"lastUpload":"2020-08-04T16:24:20.865Z","extensionVersion":"v3.4.3"} |
Settings
repo -> repository
clone -> bring a repo down from the internet (remote repository like Github) to your local machine
add -> track your files and changes with Git
commit -> save your changes into Git
push -> push your changes to your remote repo on Github (or another website)
pull -> pull changes down from the remote repo to your local machine
status -> check to see which files are being tracked or need to be commited
init -> use this command inside of your project to turn it into a Git repository and start using Git with that codebase
| pragma solidity >=0.4.22 <0.7.0; | |
| // phone company dapp | |
| // charge telemarkers coins for calls | |
| // whitelist people don't get charged | |
| // anyone not on the whitelist has to pay a small fee | |
| contract PhoneCompany { | |
| uint public chargeAmount; | |
| uint public coinPrice; |
| pragma solidity ^0.5.1; | |
| contract Calculator { | |
| int public num; | |
| constructor() public { | |
| num = 1; | |
| } | |
| function getNum() view public returns(int) { |
| title | minutes | views | |
|---|---|---|---|
| React State Management (P5D58) - Live Coding with Jesse | 8 | 826 | |
| React Infinite Scroll (P5D57) - Live Coding with Jesse | 23 | 1166 | |
| Working with React Components Part 2 (P5D56) - Live Coding with Jesse | 19 | 726 | |
| Coding for a Swedish Startup - a day in the life of Amber Wilkie | 9 | 2744 | |
| Working with React Components (P5D55) - Live Coding with Jesse | 2 | 1162 | |
| Basic CSS Styling Part 2 (P5D54) - Live Coding with Jesse | 45 | 1704 | |
| Writing Secure JavaScript | 24 | 3265 | |
| Learn HTML5 - full course with code samples | 52 | 11540 | |
| Basic CSS Styling (P5D53) - Live Coding with Jesse | 39 | 2522 |
| // basic | |
| aws configure | |
| aws lambda help | |
| zip index.zip handler.js | |
| // serverless | |
| serverless config credentials --provider AWS --key *placeholder* --secret *placeholder* --profile | |
| serverless create --template aws-nodejs --path *folder-name* | |
| sls help |