-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·39 lines (39 loc) · 1.6 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="HandheldFriendly" content="true"/>
<meta name="MobileOptimized" content="320"/>
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, width=device-width, user-scalable=no"/>
<title><theBlog/> - Home</title>
<link rel="stylesheet" href="styles.css">
</head>
<body class="grid">
<header class="header">
<a href="index.html">
<h1><theBlog/></h1>
</a>
<hr>
</header>
<main class="main">
<div>
<a href="the-hate-on-java/the-hate-on-java.html"><h2>Why all the hate for Java?</h2></a>
<i>Published on December 11, 2019 by Maxim Atanasov</i><br><br>
<p>
Java has been one of the top languages to dislike basically since it's inception.
And while the language definitely has its shortcomings, I don't think it deserves all the hate it gets.
Yes, the language is (very) verbose, yes, it's not as fast as compiled languages and YES, there are too many
<code>ServiceConfigurationBeanFactories</code>,
but I'll try to make a case for the language and its surrounding ecosystem anyway.<br>
</p>
</div>
</main>
<aside class="right">
</aside>
<br>
<footer class="footer">
<hr>
<br>
<a href="about.html">About</a> | <a href="contact.html">Contact</a>
</footer>
</body>
</html>