A Pen by Rachel Warbelow on CodePen.
This file contains hidden or 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
| <html> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <title>Document</title> | |
| </head> | |
| <body> | |
| Testing codepen.io github integration | |
| <div class="test"></div> | |
| </body> | |
| </html> |
This file contains hidden or 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
| last_name | first_name | phone_number | |
|---|---|---|---|
| Wiegand | Ephraim | 526-193-0139 | |
| Hahn | Zora | 525.396.5836 | |
| Steuber | Lewis | 379.448.8598 | |
| Roberts | Keven | 166-617-4236 | |
| Hirthe | Noemi | 493-468-5927 | |
| Glover | Oliver | 333.955.4800 | |
| Cronin | Leatha | 376.606.8627 | |
| Schmidt | Corrine | 496.760.3432 | |
| Kerluke | Durward | 409.851.8071 |
Sign up for a free Github account at https://github.com/.
This webpage has instructions for installing Git on Mac, Windows, and Linux machines.
- Write a program that can convert Arabic numbers 1-3000 to Roman numerals. For example:
converter = RomanConverter.new
converter.to_roman(6)
=> "VI"
converter.to_roman(14)
=> "XIV"- Whiteboarding
- Refactoring techniques
- Small JavaScript projects
- Front-end design
- Advanced Command Line
- Sonic Pi
- iOS development
- Building a gem
- Data Structure and Algorithms
- Technical Interview Prep
During our session, we'll learn how to test model validations.
Clone this app: git clone -b model-testing [email protected]:turingschool-examples/belibery.git.
- add route for
new_user_path - create a
UsersControllerwith new action - create
new.html.erb - generate user model with
password_digeststring field - uncomment
gem 'bcrypt'in Gemfile and addhas_secure_passwordin User model - add
createaction in UsersController - implement logic for creating a user
- set
session[:user_id]in create action
- Create a
publicfolder withinapp. This is where you will store your css, javascripts, and images - Create a file
application.csswithinapp/public. This is where you will put your custom CSS. - Inside
app/views, create a filelayout.erb. This will automatically render around any other.erbfile that you specify to render in your route block. Add the following code to thelayout.erbfile:
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="/application.css">
My Sinatra Application