-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject-2.html
145 lines (124 loc) · 4.87 KB
/
project-2.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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jon's Head in the Cloud(s)</title>
<link rel="shortcut icon" href="favicon.ico">
<!-- Add your CSS files here -->
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/nivo/default.css">
<link rel="stylesheet" href="css/themes/blue.css">
<!-- Add your Fonts here -->
<link href='http://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="container">
<div class="logo"><img src="img/logo.svg" alt="Logo"></div>
<div class="social">
<a href="http://www.linkedin.com/pub/jon-weisbaum/34/621/52" class="icon-linkedin" title="LinkedIn"></a>
</div>
<!-- Social Icons End -->
<header>
<nav id="nav">
<ul class="nav">
<li><img src="img/logo.svg" alt="My Logo"></li>
<li><a href="index.html" class="icon-user"><span>Profile</span></a></li>
<li class="active"><a href="work.html" class="icon-briefcase"><span>Work</span></a></li>
<li><a href="resume.html" class="icon-list"><span>Resume</span></a></li>
<li><a href="contact.html" class="icon-mail"><span>Contact</span></a></li>
</ul>
</nav>
</header>
<!-- Header End -->
<section class="content">
<article class="s-project">
<h2>Various Android Apps</h2>
<div class="project-nav">
<a href="project-1.html" class="icon-arrow-left-5" title="Previous Project"></a>
<a href="work.html" class="icon-layout" title="All Projects"></a>
<a href="project-3.html" class="icon-arrow-right-5" title="Next Project"></a>
</div>
<div class="details">
<div>
<h4>Project Description</h4>
<p>
At my internship I've written a bunch of cool Android apps. I improved a Reddit reader app with which readers could scroll through posts, look at images and read comments. I wrote a navigation aid for the Chesapeake Bay which was geared towards sailers. It displayed the NOAA charts for different parts of the Bay and provided wind information. I also added some malicious functionality to some open source apps (which were not re-released) for the purposes of advancing static malware analysis.
</p>
</div>
<ul>
<li>
<h4>Client</h4>
<p>5D</p>
</li>
<li>
<h4>Year</h4>
<p>2012/2013</p>
</li>
<li>
<h4>Languages</h4>
<p>Java/Android</p>
</li>
</ul>
</div>
<!--
<div class="slider-wrapper theme-default clearfix">
<div class="slider NivoSLider">
<img src="img/work/design/5.jpg" data-thumb="img/work/design/5.jpg" alt="" title="This is an image description." />
<img src="img/work/design/6.jpg" data-thumb="img/work/design/6.jpg" alt="" />
<img src="img/work/design/7.jpg" data-thumb="img/work/design/7.jpg" alt="" />
<img src="img/work/design/8.jpg" data-thumb="img/work/design/8.jpg" alt="" />
<img src="img/work/design/9.jpg" data-thumb="img/work/design/9.jpg" alt="" title="This is another awesome image." />
</div>
</div>
-->
<!-- Slider End -->
</article>
</section>
<!-- Content End -->
</div>
<!-- Container End -->
<!-- Add your scripts here -->
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/jquery.mixitup.js"></script>
<script src="js/jquery.swipebox.js"></script>
<script type="text/javascript" src="js/jquery.nivo.slider.js"></script>
<script>
var navigation = responsiveNav("#nav", {
animate: true, // Boolean: Use CSS3 transitions, true or false
transition: 400, // Integer: Speed of the transition, in milliseconds
label: "", // String: Label for the navigation toggle
insert: "before", // String: Insert the toggle before or after the navigation
customToggle: "", // Selector: Specify the ID of a custom toggle
openPos: "relative", // String: Position of the opened nav, relative or static
jsClass: "js", // String: 'JS enabled' class which is added to <html> el
init: function(){}, // Function: Init callback
open: function(){}, // Function: Open callback
close: function(){} // Function: Close callback
});
// Mixitup Filter Gallery
$(function(){
$('.work-grid').mixitup();
});
// Swipebox Gallery
$(function($) {
$(".swipebox").swipebox();
});
// Nivo Slider
$(window).load(function() {
$('.slider').nivoSlider({
effect: 'boxRandom',
slices: 15,
boxCols: 8,
boxRows: 4,
animSpeed: 500,
pauseTime: 6000,
controlNav: true
});
});
</script>
</body>
</html>