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
function execute (someFunction, value) { | |
someFunction(value); | |
} | |
execute(function(word) { consnole.log (word) }, "hello"); |
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
var http = require("http"); | |
function onRequest (request, response) { | |
console.log("Request Recieved"); | |
response.writeHead(200, {"Content-Type": "text/plain"}); | |
response.write("Hello World"); | |
response.end(); | |
} | |
http.createServer(onRequest).listen(8888); |
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
var http = require("http"); | |
function start() { | |
function onRequest(request response) { | |
console.log("Request recieved"); | |
response.writeHead(200, {"Content-Type": "text/plain"}); | |
response.write("Hello World"); | |
response.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
// Configuration | |
$column-width: 60px; | |
$gutter-width: 20px; | |
$columns: 12; | |
// Column Widths | |
@mixin grid($i) { | |
width: $column-width * $i + $gutter-width * ($i - 1); | |
} | |
@mixin grid-plus($i, $plus) { |
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
function makeAddFunction(amount) { | |
function add(number) { | |
return number + amount; | |
} | |
return add; | |
} | |
var addTwo = makeAddFunction(2); | |
var addFive = makeAddFunction(5); |
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
<img src="images/logo.png" alt="It's a Square"> |
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
<!-- make sure to keep the class of 'fullBg' --> | |
<img src="images/bg_body_01.jpg" height="800" width="1280" alt="Body Background" class="fullBg"> |
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
var launch_date = "08/14/2012"; | |
var success_message = "We'll be in touch shortly!"; | |
var error_message = "Something went wrong, Try again"; |
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
<?php | |
// Email settings | |
// Replace below with your email credentials | |
$site_owners_email = '[email protected]'; // Replace this with your own email address | |
$site_owners_name = 'Jason Calleiro'; // replace with your name | |
$email_subject_line = "Website launch form"; // Subject on email that you recieve | |
// | |
// Replace with your social & contact credentials. |
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
<?php | |
// Email settings | |
// Replace below with your email credentials | |
$site_owners_email = '[email protected]'; // Replace this with your own email address | |
$site_owners_name = 'Your Name'; // replace with your name | |
$email_subject_line = "Sublject line on form"; // Subject on email that you recieve | |
// | |
// Replace with your social & contact credentials. |