-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogs.html
121 lines (109 loc) · 5.17 KB
/
blogs.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<!-- All of the meta data for the page belongs in the header tag -->
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-PWM4DVJLW0"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-PWM4DVJLW0');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="../images/bio-photo.jpg">
<link rel="stylesheet" href="../css/html5reset.css">
<link rel="stylesheet" href="../css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Personal Portfolio</title>
</head>
<body class="body_blog">
<div class="skip"><a href="#main">Skip to Main Content</a></div>
<header>
<nav>
<ul>
<li><a href="../index.html">Home</a></li>
<li><a href="../pages/projects.html">Projects</a></li>
<li class="active"><a href="../pages/blogs.html">Blogs</a></li>
<li><a href="../pages/readings.html">My Reads</a></li>
</ul>
</nav>
<!-- <div class="mode_changer">
<p> Dark Mode </p>
<label class="switch">
<input type="checkbox" id="mode_changer">
<span class="slider round"></span>
</label>
</div> -->
<h1 class="div_heads"> My Blogs </h1>
</header>
<main class = "blog_list" id="main">
<div >
</div>
<div class="blog_head">
<p class="blog_head_caption">
I think writing blogs is the best way to learn things. Sometimes it's also helpful to concretize a
concept I learnt recently. Here are some blogs that I have written:
</p>
</div>
<div class = "myblogdiv">
<div
id="retainable-rss-embed" data-rss="https://medium.com/feed/@janpreetds"
data-maxcols="1"
data-layout="grid"
data-poststyle="modal"
data-readmore="Click here to read more.."
data-buttonclass="btn btn-primary"
data-offset="-100">
</div>
</div>
<!-- <a href="https://medium.com/p/6a34e2485911" style="color: black;">
<div class="blog_body">
From scanned PDFs to text summarization:
<p>
TLDR; The article discusses about basics of data extraction from scanned PDFs. I have shared my experience
in performing Optical Character recognition(OCR) on PDFs and used two different libraries, OCRPus and Tesseract for text extraction.
</p>
</div>
</a> -->
<!-- <a href="https://thebittheories.com/understanding-the-data-things-you-might-miss-c7710da8f765#.9snbire17" style="color: black;">
<div class="blog_body">
UNDERSTANDING THE DATA : Things you might miss!!
<p>
TLDR; The following article deals with the measures of statistical analysis for univarite( analysis on one variable) and
bivariate(analysis between two variable). You can easily find codes for
these in the language you use for doing exploration.
</p>
</div>
</a> -->
<!-- <a href="https://thebittheories.com/data-analysis-and-statistical-inference-a-quick-guide-82a51246834a#.9z8r5umql" style="color: black;">
<div class="blog_body">
Data analysis and statistical inference : A quick guide
<p>
TLDR; The article further deep dives into statistical tests for discrete and continuous and discrete
variables. I have included example codes in R.
</p>
</div>
</a> -->
<!-- <a href="https://medium.com/the-bit-theories/data-analysis-and-statistical-inference-a-quick-guide-part-2-anova-87441c5018e5" style="color: black;">
<div class="blog_body">
Data Analysis and Statistical Inference: A Quick Guide Part 2 (ANOVA)
<p>
TLDR; The article discusses about making inferences between a categorical and continuous variable using ANOVA (ANalysis Of VAriance).
This could be essential when you are making hypothesis upon a continuous quantity like housing price vs
a categorical quantity like income class of the people.
</p>
</div>
</a> -->
<script src="../js/blogs.js"></script>
<script src="https://www.twilik.com/assets/retainable/rss-embed/retainable-rss-embed.js"></script>
</main>
<footer id ="footer">
© 2022
</footer>
</body>
</html>