-- 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 :)
- Coinbase
- I don't know anyone who works here
- https://github.com/coinbase
- https://github.com/coinbase/coinbase-php, https://github.com/coinbase/coinbase-node, https://github.com/coinbase/coinbase-java
- Ruby, Node.js, postgreSQL, MongoDB, Redis, Objective-C (for iOS), and Java (for Android).
- Tech I've worked with => Ruby, Node.js, postgreSQL
- Tech I'm familiar with => MongoDB, Redis
- Tech I have no clue, => Objective-C and Java
- They have a meetup this Wednesday, http://www.meetup.com/SF-Bitcoin-Devs/events/220908637/
- FizzBuzz, 90 minute self alogrithm
- 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.
- 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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'pry' | |
class Deque | |
attr_reader :array | |
def initialize | |
@array = [] | |
end | |
def push(var) | |
@array << var |
A JavaScript version of Space Invaders.
Visit [http://shannonpaige.github.io/turing-invaders/] to play the game.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Part 1 | |
What is nokogiri? | |
- A scraping tool | |
Part 2 | |
Installing Nokogiri | |
- Gem | |
- Create API | |
Part 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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? |
NewerOlder