Skip to content

Instantly share code, notes, and snippets.

View will0101's full-sized avatar
🌴
On board the SS Life

William Bogans will0101

🌴
On board the SS Life
View GitHub Profile
https://www.zillow.com/homedetails/Crofton-Way-South-San-Francisco-CA-94080/2119317023_zpid/?
https://www.zillow.com/homedetails/1826-Poggi-St-453-113-Alameda-CA-94501/2086304165_zpid/
https://www.zillow.com/homedetails/930-16th-St-Oakland-CA-94607/2083461105_zpid/
https://www.zillow.com/homedetails/541-Chester-St-Oakland-CA-94607/24739156_zpid/
https://www.zillow.com/homedetails/897-34th-St-6151639-Oakland-CA-94608/2088637961_zpid/
https://www.zillow.com/homedetails/3419-68th-Ave-Oakland-CA-94605/24786046_zpid/
https://www.zillow.com/homedetails/1055-48th-St-7695859-Emeryville-CA-94608/2082826371_zpid/
https://www.apartments.com/3-br-1-bath-house-323-center-st-oakland-ca/qkpjwhz/
https://www.apartments.com/674-23rd-st-oakland-ca/gbtxlpx/
https://www.apartments.com/3-br-15-bath-house-3147-filbert-street-oakland-ca/fqckc1v/
@will0101
will0101 / Product.js
Last active August 8, 2019 19:53
For medium article
class Product {
constructor(name, description, price) {
this.name = name;
this.description = description;
this.price = price;
this.reviews = [];
}
addReview(review) {
try {
class Car {
constructor(brand, color) {
this.brand = brand;
this.color = color;
this.speed = 60;
}
accelerate() {
this.speed += 10;
}
redo my website
@will0101
will0101 / Query.md
Created April 8, 2019 18:11
Psedocode SPD 1.4 Scholarship query

The goal of this action is to match the scholarships we have collected and pair them with the right student

  1. Get the information of the current student.
  2. Get all of the scholarships we have gathered.
  3. Access the currents students information i.e GPA and ethnicity.
  4. Compare the information on the current student to scholarships from step 2.
  5. Send back the scholarships that only match the information on the current student.