-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (79 loc) · 4.11 KB
/
Copy pathindex.html
File metadata and controls
96 lines (79 loc) · 4.11 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Code</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Bootstrap -->
<link href="css/bootstrap.css" rel="stylesheet" media="screen">
<!-- Bootstrap theme -->
<link href="css/bootstrap-theme.min.css" rel="stylesheet" media="screen">
<!-- custom css -->
<link href="css/custom.css" rel="stylesheet" media="screen">
<style>
body {
padding-top: 50px;
}
</style>
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Dev Projects</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="http://dnorton.org" class=".white"><span class="glyphicon glyphicon-home white"></span></a></li>
<li class="active"><a href="http://code.dnorton.org">Code</a></li>
<li><a href="http://dnorton.org/about/">About</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<div class="container">
<h2>Code</h2>
<p><b><a href="https://github.com/dnorton/taskhack">TaskHack</a></b></p>
<p>This was my first Rails app and lived at <a href="http://taskhack.com">http://taskhack.com</a>.
<em>I should consider updating it to a newer version of Rails sometime.</em></p>
<p><b><a href="http://tweet-dm.appspot.com/">Tweet-DM</a></b></p>
<p>An integration between Twitter and <a href="http://www.dailymile.com">Dailymile</a> that runs on Google App Engine.
This was a great way to get started with Python and scratch an itch that I had.</p>
<p>I host the <a href="https://bitbucket.org/dnorton/tweet-dm">tweet-dm repo</a> on bitbucket.</p>
<p><b><a href="https://github.com/dnorton/dev-notes">dev-notes</a></b></p>
<p>I am using this Github repo to collect all the miscellaneous dev notes/tips/examples that I have scattered around everywhere.</p>
<p><b><a href="https://bitbucket.org/dnorton/coach_tips">coach_tips</a></b></p>
<p>This is an on again/off again Android project for my coach and friend, <a href="http://www.coachcaleb.com">
Caleb Masland.</a> The goal is a native Android app for all of his coaching tips.</p>
<p><b><a href="https://github.com/dnorton/workouts-api">workouts-api</a></b></p>
<p>This is a sample JBoss Forge project that I <a href="http://dnorton.org/blog/2013/10/23/jboss-forge-rest-example/">created in this blog post</a>.</p>
<h2>Demos</h2>
<p><b><a href="playground">Javascript Playground</a></b></p>
<p>Just a play to try out some Javascript stuff</p>
<hr/>
<h2>About</h2>
<p class="text-muted credit"><i>Site is built using <a href="http://getbootstrap.com">Twitter Bootstrap (v.3.0.2)</a>
and hosted on <a href="http://pages.github.com">Github Pages</a></i></p>
<p>
<em>I have several small projects located at
<a href="https://bitbucket.org/dnorton">bitbucket.org/dnorton</a> and
<a href="https://github.com/dnorton">github.com/dnorton</a>. Feel free to browse, fork, contribute.
</em>
</p>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>