Skip to content

Instantly share code, notes, and snippets.

@serverwentdown
Created June 4, 2014 12:36
Show Gist options
  • Save serverwentdown/4d0286222120620ec8d3 to your computer and use it in GitHub Desktop.
Save serverwentdown/4d0286222120620ec8d3 to your computer and use it in GitHub Desktop.
teletutorial
<!--
Feel free to edit this document!
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link href='http://fonts.googleapis.com/css?family=Lato:400,300' rel='stylesheet' type='text/css'>
<style>
body {
color: #333;
background-color: #ddd;
font-family: Lato;
font-size: 26px;
font-weight: 300;
padding: 20%;
}
h1, h2, h3 {
font-weight: inherit;
}
small {
font-size: 0.6em;
}
strong {
font-weight: 400;
}
th, td {
padding: 4px;
}
th {
font-weight: inherit;
background-color: #e9e9e9;
}
td {
background-color: #e3e3e3;
}
.slug {
font-size: 1.1em;
}
</style>
</head>
<body>
<h1>teletutorial <small>by ambc</small></h1>
<p class="slug">
A JavaScript system involving websockets and NodeJS, mainly for teaching friends HTML.
</p>
<p>
Ace by Cloud9 is a very powerful editor! I just added cmd-[ and cmd-] and cmd-return and it felt like Sublimee Text 2!
</p>
<table>
<tr>
<th>Server</th>
<td><a target="_blank" href="http://nodejs.org/">NodeJS</a></td>
</tr>
<tr>
<th>Database</th>
<td>None</td>
</tr>
<tr>
<th>WebSockets library</th>
<td><a target="_blank" href="http://socket.io/">Socket.io</a></td>
</tr>
<tr>
<th>On-page editor</th>
<td><a target="_blank" href="http://ace.c9.io/">Ace by Cloud9</a></td>
</tr>
<tr>
<th>Front-end libraries</th>
<td><a target="_blank" href="https://jquery.org/">jQuery</a> (simplifies DOM manipulation)<br /><a target="_blank" href="http://leaverou.github.io/prefixfree/">-pefix-free</a> (<em>break free from vendor prefix hell</em>). </td>
</tr>
</table>
<p>
<strong>Does not support IE. IE has some cross origin problems. </strong>
</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment