Skip to content

Instantly share code, notes, and snippets.

View jendiamond's full-sized avatar
🏠
Working from home

JenDiamond jendiamond

🏠
Working from home
View GitHub Profile
@jendiamond
jendiamond / Postman.md
Created September 2, 2015 06:58
Postman helps you be extremely efficient while working with APIs.

Postman helps you be extremely efficient while working with APIs.

With Postman, you can construct simple as well as complex requests quickly, save them for later use and analyze the responses sent by the API. Postman can dramatically cut down the time required to test and develop APIs. Postman adapts itself for individual developers, small teams or big organizations equally well.

1. Fork someone else's Pinterest or Blog repository. 
 Click on the fork button on GitHub. It is at the top right of the page.
This will clone a copy to your personal GitHub page.


Clone it to your local machine.
On your personal GitHub page
  click on the clipboard icon, this will copy it. Then paste it in your terminal.
•	$ git clone [email protected]:LARailsLearners/three-in-one_pinterest_instructions.git
•	create a branch $ git checkout -b branch_name
@jendiamond
jendiamond / featsofdaringnotels.md
Last active August 26, 2015 18:52
Feats of Daring Notes

Met with David at Andante 8-26-2015

Worked on Feats of Daring app/models/cat.rb

class cats
  def moeow
  end
end
# write a function called find_primes, where you pass in an integer (like 100), and your function will calculate all the prime numbers from 1 - 100
# as simple and ruby esque as possible -- just plain brute force, no need to get really fancy (unless you want to) because we will likely have a follow up or two to this one
# calculate and return primes, that is -- don't puts or print please
require 'prime'
def find_primes
@jendiamond
jendiamond / fizzbuzz2.rb
Last active August 29, 2015 14:27
FizzBuzz 2
def fizzbuzz
(1..100).each do |n|
if n % 15 == 0
puts "fizzbuzz"
elsif
n % 3 == 0
puts "fizz"
elsif
n % 5 == 0
puts "buzz"
@jendiamond
jendiamond / vanilla_rails.md
Last active December 2, 2015 09:12
vanilla rails
@jendiamond
jendiamond / la_suggestions.md
Last active August 29, 2015 14:22
Los Angeles Suggestions for Alexei Elfenbein

Music Venues

=====

The Handbag Factory

1336 South Grand Ave. (Downtown)

This is a great place to go for inspiration and to meet interesting people and possibly a place to play.
diy music and art space in downtown LA / remains of an old handbag factory

@jendiamond
jendiamond / react.md
Last active August 29, 2015 14:22
React Tutorial Notes
@jendiamond
jendiamond / la_rails_learners_upcoming_phases.md
Last active August 29, 2015 14:22
la_rails_learners_upcoming_phases

Phase 3 - Add Bootstrap - Issue #3

"Bootstrap, a sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development."

Bootstrap is a framework that makes it easy for a developer to create a nice design for a website or web application. There are predefined css classes for creating common components such as widgets, typography elements, lists, forms, and more. The framework also provides Javascript which makes it easy to create things like modals, popovers, scrollspies, accordions, and more. Their documentation is very thorough, providing example code for most, if not all of the components that Bootstrap provides. ~ Go Tea Leaf

Some possibly helpful Links: