Skip to content

Instantly share code, notes, and snippets.

View Theartbug's full-sized avatar

A.Provost Theartbug

View GitHub Profile
@Theartbug
Theartbug / 301-bootcamp-notes.md
Last active April 23, 2018 19:38
RWD 11/20/17

12/11/2017 RESTful APIs

Random Notes

-Stack of our dev environment: - Client: localhost:8080 - Makes HTTP requests - API_url points toward server - Server: NodeJS, Express

  • Makes queries to DB
@Theartbug
Theartbug / 401-Devsign-half.md
Last active April 23, 2018 21:56
The first half of bootcamp ( design / css )

Career Week: Involved in Portland Tech

TechTown

Bailey's Tap Room

@Theartbug
Theartbug / 401-React-Redux-half.md
Last active April 23, 2018 21:57
The second half of bootcamp (react / redux)

Christine LaPorte Talk: Career Coach

Keys to getting a job:

  • Brand passion
    • research
  • Internal ally
    • best use of time
    • network hard, coffee
  • not job postings
  • can give a clue
@Theartbug
Theartbug / Backend-Notes.md
Last active April 6, 2018 02:27
Notes from backend bootcamp class

Asynchronous, Events, Node architecture

Node.js Architecture

  • node someFile.js will start the event loop process in synchronous-land
    • will end process after it knows there is nothing else to do
  • when asynchronous is present, the event loop stays active until the asynchronous event is finished.
    • will often return something with a callback
    • if there is no callback, the loop will not stay active waiting for a response
    • follows completion order not dispatch order
@Theartbug
Theartbug / CS50-notes.md
Last active October 6, 2018 20:37
CS50 Notes

Lecture 3

location: https://cs50.harvard.edu/2018/fall/weeks/2/

Steps to compiling a program

preprocessing

  • grabs externally linked content and brings into file

compiling

  • code is compiled down into assembly, which the computer understands
@Theartbug
Theartbug / NodeJSConf.md
Last active October 11, 2018 22:06
Node + JS Interactive Conference

A React Point of Vue - Divya Sasidharan, Lucro Global LLC

Components

  • vue separates logic and mock up
  • logic is specified in script tag
  • add the word functional to template to make it a functional component in Vue
  • conditionals
    • v-if="ice" and v-else for rendering

Stateful componentss

@Theartbug
Theartbug / java-language.md
Last active February 20, 2019 17:10
Java Fundamentals: The Java Language

Combined Summaries

Simple App

  • programs are executed via the java command on the command line
    • full class names including package name
  • programs are made up of statements
    • end with semicolon
    • separated by whitespace
  • comments add notes and hide statements
@Theartbug
Theartbug / Adobe_Tech_Conf_2019.md
Last active August 27, 2022 06:45
Adobe tech conference 2019

Code Reviews: Its not kindness, its diplomacy

Elodie Rafalimanana https://tinyurl.com/ydez8v94

The Problem

  • developers argue about code during a code review
    • "It does not make sense, its a horrible idea, you're doing it wrong, its just cosmetics"
  • causes inertia and animosity = inefficient
  • What are they actually arguing about?
@Theartbug
Theartbug / java-core-platform.md
Last active April 5, 2019 16:23
java-fundamentals: The Core Platform

In Summary

Persisting Objects with Serialization

  • serialization provides object persistence in files / databases
    • between processes / across networks
  • primitive types are implicitly serializable
  • Classes must implement Serializable
    • no methods to implement
  • ObjectOutputStream performs serializing / ObjectInputStream perofrms deserializing