Skip to content

Instantly share code, notes, and snippets.

@Dustin-Mikusko
Dustin-Mikusko / mod_0_class.txt
Last active July 30, 2019 02:27
Mod_0_class_gist
Class: Playlist
Attributes:
Playlist_name (String)
Number_of_songs (integer)
Repeat (boolean)
Methods:
rename (changes Playlist_name)
@Dustin-Mikusko
Dustin-Mikusko / mod_0_top_down_design.txt
Last active July 30, 2019 01:32
Mod_0_Top_Down_Design
Walking a Dog
1 Summon Dog
1.1 Whistle for dog
1.1.1 Compress Lips
1.1.2 Exhale forcefully
1.2 Call dog's name
1.2.1 Recall dog's name
1.2.2 Use vocal cords to say name aloud
1.3 Pat thigh with hands
@Dustin-Mikusko
Dustin-Mikusko / session-4-guide-to-git.md
Last active July 29, 2019 00:00
Beginners Guide to Git

Beginner's Guide to Git

Understanding Git will help you "Git With It" when it comes to software development!

There are two main things to know about Git:

  • Local Use
  • Remote Use

Local Use

Git is a system to use that helps track and save changes made to a file or a project. Files can range from anything to simple text, to videos and photos, to pages of software code. For students of Turing, we are given a Mac, so here I will be discussing how to use the Mac Terminal to perform git actions locally. There are several important functions of git to understand:

  1. git init
  • git init is the command to tell git to start tracking a particular file. Once initialized, git can then track everything within the directory. In the terminal, it will look like this:

Session 4 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.
@Dustin-Mikusko
Dustin-Mikusko / Turing-Career-Development-Mod-0-Capstone.md
Last active July 22, 2019 04:55
Turing Career Development - Mod 0 Capstone

Screen Shot 2019-07-21 at 10 13 26 PM

Refelction Respones

  1. What is your greatest strength and how do you know?
    • If I had to say what I thought my greatest strenght is, I'd say that I am very good at working in a team atmosphere, whether in a support role, or in a leadership role. I was the lead trainer in my previous job, which required me to both lead and collaborate with others among the team. I felt effective in the role as I saw positive results with new hires and new methods of training. I was also told by many of my superiors and colleagues that I was good at what I did. The PAIRIN results were not far off from my own view. PAIRIN says my strongest category is CIVIC, saying I am attuned to social and emotional cues, and that I am adept at interacting with highly effectives teams.
  2. How do you work best?
  • It may sound like a cliche, but I've always sa

Mod 0 Capstone - Dustin Mikusko

Day 1: Computer Setup, HTML, and Gear Up

Read Chapters 1 and 2 from Structure and Text

  1. On a website, what is the purpose of HTML code?
    HTML code is the language that describes the structure of web pages. It defines items such as headings, sub-headings, paragraphs, and body of texts.
  2. What is the difference between an element and a tag?
    Elements are the characters that are inside angled brackets. Elements are usually made up of two tags - an opening tag and a closing tag. The closing tag has an extra forward slash in it. Each element tells the browser something about the information that sits between its opening and closing tags. The terms are often used interchangeably; however, an element comprises the opening tag and the closing tag and any content tha tlies between them.
  3. Why do we use attributes in HTML elements?
    Attributes tell more about elements and provide additional information about the content of an element.