-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (106 loc) · 3.03 KB
/
index.html
File metadata and controls
112 lines (106 loc) · 3.03 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<head>
<title>Kyle Whittington</title>
<link rel="stylesheet" type="text/css"
href="https://fonts.googleapis.com/css?family=Raleway"/>
<link rel="stylesheet" type="text/css" href="app/stylesheets/normalize.css"/>
<link rel="stylesheet" type="text/css" href="app/stylesheets/skeleton.css"/>
<link rel="stylesheet" type="text/css" href="app/stylesheets/index.css"/>
<link rel="stylesheet" href="vendor/highlight/styles/androidstudio.css">
<script src="vendor/highlight/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
</head>
<body>
<div class="section">
<div class="container">
<div class="row">
<div class="twelve columns">
<h1>Kyle Whittington</h1>
</div>
</div>
</div>
</div>
<div class="section">
<div class="container">
<div class="row">
<div class="twelve columns">
<h2>Projects</h2>
<hr>
</div>
</div>
</div>
</div>
<div id="stop_and_search" class="section">
<a href="https://kwhittington.github.io/stop_and_search"
title="Stop and Search">
<img alt="Stop and Search" class="image"
src="app/images/stop_and_search_preview.png">
<div class="overlay">
<div class="overlay-text">
<h1>
Stop and Search
</h1>
<h5>
What Kind of Cars Does NOPD Stop?
</h5>
</div>
</div>
</a>
</div>
<div id="united_states" class="section">
<a href="https://github.com/kwhittington/united_states"
title="united_states">
<pre>
<code class="ruby">
require 'united_states'
UnitedStates.all
# => [#<UnitedStates::State::Designation...@string="WY">]
UnitedStates.names
# => [#<UnitedStates::State::Name...@string="Wyoming">]
UnitedStates.postal_codes
# => [#<UnitedStates::State::PostalCode...@string="WY"]
UnitedStates[:LA]
# => [#<UnitedStates::State::Designation...@string="LA">]
UnitedStates['mississippi']
# => [#<UnitedStates::State::Designation...@string="MS">]
UnitedStates['car']
# => UnitedStates::NoDesignationFoundError
</code>
</pre>
<div class="overlay">
<div class="overlay-text">
<h1>
united_states
</h1>
<h5>
Ruby gem for U.S.A. state abbreviation.
</h5>
</div>
</div>
</a>
</div>
<div id="rails-local_subdomain" class="section">
<a href="https://github.com/kwhittington/rails-local_subdomain"
title="rails-local_subdomain">
<pre>
<code class="ruby">
require 'rails/local_subdomain'
class ApplicationController < ActionController::Base
include Rails::LocalSubdomain
...
end
</code>
</pre>
<div class="overlay">
<div class="overlay-text">
<h1>
Rails::LocalSubdomain
</h1>
<h5>
Ruby gem for supporting Rails subdomains in dev envs.
</h5>
</div>
</div>
</a>
</div>
</body>