Skip to content

Instantly share code, notes, and snippets.

View timomitchel's full-sized avatar
🎯
Focusing

Tim Tyrrell timomitchel

🎯
Focusing
View GitHub Profile

Keybase proof

I hereby claim:

  • I am timomitchel on github.
  • I am timomitchel (https://keybase.io/timomitchel) on keybase.
  • I have a public key ASDgBjipmXOhAqysD2RPi9GpRckv85kLvG5TbSRy0u9WtQo

To claim this, I am signing this object:

1. Become Turing Student
1.1 Do "Try Coding"
1.1.1 Confirm reservation
1.1.1.1 Pay reservation fee
1.1.2 Set reminder for reservation
1.1.3 Attend "Try Coding"
1.2 Complete application
1.2.1 Review application process
1.2.2 Practice logic questions
1.2.2.1 Look up sample logic questions online

Places to see in CO

Geographic Breakdown

East

Avoid! Simple.

North

Steamboat Springs

  • Description:
@timomitchel
timomitchel / Quick_Open_Editor.md
Last active July 1, 2019 05:14
How to configure your editor to open from the command line

Steps to Enable Shell Command

Atom

You can try opening Atom and clicking on the Atom tab to navigate to the Install Shell Commands prompt.

Atom-Shell-Commands

Open a terminal window and type atom .

@timomitchel
timomitchel / bash_profile_tab_completion.md
Last active September 9, 2019 03:17
For Students in Mod-0 to Add tab completion

Enabling Tab Completion in Terminal

Run: cd ~ to go home quickly from any directory. Make sure you are in your home directory.

Run atom .bash_profile to begin editing the .bash_profile file.

Copy and Paste this: [ -f /usr/local/etc/bash_completion ] && . /usr/local/etc/bash_completion into the top of the file.

@timomitchel
timomitchel / Practice.md
Created January 18, 2019 22:30
For Rachel to Fork

This is random text

More

  • than
  • before
  • Howdy
@timomitchel
timomitchel / Hotcoin.md
Created February 20, 2018 17:42
Hotcoin Project Pitch

[Hotcoin]

Pitch

This application crawls twitter for mentions of a particular cryptocurrency/coin within a 24hr period.

Problem

Cryptocurrency markets are incredibly speculative and highly volatile. Influencers on social media and from major news organizations have been using various tactics to drive price in a direction of their choosing. Many novice investors allow themselves to be persuaded without

@timomitchel
timomitchel / psql_homework.md
Last active January 10, 2018 19:45
PSQL Queries from Turing School

List all the students and their classes:

SELECT students.name, classes.name FROM enrollments JOIN students ON enrollments.student_id = students.id JOIN classes ON enrollments.class_id = classes.id;

List all the students and their classes and rename the columns to “student” and “class”:

SELECT students.name AS student, classes.name AS class FROM enrollments JOIN students ON enrollments.student_id = students.id JOIN classes ON enrollments.class_id = classes.id;

List all the students and their average grade:

@timomitchel
timomitchel / LittleShop.md
Created January 2, 2018 18:40
Little Shop DTR

Group Member Names: Tim Joo(PM), Kelley Jenkins, Timo Tyrrell

When are group members available to work together? What hours can each group member work individually? Are there any personal time commitments that need to be discussed? 7PM limit for weekdays. 10-5 Weekend. << Together time.

How will group members communicate? How often will communication happen, and how will open lines of communication be maintained? Slack Communication channel as first layer communication. Every day communicating Which feature(s) does each group member want to work on? Which feature(s) does each group member not want to work on? Do Cart together. Addres routes early Weakpoints to address: Timo-CSS, Kelley-Testing, Cart/Joins - Tim

What are you doing well as a pair programmer and collaborator?

I'm communicating well with my teammates and allowing them to feel relaxed and calm communicating with me. I'm keeping our groups moving forward and being kind to my partners while also encouraging them to provide input.

How do you use your strengths as a team member? I embody approachability so that I can leanr and teach as directly and effectively as possible in a team environment. I make sure my partners feel comfortable communicating and contributing on my team.