-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.jade
147 lines (146 loc) · 5.97 KB
/
index.jade
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
146
147
doctype html
html(lang="en")
head
title Rafael Cepeda | Software Engineer
meta(charset="UTF-8")
meta(name="author" content="Rafael Cepeda")
meta(name="description" content="Rafael Cepeda is a passionate Software Engineer that loves all things computer science.")
meta(name="keywords" content="software engineer, full stack developer")
meta(name="viewport" content="width=device-width, initial-scale=1")
link(rel="stylesheet" type="text/css" href="css/layout.css")
script(src="//use.typekit.net/dbs7yxs.js")
script try{Typekit.load();}catch(e){}
body
div.container
aside
header(itemscope itemtype="https://schema.org/Person")
h1.name(itemprop="name") Rafael Cepeda
h2.animated.title(itemprop="jobTitle") Software Engineer
ul.contact
li: a(href="mailto:[email protected]" itemprop="email") [email protected]
li: a(href="tel:14077651696" itemprop="telephone") +1 (407) 765-1696
li: a(href="/files/rafael_pgp.txt") Public PGP Key
ul#git_activity
img#me(src="images/me.svg" alt="Rafael Cepeda")
footer
ul.medias
li: a(href="https://github.com/MrOutput" target="_blank") GitHub
li: a(href="https://www.linkedin.com/in/rafael-cepeda-54a173154/" target="_blank") LinkedIn
li: a(href="https://stackoverflow.com/users/4135670/rafael?tab=profile" target="_blank") Stack Overflow
p Rafael L. Cepeda
main
h4 Education
p University of West Florida <br><small><a href="https://uwf.edu/cse/departments/computer-science/undergradmajors/information-technology/network-systems-operations/" target="_blank">B.S. Information Technology: Network Systems Operations</a></small>
h5 Papers
ul#papers
li
a(href="files/cepeda_rafael_mid_journal.pdf" target="_blank") Excursions in Compiler-Construction
li
a(href="files/the_modern_web.pdf" target="_blank") The Modern Web
h4 Certificates
ul#certs
li <a href="https://www.credly.com/badges/0e75f88c-d1f4-4bed-aa17-c655e8955fd8/public_url" target="_blank">Cisco Certified Network Associate (CCNA)</a>
li <a href="https://www.certmetrics.com/comptia/public/verification.aspx?code=060MJSBFWK4Q1QWZ" target="_blank">CompTIA Security+</a>
li <a href="https://www.certmetrics.com/comptia/public/verification.aspx?code=M1XYENQH73QQQLSZ" target="_blank">CompTIA Network+</a>
li <a href="https://onlinedegrees.uwf.edu/online-degrees/intelligence-analysis-certificate/" target="_blank">Intelligence Analysis</a>
//-li <a href="https://uwf.edu/ceps/departments/instructional-workforce-and-applied-technology/certificate-programs/technology-systems-support/" target="_blank">Technology Systems Support</a>
//-
h4 Preferred Workflow
ul.inline
li Gentoo
li i3
li Dvorak Keyboard
li ViM
li Git
h4 Skill Set
ul.skills
li Programming Languages
ul
li Assembly
li C
li BASH
li Sed / AWK
li Perl 5
li Java
li TypeScript and JavaScript
li PHP
li Web Technologies
ul
li HTML / CSS
li Angular
li React
li Laravel
li Databases
ul
li Oracle
li MySQL
li MongoDB
li Redis
li Web Servers
ul
li NGINX
li Apache httpd
li Operating Systems
ul
li UNIX
//-
li Tools
ul
li Git
li BASH
//-
h5(style="margin-top: 1em") Temporary Files
ul#temps
li
a(href="files/tree_algo.txt" target="_blank" download) Tree Algorithms
script.
var git = new XMLHttpRequest();
git.open("GET", "https://api.github.com/users/MrOutput/events/public");
git.responseType = "json";
git.onload = function () {
var activity = document.getElementById("git_activity");
for (var i = 0; i < 10; i++) {
var msg = "";
switch (git.response[i].type) {
case "PushEvent":
msg = "Pushed to";
break;
case "WatchEvent":
msg = "Starred";
break;
case "IssueCommentEvent":
msg = "Commented on Issue at";
break;
case "IssuesEvent":
msg = "Opened Issue at";
break;
case "ForkEvent":
msg = "Forked";
break;
case "CreateEvent":
msg = "Created";
break;
case "PullRequestEvent":
msg = "Pull Request to";
break;
case "DeleteEvent":
msg = "Deleted";
break;
case "PublicEvent":
msg = "Released";
break;
default:
msg = git.response[i].type;
}
msg = document.createTextNode(msg + " ");
var li = document.createElement("li");
var a = document.createElement("a");
a.href = "https://www.github.com/" + git.response[i].repo.name;
a.target = "_blank";;
a.innerHTML = git.response[i].repo.name;
li.appendChild(msg);
li.appendChild(a);
activity.appendChild(li);
}
};
git.send();