Skip to content

Instantly share code, notes, and snippets.

View gwenf's full-sized avatar

Gwendolyn Faraday gwenf

View GitHub Profile
@gwenf
gwenf / gist:eee66c346fe23f9d9c8d
Last active September 5, 2015 03:40 — forked from olivierlacan/gist:4062929
Code School Screencasting Framework

Screencasting Framework

The following document is a written account of the Code School screencasting framework. It should be used as a reference of the accompanying screencast on the topic.

Why you should care about screencasting?

You're probably aren't going to take the time to read this document if you're not interested, but there are a lot of nice side effects caused by learning how to create quality screencasts.

  1. Communicating more effectively - At Envy Labs we produce screencasts for our clients all the time. Whether it's demoing a new feature or for a presentation for an invester, they're often much more effective and pleasent than a phone call or screen sharing.
@gwenf
gwenf / gist:bd0ba0a161e6eafa0e3d39e0d7c2f5fd
Created December 23, 2016 15:02
Listen for Hash Change and Scroll To Top
window.addEventListener("hashchange", scrollToTop, false);
function scrollToTop(){
window.scrollTo(0, 0);
}
// 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
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
@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) {
@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
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;
  • 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

@gwenf
gwenf / settings.md
Created August 4, 2020 16:08
All of my settings from VSCode

Settings

@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"}