Skip to content

Instantly share code, notes, and snippets.

View gwenf's full-sized avatar

Gwendolyn Faraday gwenf

View GitHub Profile
@gwenf
gwenf / Blockchain Talk Outline
Last active June 4, 2023 12:14
Talk Outline for Python Web Conf 2022
## 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
@gwenf
gwenf / linktree-vue.md
Last active March 18, 2022 12:34
LinkTree Project Built in Vue.js

Technologies

  • Vue.js
  • Vite
  • Vue Router
  • PrimeVue
  • Vue Devtools

Steps

  • Set up Vue with Vite
  • Install libraries
@gwenf
gwenf / cloudSettings
Last active June 4, 2023 12:16
Visual Studio Code Settings Sync Gist
{"lastUpload":"2020-08-04T16:24:20.865Z","extensionVersion":"v3.4.3"}
@gwenf
gwenf / settings.md
Created August 4, 2020 16:08
All of my settings from VSCode

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;
@gwenf
gwenf / SupplyChain.md
Created August 12, 2019 03:51
README for Ethereum Workshop

Ethereum Workshop Code & Instructions

Setup

Metamask

  • Install Browser Plugin (for Chrome or Firefox)
  • Use Rinkeby test network
  • Get some Test Ether from Faucet
@gwenf
gwenf / Calculator.sol
Last active June 5, 2021 01:07
Ethereum Supple Chain Demo
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