Skip to content

Instantly share code, notes, and snippets.

View jonathandavidlewis's full-sized avatar
💭
Working on SD Tech Hub!

Jonathan David Lewis jonathandavidlewis

💭
Working on SD Tech Hub!
View GitHub Profile

| # | DAY | Skill Name | Skill Description | Why | |---|------|-----------------------------------|-----------------------------------------------------------------------------------------------------------------------------

@jonathandavidlewis
jonathandavidlewis / finding_causal_source.md
Created July 30, 2018 23:17
A process for tracking down causal source files

Who made this DOM node?

A process for finding what source files ultimately generated specific DOM elements.

Scenario

You have been tasked with making changes to an existing page on your company website.

  • When the user clicks this image, instead of this image modal, have it load up a React component.

Initially, this seems pretty straightforward. Just find the code that renders this and swap out part of it.

@jonathandavidlewis
jonathandavidlewis / keybase.md
Created April 12, 2018 20:41
keybase claim

Keybase proof

I hereby claim:

  • I am jonathandavidlewis on github.
  • I am jonathandavidlew (https://keybase.io/jonathandavidlew) on keybase.
  • I have a public key ASArLOPBX6lgTQlFeClrvay0AAhShDsXqkI2eH6g9E3O7wo

To claim this, I am signing this object:

@jonathandavidlewis
jonathandavidlewis / How-to-Setup-ManyCam.md
Created December 15, 2017 20:19
How to setup ManyCam

For Mac

@jonathandavidlewis
jonathandavidlewis / how-to-host-your-zoom-meeting.md
Last active March 3, 2021 18:59
How to host a zoom meeting with your meeting ID

How to host a Zoom Meeting with your meeting ID

From the app:

Even better: Configure the app to use your ID by default

First, login. Then:

@jonathandavidlewis
jonathandavidlewis / Https-on-Node-Server.md
Last active December 20, 2017 20:51
How to setup https on a Node server

How to Setup Https on a Node server

Before

const app = require('./server.js');
const http = require('http');
const port = process.env.PORT || 8080;

const server = http.createServer(app);
@jonathandavidlewis
jonathandavidlewis / Manage-AWS-Instance.md
Created November 4, 2017 19:13
How to manage your AWS instance
@jonathandavidlewis
jonathandavidlewis / Resize-AWS-Instance.md
Last active November 4, 2017 19:18
How to Resize your AWS instance

How to resize your AWS Instance

Stop your instance

Stop Instance

Change your instance type

@jonathandavidlewis
jonathandavidlewis / How-to-figure-out-apis.md
Last active November 8, 2017 17:24
How to figure out APIs
@jonathandavidlewis
jonathandavidlewis / Dynamic-Programming.md
Last active November 3, 2017 04:21
Dynamic programming

Dynamic Programming

Jamie Long

Efficiency is key.

A technique for producing 'fast' algoristhms for solving kinds of 'slow' recusive sollutions.

Useful when: