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
{ | |
"basics": { | |
"name": "Nizar Khalife Iglesias", | |
"label": "Software Engineer & Educator", | |
"email": "[email protected]", | |
"summary": "Puerto Rican senior software engineer and educator with over 10 years of industry experience. I'm mostly interested in JavaScript, but have used many other languages. My passion is teaching people about computer science. I try to practice kindness in everything I do. A joke or two can't hurt either.", | |
"location": { | |
"city": "Miami", | |
"countryCode": "US", | |
"region": "Florida" |
For your Ironhack final project, you have 2 weeks to develop an idea of your choice. You will present your final project at the Hackshow.
This document contains all the relevant information pertaining to the final project phase of the course. Let's start with some basic facts to keep in mind.
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
# rails generate mailer ContactMailer | |
class ContactMailer < ApplicationMailer | |
def contact_email(params) | |
@name = params[:name] | |
self.mail({ | |
to: "[email protected]", | |
subject: "SiteContact" | |
}) | |
end |
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
Rails.application.routes.draw do | |
# ... | |
# Add a get route for listing posts | |
get '/posts' => 'posts#index' | |
# ... | |
end |
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
source 'https://rubygems.org' | |
gem 'sinatra' |
NewerOlder