Skip to content

Instantly share code, notes, and snippets.

View slota's full-sized avatar

John Slota slota

  • Wagestream
  • Mesa AZ
View GitHub Profile

Name: John Slota

Which Assignments and Why?

-- Which assignments did you choose to complete this week? -- Why did you choose these assignments? +- I chose the goals and jobs +- I like to plan goals to better myself and still need a job :)

Submitted Assignments

  1. Coinbase
  1. To read my book on JavaScript and do the tutorials
  • Currently I've read a couple chapters but I have not done the practive problems
  • In one year I've read the entire book and done all the end of chapter exercises
  • The resources really are just the book
  • This goal is important to me because I feel I would be a super competent javascript developer doing this and being able to self study would be a huge asset in my software developer career.
  1. Join a coding brigade/start the brigade
  • I've been in Pahlka posse and learned a lot, really like the idea of volunteer brigades
  • In one year I've been regularly going for 3 months to a coding brigade
  • The resources are the website, it has a list of all the brigades that you can join, by area
require 'pry'
class Deque
attr_reader :array
def initialize
@array = []
end
def push(var)
@array << var
To set up communication between two applications I would use websockets.
For n applications I would use websockets.
If they had to be in real time, this would be ideal because websockets do this.
@slota
slota / ScaleUp
Last active April 15, 2016 14:35
# Scale Up Submission Form
## Basics
### Link(s) to the PRs or Issues You Picked Up
-[#44 Job Scheduler](https://github.com/LookingForMe/lookingfor/pull/44)
### Talk about something from the pre-work that you didn't know about before this week.
-[Stubbing](https://robots.thoughtbot.com/how-to-stub-external-services-in-tests)
I didn't know you could set up Webmock as it's own stub. I thought you used it with VCR. So that was interesting. The other two
Part 1
What is nokogiri?
- A scraping tool
Part 2
Installing Nokogiri
- Gem
- Create API
Part 3
@slota
slota / pr-template.md
Created April 11, 2016 22:37 — forked from rrgayhart/pr-template.md
Modified Quick Left PR Template

What's this PR do?

Where should the reviewer start?

How should this be manually tested?

Any background context you want to provide?

Screenshots (if appropriate)

What gif best describes this PR or how it makes you feel?

What does the V3 iteration of stories to work on look like and what would I like to work on?
- Not sure where these user stories are, however if they are open issues which I assume they are,
I'd like to work on background workers with Beth, Angel List API connection, job view page, and zip locater, possibly tech searcher as well. Also User Loading sounds super interesting.
What kind of testing is the app using and do I not understand anything happening there that I should clarify?
- Testing is using RSPEC, nothing looks too crazy in the testing suite. Also factories are used as well.
Are there holes in the test coverage?
- There are a few holes, there is less than 90% test coverage, the we work remotely service needs boosting.
What are services and how are they being used here?