-
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
// 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 |
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
{\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
* | |
!*.adoc | |
!*.sh | |
!.gitignore |
Table of Contents
- Relative Luminance Definition: Formulae
- https://collectiveaccess.org/
- Massive tool. Requires MySQL DB, web server, and two binaries:
- Pawtucket
Good resource. Many cheatsheets at the bottom of article.
Source: Global Investigative Journalism Network, "Digital Security". Available: https://gijn.org/digital-security/
Digital security basics.
-
https://docs.adyen.com/api-explorer/#/CheckoutUtility/v1/originKeys
-
All REST endpoints are POST endpoints.
-
All POST requests should have the following headers:
- "Content-Type: application/json"
-
"X-API-KEY: $YOUR_KEY"