Skip to content

Instantly share code, notes, and snippets.

View donhamiltoniii's full-sized avatar
🎯
Focusing

Don Hamilton III donhamiltoniii

🎯
Focusing
View GitHub Profile
@donhamiltoniii
donhamiltoniii / node-express-ts-handlebars.md
Last active August 16, 2022 00:52
Instructions to bootstrap a BE environment with Node, Express, Handlebars, and Typescript

Node, Express, TypeScript, and Handlebars Setup (THEN Stack)

  1. mkdir <my-new-project>
  2. cd <my-new-project>
  3. npm i --save express express-handlebars nedb
  4. npm i --save-dev @types/express @types/express-handlebars @types/nedb @types/node ts-node typescript

Initial Directory Structure

package virtual_pet;
import java.util.Scanner;
public class VirtualPetApplication {
public static void main(String[] args) {
//Interact with a VirtualPet object in this method
VirtualPet theDangDog = new VirtualPet( "The Dang Dog", 25, 30, 0, 0 );

#Expectations

Individual

  • Be confident of my hard skills.
  • Break free of old bad habits.
  • Support others.
  • Be a good teammate.
  • Take ownership of learning.
  • Be adaptable.
  • Be successful.
# We Can Code IT Expectations
## Individual
- Learn the things!
- * Ask questions.
- Be open, relaxed, and have fun.
- Don't take things personally.
- * Don't be afraid of failure!
@donhamiltoniii
donhamiltoniii / ShippingCost.java
Last active March 30, 2019 17:43
Minor if/else issue
import java.util.Scanner;
public class ShippingCost {
private static Scanner input = new Scanner(System.in);
public static void main(String[] args) {
int shippingType;
double shippingCost, productCost, totalCost;
@donhamiltoniii
donhamiltoniii / 2019-columbus-expectations.md
Created December 8, 2018 16:21
WCCI 2019 Winter Expectations

Expectations

Personal

  • Learn current technology
  • Network and build business relationships
  • Learn interviewing skills
  • Be punctual
  • Respect peers
  • Reasearch
  • Maintain motivation
@donhamiltoniii
donhamiltoniii / rattleprofileparser.py
Created May 4, 2018 01:19
Help Max computerize snakes
#! usr/bin/env python3
#This script will compile lifetime rattle profiles of long term snakes and spit out their ID and a list of segment values, newest to oldest
#load required modules
import sys
import os
import re
import argparse
// Sync Settings