Skip to content

Instantly share code, notes, and snippets.

View TravisBorgsmiller's full-sized avatar

Travis Borgsmiller TravisBorgsmiller

  • Boulder/Greater Denver area
View GitHub Profile
def hash_method(num)
number = num
roman_hash = { "M" => 1000, "CM" => 900, "D" => 500, "CD" => 400, "C" => 100, "XC" => 90, "L" => 50, "XL" => 40, "X" => 10, "IX" => 9, "V" => 900, "IV" => 4, "I" => 1}
send_back = []
roman_hash.each do |key, value|
if value < number
send_back << key
letter_amount = number / value
remainder = number % value
send_back << letter_amount
The structure:
Name of the recipient:
Company Name
Dept Name
Email address
Paragraph 1:
Introduce yourself with “what” you are professionally combined with “who” you are as a human being (personal attributes).

Please describe the current vision you have for your career. What are the values that will drive your job search? What are your goals for your job search? What kind of role do you see yourself pursuing in your job search?

For me the values I place on my first job will be the size of the company, as I don't want to work for a really small company that has limited resources, I would prefer to work at a company that has lots of mentorship and willingness to nurture junior developers. A junior role working alongside or directly underneath a senior developer would be ideal.

Based on what you wrote above, please write a refined summary statement for your professional story:

I want to work in a nurturing environment that encourages growth and development among all employees.

Please list the top 3-5 industries and companies you'll pursue in your job search as of right now.

Opening line - Name of method(GET), the path(www.example.com), and HTTP version(HTTP/1.0).
Heading line(optional) - User-agent: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0) is information about request,
Accept: text/plain, text/html is the details of the type of info for an acceptable response.
Blank line
Message body(optional)

Response
HTTP/1.0 200 OK

Project Feedback Name: < Travis >

Partner: < Alexis >

Project Reflection

What is one thing that went unusually well during this project? Collaboration outside of class over slack was more extensive than any other project I have worked on at Turing.

In hindsight, is there anything you would have done differently? I would have tried to communicate better about my schedule outside of class for slack communication, as my schedule during this project wasn't as flexible as I would have liked.

Project Feedback Name: < Travis >

Partner: < Chase >

Project Reflection

What is one thing that went unusually well during this project? Collaboration outside of class over slack was more extensive than any other project I have worked on at Turing.

In hindsight, is there anything you would have done differently?

Project Feedback Name: < Travis >

Partner: < Kelly >

Project Reflection

What is one thing that went unusually well during this project? Collaboration outside of class over slack was more extensive than any other project I have worked on at Turing.

Paired Project Feedback Name: < Travis Borgsmiller >

Partner: < Jordan Williams >

Project Reflection

What is one thing that went unusually well during this project?

The ability to work together as well as apart was amazing. It seemed that we could pick up where we left off together on

@TravisBorgsmiller
TravisBorgsmiller / Intermission_work
Created January 26, 2020 08:05
MVC and CRUD functionality
Define CRUD.
Create, Read, Update, Destroy/delete
Define MVC.
Model, View, Controller
What three files would you need to create/modify for a Rails application to respond to a GET request to /tasks, assuming you have a Task model.
A model, a controller, and a view file.
What are params? Where do they come from?
params are objects that can be manipulated in ruby. They come from the url.
Check out your routes. Why do we need two routes each for creating a new Task and editing an existing Task?
One route is the form the user fills out, and another route is where the information gets displayed.
When I got out of high school I wasn't sure what I wanted to do. I joined the army reserves and shipped to basic training
a week after graduation. From there I worked every kind of entry level job, from delivery driver, car salesman, hotel desk agent, warehouse logistics, you name it.
Working these jobs made me realize that no matter what I did, I wanted to find solutions for all the really difficult problems
that nobody else wanted to or could solve. At the warehouse I enjoyed finding difficult sales orders that other people couldn't locate in stock.
As a delivery driver I enjoyed taking the hard to find address orders, in car sales I would enjoy taking on customers that
many people stereotyped as difficult to work with, and as a hotel desk agent the unique customer issues would always
give me the most joy to solve.
These experiences came together perfectly when I found programming. I realized that programming could be viewed as a job
where you come up with unique solutions to problems that peop