This file contains 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
<article id = "page-contact" class="page-round"> | |
<!-- Contact --> | |
<header> | |
<h2>Contact</h2> | |
</header> | |
<p>Email [email protected]</p> | |
<?php | |
if (isset($_POST['submit'])) { | |
$dbh = new PDO('mysql:host=localhost;dbname=register', 'root', '', array( | |
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION, |
This file contains 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
<!DOCTYPE html> | |
<!-- @ Stephen O'Connor --> | |
<html lang="en"> | |
<head> | |
<title>TODO supply a title</title> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
</head> | |
<body> | |
<header> |
This file contains 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
/* Font & Reset */ | |
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0} | |
h1{font-family: 'Roboto', sans-serif;font-size: 2em} | |
p{font-family: 'Droid Sans', sans-serif;} | |
<link href='http://fonts.googleapis.com/css?family=Droid+Sans|Roboto' rel='stylesheet' type='text/css'> |
This file contains 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
Cut and paste: | |
Position the cursor where you want to begin cutting. | |
Press v to select characters (or uppercase V to select whole lines). | |
Move the cursor to the end of what you want to cut. | |
Press d to cut (or y to copy). | |
Move to where you would like to paste. | |
Press P to paste before the cursor, or p to paste after. | |
Copy and paste is performed with the same steps except for step 4 where you would press y instead of d: |
This file contains 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
Returns an expression | |
Sort of optional | |
Only in function body | |
Return sends something back to the caller | |
Stops execution of the function | |
More than one | |
Can be anything or nothing | |
Warning Auto semicolon insertion |
This file contains 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
### NetBeans ### | |
nbproject/* | |
build/ | |
nbbuild/ | |
dist/ | |
nbdist/ | |
nbactions.xml | |
nb-configuration.xml | |
.nb-gradle/ |
This file contains 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
git init // Initialize | |
git add . // add all | |
git rm --cached name_of_file // gitignore file | |
git reset // unadds all files | |
git reset HEAD~1 // uncommit | |
git commit -m 'First commit' | |
git remote add origin "remote repository URL" | |
git remote -v // check remote | |
git pull origin master | |
git push origin master |
This file contains 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
# .gitignore for ASP.NET MVC / Windows Azure development | |
# Original file: https://gist.github.com/3318347 by @codingoutloud | |
## Github doc on ignoring files: https://help.github.com/articles/ignoring-files | |
## The man page for .gitignore (referenced by github): http://man.cx/gitignore | |
## Of possible interest (can be complex): https://github.com/github/gitignore | |
# Troubleshooting | |
# 1. If you add a .gitignore file to an existing repo (or significantly change one), you may want | |
# to force it to act as though the new/updated .gitignore was in force the whole time. | |
## http://stackoverflow.com/questions/1139762/gitignore-file-not-ignoring |
This file contains 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
dir = list items in folder | |
dir -r = List Files in Folders and Subfolders | |
Tab key = tab completion of word /directory /file | |
Aliases | |
ii . = Invoke-Item - open this directory | |
cls = Clear | |
ni = New-Item c:\scripts\Windows PowerShell -type directory | |
ni = New-Item c:\scripts\new_file.txt -type file | |
saps chrome google.com = Start-Process "chrome.exe" "www.google.com" | |
touch = new file |
This file contains 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
:+1: | |
:-1: | |
:airplane: | |
:art: | |
:bear: | |
:beer: | |
:bike: | |
:bomb: | |
:book: | |
:bulb: |
OlderNewer