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
| # 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 |
| 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" |
####RAILS
- Database: development: Sqlite3, production: Postgres
- Authentication: Devise
- Authorization: CanCan
- Design: Bootstrap
- Admin Panel: Active_Admin
Some of this list is excerpted from Ryan Biggs' Post on Stack Overflow
[ x ] Have a pet project
[ x ] Learn all the time
[ 0 ] Test, Test, Test (Rspec and MiniTest)
[ x ] Attend the local user groups
[ x ] Share all the cool shiny things you come across
[ x ] Contribute back to open source
[ x ] Be active, helpful and constantly visible in the community
[ x ] Keep a blog
https://realpython.com/blog/python/the-ultimate-flask-front-end/ https://rubygems.org/gems/react-rails/versions/1.0.0
have to have flask, bower, yomen installed http://yeoman.io/generators/ for front end
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: