-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcsharp.html
102 lines (60 loc) · 3.57 KB
/
csharp.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- If IE use the latest rendering engine -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Set the page to the width of the device and set the zoon level -->
<meta name="viewport" content="width = device-width, initial-scale = 1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="js/tooltipglossary.js"></script>
<script src="js/lightswitch.js"></script>
<link id="generalcss" href="css/light.css" rel="stylesheet" type="text/css" />
<title>Ripa Codrin-Andrei</title>
<link rel="icon" href="https://i.imgur.com/aYr9UGD.jpg">
</head>
<body>
<nav id="mynavbar" class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle navbar-toggler" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- <a class="navbar-brand" href="#">Seedless Bloom</a> -->
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li><a href="about.html">About</a></li>
<li><a href="python.html">Python</a></li>
<li><a href="webdev.html">Web Dev</a></li>
<li><a href="#">C/C++</a></li>
<li><a href="java.html">Java</a></li>
<li class="active"><a href="csharp.html">C#</a></li>
<li><a href="other.html">Other</a></li>
<!-- <li><a href="#" onclick="lightswitch()">Invert Colors</a></li> -->
</ul>
</div>
</div>
</nav>
<div class="row">
<div class="col-lg-offset-3 col-lg-6 col-md-offset-2 col-md-8 col-sm-offset-1 col-sm-10 col-xs-offset-1 col-xs-10">
<br>
<br>
<br>
<br>
<p class="text-left"><a target="_blank" href="http://www.mediafire.com/file/x2vjckw8p3ppema/EChargeAR.zip/file">Echarge</a> is an MVC 5 .NET application built in mind for the electric car infrastructure, which assumes that drivers reserve time at public charging stations, both for parking and for battery recharging. It is downloadable and ready to deploy on an Azure web hosting service, assuming you want to foot the bill.</p>
<br>
<p class="text-left"><a target="_blank" href="https://github.com/vectorkt/classification_mlp_from_scratch">Classification Multilayer Perceptron From Scratch</a> is exactly what it sounds like: An MLP network build from the ground up, including a linear algebra library, made as a small project to better understand machine learning algorithms under the hood.</p>
<br>
<br><br><br><br><br><br><br><br><br><br><br><br>
</div>
</div>
</body>
</html>