Skip to content

Instantly share code, notes, and snippets.

View DanielEFrampton's full-sized avatar

Daniel Frampton DanielEFrampton

View GitHub Profile
@DanielEFrampton
DanielEFrampton / mod_0_session_1_readings.md
Last active August 15, 2019 16:53 — forked from damwhit/mod_0_session_1_readings.md
Mod 0 Session 1 Readings

Session 1 Readings and Responses

The readings and responses listed here should take you approximately 60 minutes.

To start this assignment, click the button in the upper right-hand corner that says Fork. This is now your copy of this document. Click the Edit button when you're ready to start adding your answers. To save your work, click the green button in the bottom right-hand corner. You can always come back and re-edit your gist.

1. Learning Fluency by Turing alum Sara Simon (30 min)

  • Your key take-aways OR how you're going to implement specific points (minimum 3):
  • I found Sara's overall argument about the importance of gaining "fluency" through diligent work and rote memorization very persuasive and encouraging, because I had a similar experience to hers of being encouraged to throw myself into a project but running up against the roadblock of not having a deep enough fluency in tech to know what the
@DanielEFrampton
DanielEFrampton / beginners_guide_to_git.MD
Last active August 27, 2019 20:33
Beginner's Guide to Git

A Beginner's Guide to Git

I'm training to become a software developer with Turing School of Software and Design, and this is what I know about Git so far. I hope it helps!

Introduction

Git is a version control system. As such, it allows a software developer or (better) a group of developers to keep track of different versions of the software (or other digital project) they are developing. Developers can use Git to take snapshots of the files involved in the project (called "commits") with associated messages describing the changes made since the last snapshot. This allows them to keep track of changes, roll back to old snapshots if things aren't working, and have a framework for building a workflow around. This all takes place in a specific directory (i.e., a folder and its sub-folders) where Git is "initialized," which is called a "local repository" ("repo" for short).

When combined with an online repository service, typically GitHub, developers can "push" (upload) or "pull" (download)

Session 3 Practice Tasks

The assignments listed here should take you between 1.5 and 2 total hours.

To start this assignment:

  1. Click the button in the upper right-hand corner that says Fork. This is now your copy of the document.
  2. Click the Edit button when you're ready to start adding your answers.
  3. To save your work, click the green button in the bottom right-hand corner. You can always come back and re-edit your gist.

Template for DTR Memo Project: BattleShip

Group Member Names: Daniel Frampton, Ana Pérez Santos

Goals and Expectations for the Project (What does each group member hope to get out of this project? What do we want to achieve as a team? How will we know that we're successful?):

  • Top priority is learn
  • Learn how to collaborate at our own pace as a team, and stay in sync
  • Make parallel contributions
  • Finish iteration 3
@DanielEFrampton
DanielEFrampton / stand_up_agenda
Created October 21, 2019 23:03
Futbol Project Team Stand-Up Agenda
1) What are we working on?
2) What's the status of that, and estimated completion time?
3) Code review on-demand
4) Kanban check-in
@DanielEFrampton
DanielEFrampton / apis_for_beginners.md
Last active October 5, 2020 14:42
APIs for Beginners

APIs for Beginners

I'm a software developer in training (and in fact) at Turing School of Software & Design. You might not know it, but teaching others is one of the best ways to learn something yourself--and you bring people along with you in the process. Towards that end, as I'm learning about APIs I'll write this guide. I hope it benefits you and inspires you to share your own learning in some way with others!

What Is an API?

API stands for Application Programming Interface, but that's not very helpful. In practice, an API is an outward-facing layer surrounding an application that receives a request, processes it internally, and sends back a response. Any API has certain expectations about the format of the request which need to be followed for it to be able to process it and respond.

In the context of web development, most APIs are on remote servers (computers running elsewhere that you can communicate with through the internet using your browser), which means the requests and responses will be

@DanielEFrampton
DanielEFrampton / sql_oddities.md
Last active January 23, 2020 20:27
SQL Oddities

SQL Oddities

SQL Oddities by David Bowie

Think you're hot stuff, huh? You can write a query, eh? Well, try these concepts on for size. SQL is stranger than you think.

These are lessons I learned while completing Turing's Intermediate SQL Exercises 1 and 2. See my previous guide for introductory SQL concepts. (I recommend listening to David Bowie while reading. And just generally, I suppose.)

Aggregate Functions

@DanielEFrampton
DanielEFrampton / peer_mentoring_overview.md
Last active January 27, 2020 19:13
Peer Mentoring Overview

Landslide: Rock-and-Pebble Peer Mentoring @ Turing

Why Peer Mentoring?

In the Back-End Engineering program at Turing School of Software & Design, we've been using a student-developed tool called Paired to facilitate one-off tutoring sessions between upper-module (i.e., students farther along in the program) and lower-module students. This has been a great resource, and has been embraced by the back-end program (to the extent that it appears on the front page of the curriculum). We also have access to a wide pool of mentors, made up of alumni and other developers in the Denver area, who volunteer to be paired with Turing students and available for several hours a week to mentees.

Our observation while using these resources was that there's room for an additional resource between one-off peer tutoring and ongoing alumni mentoring: peer mentoring, longer-term mentoring re

@DanielEFrampton
DanielEFrampton / api_project_start_to_finish.md
Last active September 19, 2020 21:36
An API Project from Start to Finish

An API Project from Start to Finish

I'm a back-end software engineer in training (and in fact!) at Turing School of Software & Design. In the third of four modules in our program we were assigned a project of creating an API using the Rails framework. For your benefit and amusement, I've documented the entire process and the resources that helped me along the way.

1. Create a New Rails App

Creating a new Rails project from scratch is something that happens so infrequently that it's perpetually been something I google. My mentor (through Turing's network of mentors) who is a Rails developer in the Denver area agreed, saying that he's never once created a new Rails app from scratch in his current position. That being said, I've been enjoying creating new greenfield (i.e., brand new) projects for hobby coding or for side projects, and wanted to use this opportu

@DanielEFrampton
DanielEFrampton / setting_up_paired_env.md
Last active February 23, 2020 23:15
Setting Up Paired Development Environment

Setting Up Paired Development Environment

OS-Level Setup

Install or Update the Xcode application:

  • Open the Mac OSX App Store, search for Xcode, and install it, or update it if that option is shown. It is a > 9GB download so expect some time.
  • Once it's downloaded, open the Xcode app, agreed to the end-user license agreement, enter your password as prompted, and allow the components to download.

Repo Setup