-
Notifications
You must be signed in to change notification settings - Fork 0
/
ubnl.html
81 lines (72 loc) · 4.15 KB
/
ubnl.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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>TPGW</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="text/javascript">
var host = "www.danealor.com";
if ((host == window.location.host) && (window.location.protocol != "https:"))
window.location.protocol = "https";
</script>
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="manifest.json">
<link rel="mask-icon" href="safari-pinned-tab.svg" color="#8c2a14">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="css/dane-styles.css">
<link rel="stylesheet" href="css/stylesheet.css">
<link rel="canonical" href="{ { site.url } }{ { page.url } }" />
<script src="js/vendor/modernizr-2.8.3-respond-1.4.2.min.js"></script>
</head>
<body>
<ul class="nav">
<li class="logo"><a href="index.html"><img src="tile-wide.png" /></a></li>
<li><a href="index.html">Home</a></li>
<li><a href="tpgw.html">TPGW</a></li>
<li class="active"><a href="ubnl.html">UBNL</a></li>
<li><a href="robot.html">Robot Arm</a></li>
<li><a href="java.html">Java</a></li>
<li><a href="asp.html">ASP</a></li>
<li><a href="portfolio/index.html">Portfolio</a></li>
<li style="float:right"><a href="about.html">About</a></li>
</ul>
<section class="container-fluid page-header text-center">
<h1 class="project-name">UBNL</h1>
<h2 class="project-tagline">University at Buffalo Nanosatellite Laboratory</h2>
</section>
<section class="container">
<h1 class="green">
<a id="C++" class="anchor" href="#c-plusplus" aria-hidden="true"><span aria-hidden="true" class="octicon octicon-link"></span></a>C++/Python
</h1>
<p>As a flight software member of UBNL, my role is to support the creation of the flight code that will be running in a satellite launched to space in a team project.</p>
<p>Most of the flight software code is written in C++, with referencing to C algorithms. My github profile can be found <a href="https://github.com/Danealor">here</a>.</p>
<p>The goal of the GLADOS satellite, pictured below, is to observe geostationary orbit from a closer orbit in space and track space debris and other objects to determine their attitude and contribute to our data of the space around us.</p>
<div class="container">
<div class="thumbnail">
<img src="img/img_ubnl.jpg" alt="UBNL GLADOS" style="width:100%">
<div class="caption">
<p>The nanosatellite will be launched into space to observe the stars in 2017.</p>
</div>
</div>
</div>
<pre><code>
string s = "C++ is the best!";
s.Replace("++","#");
System.Console.WriteLine(s);
</code></pre>
</section>
<div class="footer-container">
<footer class="wrapper">
<h3>2016 © <a href="https://danealor.com" target="_blank">danealor.com</a> | <a href="https://linkedin.com/in/amit-blonder-963189127" target="_blank">Amit Blonder</a></h3>
</footer>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.11.2.min.js"><\/script>')</script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>