-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (84 loc) · 4.79 KB
/
index.html
File metadata and controls
102 lines (84 loc) · 4.79 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
<!DOCTYPE html>
<html>
<head>
<!-- Include Font Awesome icons -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.css" crossorigin="anonymous">
<!-- Include Bootstrap 3.3.7 framework -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<title>Syed Peer - Software Developer</title>
</head>
<body>
<div class="container-fluid">
<h1 class="text-center">Syed Peer</h1>
<p class="lead text-center">Junior Software Engineer with a passion for mobile and backend development</p>
<h2>Social</h2>
<!-- Top-Level button group for "Social" links -->
<div class="btn-group btn-group-justified">
<!-- Link to Github -->
<a class="btn btn-default" href="https://github.com/GotoCode" target="_blank">
<i class="fa fa-github" aria-hidden="true"></i> Github
</a>
<!-- Link to LinkedIn -->
<a class="btn btn-default" href="https://linkedin.com/in/syed-peer" target="_blank">
<i class="fa fa-linkedin-square"></i> LinkedIn
</a>
<!-- Link to CodePen -->
<a class="btn btn-default" href="https://codepen.io/GotoCode" target="_blank">
<i class="fa fa-codepen"></i> CodePen
</a>
</div>
<h2>Skills</h2>
<ul class="list-inline">
<li>Python</li>
<li>JavaScript</li>
<li>Java</li>
<li>C/C++</li>
<li>HTML & CSS</li>
<li>SQL</li>
</ul>
<h2>Projects</h2>
<ul class="list-unstyled">
<li>FileStack DFS</li>
<ul>
<li>Implemented a simple distributed file system that allows users to upload, download, and edit files stored on a remote cluster of Linux machines</li>
<li>Both the client- and server-side code were written using <strong>Java</strong> and the <strong>Sockets API</strong></li>
</ul>
<li>Iris Classifier</li>
<ul>
<li>Coded up Bayesian- and Decision Trees-based classifiers to automatically categorize different species of Iris plants (in the UCI Iris dataset) using machine learning</li>
<li>Both the learning and cross-validation algorithms were written from scratch in <strong>Python</strong></li>
</ul>
<li>Voice Changer (iOS)</li>
<ul>
<li>Developed a native mobile app that enables people to record their voices and play them back while applying various audio filters and sound effects</li>
<li>Implemented the core app logic using <strong>Swift</strong> and <strong>AudioKit</strong></li>
<li>Designed an "adaptive" user interface using <strong>InterfaceBuilder</strong> and <strong>AutoLayout</strong> constraints</li>
</ul>
<li>Custom Arcade Machine</li>
<ul>
<li>Designed and developed both the hardware and embedded software for a system that translates the user's hand gestures into in-game actions</li>
<li>Implemented custom input and graphics driver code using C on the Motorola 9S12 microcontroller</li>
<li>Featured as part of a student outreach event held by Carnegie Mellon University's CS department</li>
</ul>
<li>Wikipedia Visualizer</li>
<ul>
<li>Developed a web app that allows users to browse Wikipedia via a graph-based interface that visualizes the connections between topics</li>
<li>Designed the frontend UI using HTML, CSS, and Bootstrap</li>
<li>Implemented the core app logic using JavaScript and jQuery to access the Wikimedia API via AJAX calls</li>
</ul>
</ul>
<h2>Interests</h2>
<ul>
<li>Python Programming</li>
<li>Fiction Novels</li>
<li>Learning New Stuff</li>
</ul>
</div>
<!-- micro footer text -->
<div class="text-center">
<small>Crafted with <i style="color: red;" class="fa fa-heart"></i> by <b>GotoCode</b></small>
</div>
<!-- JavaScript files go here... -->
<script src='main.js'></script>
</body>
</html>