-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (58 loc) · 2.3 KB
/
Copy pathindex.html
File metadata and controls
62 lines (58 loc) · 2.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Sau's Github landing page'</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">Sau's blog</a>
</div>
<ul class="nav navbar-nav">
<!--
add more nav bar links here
Refer Boostrap
-->
</ul>
</div>
</nav>
<div class="container">
<h3>My articles on Medium</h3>
<ol>
<li>
<a href="ransac-circle/index.html">Using RANSAC algorithm to find circles</a>
</li>
<li>
<a href="Redis/index.html">How to boost application performance using Redis Cache</a>
</li>
<li>
<a href="dbscan_epsilon/index.html">DBSCAN clustering algorithm- Understanding the epsilon parameter</a>
</li>
<li>
<a href="recursive-ransac/index.html">Recursive-RANSAC-An approach to finding more than 1 line in an image</a>
</li>
<li>
<a href="dax-cheat-sheet/index.html">Power BI-DAX Cheat sheet</a>
</li>
<li>
<a href="nne_distribution/index.html">Surprising behaviour of the average nearest neighbour distance in a cluster of points</a>
</li>
<li>
<a href="ransac_threshold_nne_distribution/index.html">Estimate RANSAC threshold using the median Nearest Neighbour Distance </a>
</li>
<li>
<a href="dax-cheat-sheet-2/index.html">Power BI-DAX Cheat sheet-Part 2</a>
</li>
<li>
<a href="dax-find-spikes-daily-sales/index.html">Power BI-Find spikes in daily sales</a>
</li>
</ol>
</div>
</body>
</html>