Skip to content

Instantly share code, notes, and snippets.

View bertoort's full-sized avatar
🍦

Roberto Ortega bertoort

🍦
View GitHub Profile
@bertoort
bertoort / standards_for_developers.md
Created April 30, 2020 17:26
What makes a senior software engineer?

| Standard | Junior | Mid | Senior

@bertoort
bertoort / rasp-beacon.md
Created January 19, 2019 22:30
Friend Beacon Notes

Friendship Beacon

Hardware

  • Pi3 with charging cable, sd card, and initial monitor and keyboard to set up
  • miniboard
  • 4 cables with pointy end and receiving end
  • two resistors
  • button
  • led

Photo Scavenger Hunt

  • Taking a nap 100
  • On a basketball court 100
  • Slice of pizza 50
  • In front of a political bumper sticker 50
  • Car with a parking ticket 50
  • With someone in a Galvanize backpack 50
  • Fire! 50
  • With a face tattoo 200
@bertoort
bertoort / full-stack-app.md
Last active March 5, 2024 20:43
Build a RESTful, full stack CRUD application.

Full Stack Application

By the end of this exercise you will build a full stack application with a client, server, and database.

** NOTE ** Do not copy and paste. This project is about solidifying concepts and finding gaps in your knowledge. It is OK to look back at previous work, however, you should understand what every line does and be able to write from scratch.

Tasks

0. Plan

Stand down

  • 22 people on learn
  • Set up list
    • Login to Learn!
    • Don't stress about ZSH and Github SSH

Homework??

@bertoort
bertoort / .vimrc
Created April 26, 2017 15:53
Starter .vimrc file
" Main Configuration
let mapleader="\<Space>"
syntax on
set shell=bash
set number
set hlsearch
filetype off
filetype plugin indent on
set tabstop=2
set shiftwidth=2
// Objective - Describe and implement the following native array methods:
// forEach, some, every, filter, map, and reduce.
// FOREACH
// There are a number of helpful functions built-in
// to JavaScript's regular arrays. These methods
// are both higher order functions and **functional**
// in that they do not manipulate the array they
// are working on. That is, they are non-destructive.
@bertoort
bertoort / robot-and-batteries.md
Last active January 30, 2018 16:17
Brain Teaser Warm-Up

Problem

A robotic technology startup is located in San Francisco. The CEO has 3000 battery packs that he wants to transport with Danny (the robotic bird) to his other branch, across a 1000-kilometer stretch of land. The owner has only robotic bird, which carries a maximum of 1000 battery packs at any moment in time, and consumes one battery pack every kilometer it travels.

Question

What is the largest number of battery packs that can be delivered to the branch?

@bertoort
bertoort / docker.md
Last active September 26, 2016 19:56
Docker introduction

Docker


Objectives

  • Define Docker
  • Describe the difference between VM vs Containers