Table of Contents
-
Don’t Fear the Internet: http://dontfeartheinternet.com/
-
Great beginner’s resource, written from a beginner’s point of view. Jessica Hisch is a great person to follow in general.
-
-
Scrimba: https://scrimba.com/
-
Interesting learning platform — courses are videos that you can type inside of.
-
Has courses for all levels.
-
-
Smashing Magazine: https://www.smashingmagazine.com/articles/
-
Design oriented, and written in conversational style. May need a bit of searching to get to the articles you want.
-
Great for all levels, beginner to advanced.
-
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
| * | |
| !*.adoc | |
| !*.sh | |
| !.gitignore |
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
| {\rtf1\ansi\ansicpg1252\cocoartf1671\cocoasubrtf200 | |
| {\fonttbl\f0\fswiss\fcharset0 Helvetica;} | |
| {\colortbl;\red255\green255\blue255;} | |
| {\*\expandedcolortbl;;} | |
| \paperw11900\paperh16840\margl1440\margr1440\vieww10800\viewh8400\viewkind0 | |
| \pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\pardirnatural\partightenfactor0 | |
| \f0\fs24 \cf0 Larry McEnerney, Director of Chicago's Writing program\ | |
| \ | |
| Rule-based writing is for repeatable, lower-value writing.\ |
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
| package main | |
| import ( | |
| "crypto/ecdsa" | |
| "fmt" | |
| "io/ioutil" | |
| "log" | |
| "os" | |
| "github.com/ethereum/go-ethereum/accounts/keystore" |
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
| // For responsive inner elements. | |
| // Quick JS to get width of containing element and use it to proportionally size the contained element. | |
| let ad = document.getElementById("hktb_ad0119") // grab element | |
| // gets the width of the first positioned (i.e. has "position" attribute set) containing/parent element | |
| let desiredWidth = ad.offsetParent.offsetWidth | |
| ad.setAttribute("width", desiredWidth) | |
| ad.setAttribute("height", ad.getAttribute("width")) // Set height = width |
Moved here.
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
| // Attempt to convert Eth to Wei | |
| package utils | |
| import ( | |
| "log" | |
| "math" | |
| "math/big" | |
| ) | |
| // EthToWei converts eth to wei |
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
| package main | |
| import ( | |
| "io/ioutil" | |
| "log" | |
| "os" | |
| "path" | |
| "regexp" | |
| "strings" | |
| ) |
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
| pragma solidity >=0.4.15; | |
| // Proof of Existence contract, version 3 | |
| // https://blog.zeppelin.solutions/the-hitchhikers-guide-to-smart-contracts-in-ethereum-848f08001f05 | |
| contract ProofOfExistence3 { | |
| mapping (bytes32 => bool) private _proofs; | |
| // store a proof of existence in the contract state | |
| function _storeProof(bytes32 _proof) private { | |
| _proofs[_proof] = true; | |
| } | |
| // calculate and store the proof for a document |