-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (99 loc) · 5.33 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Nicolas Barrios</title>
<link rel="stylesheet" type="text/css" href="main.css">
<link rel="preconnect" href="https://kit-free.fontawesome.com">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Aspiring Software Engineer. Linux Hobbyist. Distributed Systems Enthusiast.">
<script src="https://kit.fontawesome.com/9ab97f9c27.js" async type="application/javascript"></script>
</head>
<body>
<img src="professional.jpg" alt="Profile Picture" class="profile" width="120px" height="120px">
<h1>Nicolas Barrios</h1>
<p class="st">Software Engineer and Feline Father</p>
<section>
<header>
<h2>About Me</h2>
</header>
<p>I am a Software Engineer at <a href="https://www.bolt.graphics/">Bolt Graphics</a> working on developing a
novel hardware accelerated ray tracing platform</p>
<p>I graduated from the <a href="https://cse.buffalo.edu">Computer Science and Engineering Department</a>
at the <a href="https://buffalo.edu"><abbr title="State University of New York">SUNY</abbr> University at Buffalo.</a> with a <a
href="https://engineering.buffalo.edu/computer-science-engineering/undergraduate/degrees-and-programs/bs-ms-in-computer-science-and-engineering.html">Computer
Science and Engineering combined BS/MS degree</a>, specializing in Software and Distributed Systems.</p>
<p>You can view <a target="_blank" rel="noopener noreferrer" href="Nicolas-Barrios-Resume.pdf">my resume</a>
here.</p>
</section>
<section>
<header>
<h2>Projects</h2>
</header>
<h3>Ray Tracing Renderer, in Rust</h3>
<p>A personal project to both learn the <a href="https://www.rust-lang.org/">Rust Programming Language</a>, as
well as understanding the basics behind 3D rendering using raytracing and pathtracing. Based on <a
href="https://raytracing.github.io/">Peter Shirley's Ray Tracing in One Weekend Book Series</a>, my
renderer encapulates the features in the first 2 books.</p>
<p><a href="https://github.com/nbarrios1337/lustre-rs">See the project on GitHub</a></p>
<h3>Game of Life on GPGPU</h3>
<p>A Game of Life on CUDA implementation, done for <a href="https://cse.buffalo.edu/~jzola/PDP/">CSE 603 -
Parallel and Distributed Processing</a> at the University at Buffalo, with the aim to use integer
bitwise operations to speed up traditional CUDA implementations of the Game of Life.
Measured a speedup of over 600x over the naive CPU implementation, with a little over a billion cell updates
per second.</p>
<p><a href="https://github.com/nbarrios1337/bitwise-GoL-GPGPU">See the project on GitHub</a></p>
<h3>Inspectre</h3>
<p>Developed a visual novel horror game using Flutter and Dart for the Android platform, where I applied Agile
methodologies by using Zenhub and Github to track team progress and sprint goals, implemented continuous
integration and continuous deployment (CI/CD) pipelines using Travis CI, and designed style guidelines for a
consistent user interface within the game.</p>
<p><a href="https://github.com/cse442-at-ub/cse442-semester-project-bugs-are-features">See the project on
Github</a></p>
</section>
<section>
<header>
<h2>Find Me Online</h2>
</header>
<p>You can find out more about me, such as projects I have not listed here, through the following sites:</p>
<ul class="fa-ul" style="margin-left: 1em;">
<li>
<span class="fa-li"><i class="fab fa-dev"></i></span>
<a href="https://dev.to/nbarrios1337">dev.to</a>
</li>
<li>
<span class="fa-li"><i class="fab fa-github"></i></span>
<a href="https://github.com/nbarrios1337">GitHub</a>
</li>
<li>
<span class="fa-li"><i class="fab fa-linkedin"></i></span>
<a href="https://www.linkedin.com/in/nbarrios1337/">LinkedIn</a>
</li>
<li>
<span class="fa-li"><i class="fab fa-twitter"></i></span>
<a href="https://twitter.com/nbarrios1337">Twitter</a>
</li>
</ul>
</section>
<section>
<header>
<h2>Contact Me</h2>
</header>
<p>You can contact me through the following channels:</p>
<ul class="fa-ul" style="margin-left: 1em;">
<li>
<span class="fa-li"><i class="fas fa-envelope"></i></span>
<a href="mailto:nabarrio@buffalo.edu">University Email</a>
</li>
<li>
<span class="fa-li"><i class="fas fa-envelope"></i></span>
<a href="mailto:nbarrios1337@gmail.com">Personal Email</a>
</li>
<li>
<span class="fa-li"><i class="fab fa-keybase"></i></span>
<a href="https://keybase.io/nbarrios">Keybase.io</a>
</li>
</ul>
</section>
</body>
</html>