-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathresources.html
57 lines (51 loc) · 1.57 KB
/
resources.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
---
title: resources
layout: default
---
<h3>Free Online Learning Resources</h3>
<table class="table table-striped">
<tr>
<td><a href="http://www.codecademy.com">Codecademy</a></td>
<td>Good for programming practice and learning new technologies</td>
</tr>
<tr>
<td><a href="http://www.microsoftvirtualacademy.com">Microsoft Virtual Academy</a></td>
<td>Up-to-date courses on Microsoft technologies</td>
</tr>
<tr>
<td><a href="http://www.udacity.com">Udacity</a></td>
<td>High-quality video courses taught by Stanford and Google</td>
</tr>
<tr>
<td><a href="http://www.thecodeplayer.com">thecodeplayer.com</a></td>
<td>A fun way to learn html, css, and javascript</td>
</tr>
</table>
<br>
<h3>Web Application Frameworks</h3>
<table class="table table-striped">
<tr>
<td><a href="http://www.djangoproject.com">Django</a></td>
<td>A popular Python web framework with good support for databases.</td>
</tr>
<tr>
<td><a href="http://www.asp.net/mvc">ASP MVC</a></td>
<td>Microsoft's C# web application framework</td>
</tr>
</table>
<br>
<h3>Server Deployment Platforms</h3>
<table class="table table-striped">
<tr>
<td><a href="http://www.heroku.com">Heroku</a></td>
<td>Server platform supporting a variety of languages. Free for one server.</td>
</tr>
<tr>
<td><a href="http://azure.microsoft.com/">Microsoft Azure</a></td>
<td>Microsoft's platform for deploying applications</td>
</tr>
<tr>
<td><a href="http://aws.amazon.com">Amazon Web Services</a>
<td>Amazon's powerful infrastructure-as-a-service.</td>
</tr>
</table>