-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogs.html
126 lines (120 loc) · 5.61 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
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="styles.css" rel="stylesheet" />
<title>Blogs</title>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-G08CW9DJYE"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-G08CW9DJYE');
</script>
</head>
<body>
<nav class="navigation container">
<div class="nav-brand">Hemanth Raju</div>
<ul class="list-non-bullet nav-pills">
<li class="list-inline">
<a class="link" href="/">Home</a>
</li>
<li class="list-inline">
<a class="link" href="/projects.html">Projects</a>
</li>
<li class="list-inline">
<a class="link link-active" href="/blogs.html">Blogs</a>
</li>
<li class="list-inline">
<a class="link" href="./lib/Resume_KHR.pdf" download="HemanthRajuResume.pdf">
Resume
</a>
</li>
</ul>
</nav>
<header class="hero">
<h1 class="hero-heading">My<span class="heading-inverted">Blogs</span></h1>
</header>
<ol>
<li>
<article class="article-list container container-center">
<h2>Build a Simple React Login Form using Event Handlers and React Hook</h2>
<a class="link link-primary" target="_blank"
href="https://javascript.plainenglish.io/build-a-simple-react-login-form-using-event-handlers-and-react-hook-4afb11391e48">Read
Blog</a>
<small>November 2021</small>
<p>A simple beginner-friendly React login form tutorial using the onChange and onSubmit event handlers
and the useState hook.Description about project</p>
</article>
</li>
<br>
<br>
<li>
<article class="article-list container container-center">
<h2>How to Use the Sliding-Window Technique to Find the Maximum Sum of a Subarray</h2>
<a class="link link-primary" target="_blank"
href="https://python.plainenglish.io/maximum-sum-subarray-using-sliding-window-technique-8667ca805a02">Read
Blog</a>
<small>June 2021</small>
<p>In this article, we are going to solve one of the most asked problems in interviews for big
companies.Description about project</p>
</article>
</li>
<br>
<br>
<li>
<article class="article-list container container-center">
<h2>Top 10 Books to learn Java</h2>
<a class="link link-primary" target="_blank"
href="https://medium.com/nerd-for-tech/top-10-books-to-learn-java-e6aa9c68164">Read Blog</a>
<small>June 2021</small>
<p>In this article, we are going to solve one of the most asked problems in interviews for big
companies.Description about project</p>
</article>
</li>
<br>
<br>
<li>
<article class="article-list container container-center">
<h2>Simple React Counter App for Beginners using the ‘useState’ and ‘useEffect’ Hooks</h2>
<a class="link link-primary" target="_blank"
href="https://javascript.plainenglish.io/simple-react-counter-app-for-beginners-using-usestate-and-useeffect-hooks-2dbcc9876003">Read
Blog</a>
<small>June 2021</small>
<p>In this article, we are going to solve one of the most asked problems in interviews for big
companies.Description about project</p>
</article>
</li>
<br>
<br>
<li>
<article class="article-list container container-center">
<h2>Facial Recognition using Python library</h2>
<a class="link link-primary" target="_blank"
href="https://medium.com/theleanprogrammer/facial-recognition-using-python-library-ef7e0fbb8f3d">Read
Blog</a>
<small>June 2021</small>
<p>In this article, we are going to solve one of the most asked problems in interviews for big
companies.Description about project</p>
</article>
</li>
</ol>
<footer class="footer">
<div class="footer-header">Connect to me on social media</div>
<ul class="social-links list-non-bullet">
<a class="link" target="_blank" href="https://github.com/KHemanthRaju"><i
class="fa fa-github-square fa-3x"></i></a>
<a class="link" target="_blank" href="https://twitter.com/khraju123"><i
class="btn btn-light fa fa-twitter-square fa-3x"></i></a>
<a class="link" target="_blank" href="https://www.linkedin.com/in/hemanth-raju-aba388176/"><i
class="btn btn-light fa fa-linkedin-square fa-3x"></i></a>
<a class="link" target="_blank" href="https://rajuhemanth456.medium.com/"><i
class="fa fa-medium fa-square fa-3x"></i></a>
</ul>
</footer>
</body>
</html>