Skip to content

Instantly share code, notes, and snippets.

@ncalibey
ncalibey / example.php
Created March 29, 2018 23:49
Example of embedding PHP in HTML
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Example</title>
<meta charset=“utf-8” />
</head>
<body>
<main>
<?php
$money = '10';
@ncalibey
ncalibey / rps_bonus.rb
Created June 11, 2017 22:21
Ruby and YAML files for the Rock Paper Scissors Bonus Features exercise @launchschool
# rps_bonus.rb
require 'yaml'
MESSAGES = YAML.load_file('rps_bonus.yml')
VALID_CHOICES = { 'r' => 'rock',
'p' => 'paper',
'sc' => 'scissors',
'l' => 'lizard',
'sp' => 'spock' }
@ncalibey
ncalibey / mortgage_calculator.rb
Last active June 5, 2017 23:19
Code done for the Mortgage / Car Loan Calculator exercise @ Launch School
# mortgage_calculator.rb
require 'yaml'
MESSAGES = YAML.load_file('mortgage_calculator_messages.yml')
def valid_integer?(num)
Integer(num)
rescue ArgumentError
false
end