This repository was archived by the owner on Sep 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
310 lines (284 loc) · 16.2 KB
/
index.html
File metadata and controls
310 lines (284 loc) · 16.2 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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
<!DOCTYPE html>
<html lang="en" dir="auto">
<head><meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="robots" content="index, follow">
<title>wlsc_Tech_blog</title>
<meta name="keywords" content="software, engineering, blog, java, event-driven-architecture, real-time-processing, stream-processing, distributed-systems, high-availability, zero-downtime, blue-green-deployments, canary-releases, exactly-once-semantics, idempotency, saga-pattern, cqrs, outbox-pattern, backpressure">
<meta name="description" content="Technical insights and practical knowledge from a Software Engineer passionate about distributed systems, architecture patterns, and engineering excellence">
<meta name="author" content="Wladimir Schmidt">
<link rel="canonical" href="https://blog.wlsc.de/">
<link crossorigin="anonymous" href="/assets/css/stylesheet.8fe10233a706bc87f2e08b3cf97b8bd4c0a80f10675a143675d59212121037c0.css" integrity="sha256-j+ECM6cGvIfy4Is8+XuL1MCoDxBnWhQ2ddWSEhIQN8A=" rel="preload stylesheet" as="style">
<link rel="icon" href="https://blog.wlsc.de/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://blog.wlsc.de/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://blog.wlsc.de/favicon-32x32.png">
<link rel="apple-touch-icon" href="https://blog.wlsc.de/apple-touch-icon.png">
<link rel="mask-icon" href="https://blog.wlsc.de/safari-pinned-tab.svg">
<meta name="theme-color" content="#2e2e33">
<meta name="msapplication-TileColor" content="#2e2e33">
<link rel="alternate" type="application/rss+xml" href="https://blog.wlsc.de/index.xml">
<link rel="alternate" hreflang="en" href="https://blog.wlsc.de/">
<noscript>
<style>
#theme-toggle,
.top-link {
display: none;
}
</style>
<style>
@media (prefers-color-scheme: dark) {
:root {
--theme: rgb(29, 30, 32);
--entry: rgb(46, 46, 51);
--primary: rgb(218, 218, 219);
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}
.list {
background: var(--theme);
}
.list:not(.dark)::-webkit-scrollbar-track {
background: 0 0;
}
.list:not(.dark)::-webkit-scrollbar-thumb {
border-color: var(--theme);
}
}
</style>
</noscript><meta property="og:url" content="https://blog.wlsc.de/">
<meta property="og:site_name" content="wlsc_Tech_blog">
<meta property="og:title" content="wlsc_Tech_blog">
<meta property="og:description" content="Technical insights and practical knowledge from a Software Engineer passionate about distributed systems, architecture patterns, and engineering excellence">
<meta property="og:locale" content="en-us">
<meta property="og:type" content="website">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="wlsc_Tech_blog">
<meta name="twitter:description" content="Technical insights and practical knowledge from a Software Engineer passionate about distributed systems, architecture patterns, and engineering excellence">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "wlsc_Tech_blog",
"url": "https://blog.wlsc.de/",
"description": "Technical insights and practical knowledge from a Software Engineer passionate about distributed systems, architecture patterns, and engineering excellence",
"logo": "https://blog.wlsc.de/favicon.ico",
"sameAs": [
]
}
</script>
</head>
<body class="list" id="top">
<script>
if (localStorage.getItem("pref-theme") === "dark") {
document.body.classList.add('dark');
} else if (localStorage.getItem("pref-theme") === "light") {
document.body.classList.remove('dark')
} else if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
document.body.classList.add('dark');
}
</script>
<header class="header">
<nav class="nav">
<div class="logo">
<a href="https://blog.wlsc.de/" accesskey="h" title="wlsc_Tech_blog (Alt + H)">wlsc_Tech_blog</a>
<div class="logo-switches">
<button id="theme-toggle" accesskey="t" title="(Alt + T)" aria-label="Toggle theme">
<svg id="moon" xmlns="http://www.w3.org/2000/svg" width="24" height="18" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round">
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
</svg>
<svg id="sun" xmlns="http://www.w3.org/2000/svg" width="24" height="18" viewBox="0 0 24 24"
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round">
<circle cx="12" cy="12" r="5"></circle>
<line x1="12" y1="1" x2="12" y2="3"></line>
<line x1="12" y1="21" x2="12" y2="23"></line>
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
<line x1="1" y1="12" x2="3" y2="12"></line>
<line x1="21" y1="12" x2="23" y2="12"></line>
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
</svg>
</button>
</div>
</div>
<ul id="menu">
<li>
<a href="https://wlsc.de/" title="..:index:..">
<span>..:index:..</span>
<svg fill="none" shape-rendering="geometricPrecision" stroke="currentColor" stroke-linecap="round"
stroke-linejoin="round" stroke-width="2.5" viewBox="0 0 24 24" height="12" width="12">
<path d="M18 13v6a2 2 0 01-2 2H5a2 2 0 01-2-2V8a2 2 0 012-2h6"></path>
<path d="M15 3h6v6"></path>
<path d="M10 14L21 3"></path>
</svg>
</a>
</li>
</ul>
</nav>
</header>
<main class="main">
<article class="first-entry">
<header class="entry-header">
<h2 class="entry-hint-parent">Apple releases its first AI paper
</h2>
</header>
<div class="entry-content">
<p> Learning from Simulated and Unsupervised Images through Adversarial Training The first paper from Apple company regarding Artificial Intelligence with Deep Learning is published! ...</p>
</div>
<footer class="entry-footer"><span title='2017-01-01 19:35:17 +0000 UTC'>January 1, 2017</span> · Wladimir Schmidt</footer>
<a class="entry-link" aria-label="post link to Apple releases its first AI paper" href="https://blog.wlsc.de/2017/01/01/apple-releases-its-first-ai-paper/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2 class="entry-hint-parent">Bay Area Deep Learning School lectures (Stanford)
</h2>
</header>
<div class="entry-content">
<p> The Deep Learning School is a great two day set of introduction lectures on Machine Learning, Natural Language Processing and Computer Vision for Deep Learning. The two days event is solely dedicated to Deep Learning! The lectures take place at CEMEX auditorium at the Graduate School of Business on Stanford campus (CA, USA) and include a variety of prominent speakers from the above mentioned research fields.
...</p>
</div>
<footer class="entry-footer"><span title='2016-09-25 18:42:57 +0000 UTC'>September 25, 2016</span> · Wladimir Schmidt</footer>
<a class="entry-link" aria-label="post link to Bay Area Deep Learning School lectures (Stanford)" href="https://blog.wlsc.de/2016/09/25/bay-area-deep-learning-school-lectures-stanford/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2 class="entry-hint-parent">Double-Checked Locking Pattern with Lazy Singletone Initialization
</h2>
</header>
<div class="entry-content">
<p> In the real world of multicore processors, we have to write multi-threaded applications that would use all cores efficiently. This is very practical, when it comes to high-loaded servers (with a high amount of users trying to access service at the same time). For instance, after you have successfully introduced the new functionality on your web service or fixed some bugs, your first intuition would be to release the new version as soon as possible. At this point, when your users start to access your web service simultaneously, a situation may arise, when two or more users will initialize the same singleton or field value more than once. This is not a favorable type of scenario. It is also the main reason your applications should be ready to initialize its singletons (and not only) properly!
...</p>
</div>
<footer class="entry-footer"><span title='2016-09-05 20:11:31 +0000 UTC'>September 5, 2016</span> · Wladimir Schmidt</footer>
<a class="entry-link" aria-label="post link to Double-Checked Locking Pattern with Lazy Singletone Initialization" href="https://blog.wlsc.de/2016/09/05/double-checked-locking-pattern-with-lazy-singletone-initialization/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2 class="entry-hint-parent">Deepmind AI reduces Google data center cooling bill by 40%
</h2>
</header>
<div class="entry-content">
<p> From smartphone assistants to image recognition and translation, machine learning already helps us in our everyday lives. But it can also help us to tackle some of the world’s most challenging physical problems — such as energy consumption. Large-scale commercial and industrial systems like data centres consume a lot of energy, and while much has been done to stem the growth of energy use, there remains a lot more to do given the world’s increasing need for computing power.
Reducing energy usage has been a major focus for us over the past 10 years: we have built our own super-efficient servers at Google, invented more efficient ways to cool our data centres and invested heavily in green energy sources, with the goal of being powered 100 percent by renewable energy. Compared to five years ago, we now get around 3.5 times the computing power out of the same amount of energy, and we continue to make many improvements each year.
...</p>
</div>
<footer class="entry-footer"><span title='2016-07-22 10:56:21 +0000 UTC'>July 22, 2016</span> · Wladimir Schmidt</footer>
<a class="entry-link" aria-label="post link to Deepmind AI reduces Google data center cooling bill by 40%" href="https://blog.wlsc.de/2016/07/22/deepmind-ai-reduces-google-data-center-cooling-bill-by-40/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2 class="entry-hint-parent">Concrete AI safety problems
</h2>
</header>
<div class="entry-content">
<p>The “Concrete AI safety problems” paper by _Dario Amodei (Google Brain), Chris Olah (Google Brain), Jacob Steinhardt (Stanford University), Paul Christiano (UC Berkeley), John Schulman (OpenAI), Dan Mané (Google Brain) _suggests a new approach to the Machine Learning (ML) and Artificial Intelligence (AI) research, which focuses more on productivity of forward-looking applications while building cutting-edge AI systems.
A number of key problems considered in the paper as well as their descriptions are listed below. In the paper authors also elaborate on how to approach each of the given problem.
...</p>
</div>
<footer class="entry-footer"><span title='2016-06-22 11:20:06 +0000 UTC'>June 22, 2016</span> · Wladimir Schmidt</footer>
<a class="entry-link" aria-label="post link to Concrete AI safety problems" href="https://blog.wlsc.de/2016/06/22/concrete-ai-safety-problems/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2 class="entry-hint-parent">Microsoft to acquire LinkedIn
</h2>
</header>
<div class="entry-content">
<p>Funny is: will Skype have a LinkedIn log-in feature now?
...</p>
</div>
<footer class="entry-footer"><span title='2016-06-13 16:52:52 +0000 UTC'>June 13, 2016</span> · Wladimir Schmidt</footer>
<a class="entry-link" aria-label="post link to Microsoft to acquire LinkedIn" href="https://blog.wlsc.de/2016/06/13/microsoft-to-acquire-linkedin/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2 class="entry-hint-parent">Apache htaccess: Force Domain HTTPS/SSL protocol
</h2>
</header>
<div class="entry-content">
<p>In order to redirect all users from the unsecure HTTP to the secure HTTPS connection, you need to edit your .htaccess file. Usually, it is located in the root of your project (e.g., httpdocs folder).
<IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTPS} !=on RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L] </IfModule>...</p>
</div>
<footer class="entry-footer"><span title='2016-06-13 16:31:42 +0000 UTC'>June 13, 2016</span> · Wladimir Schmidt</footer>
<a class="entry-link" aria-label="post link to Apache htaccess: Force Domain HTTPS/SSL protocol" href="https://blog.wlsc.de/2016/06/13/apache-htaccess-force-domain-httpsssl-protocol/"></a>
</article>
<footer class="page-footer">
<nav class="pagination">
<a class="next" href="https://blog.wlsc.de/page/2/">Next »
</a>
</nav>
</footer>
</main>
<footer class="footer">
<span>© 2025 <a href="https://blog.wlsc.de/">wlsc_Tech_blog</a></span> ·
<span>
Powered by
<a href="https://gohugo.io/" rel="noopener noreferrer" target="_blank">Hugo</a> &
<a href="https://github.com/adityatelange/hugo-PaperMod/" rel="noopener" target="_blank">PaperMod</a>
</span>
</footer>
<a href="#top" aria-label="go to top" title="Go to Top (Alt + G)" class="top-link" id="top-link" accesskey="g">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 6" fill="currentColor">
<path d="M12 6H0l6-6z" />
</svg>
</a>
<script>
let menu = document.getElementById('menu')
if (menu) {
menu.scrollLeft = localStorage.getItem("menu-scroll-position");
menu.onscroll = function () {
localStorage.setItem("menu-scroll-position", menu.scrollLeft);
}
}
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener("click", function (e) {
e.preventDefault();
var id = this.getAttribute("href").substr(1);
if (!window.matchMedia('(prefers-reduced-motion: reduce)').matches) {
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView({
behavior: "smooth"
});
} else {
document.querySelector(`[id='${decodeURIComponent(id)}']`).scrollIntoView();
}
if (id === "top") {
history.replaceState(null, null, " ");
} else {
history.pushState(null, null, `#${id}`);
}
});
});
</script>
<script>
var mybutton = document.getElementById("top-link");
window.onscroll = function () {
if (document.body.scrollTop > 800 || document.documentElement.scrollTop > 800) {
mybutton.style.visibility = "visible";
mybutton.style.opacity = "1";
} else {
mybutton.style.visibility = "hidden";
mybutton.style.opacity = "0";
}
};
</script>
<script>
document.getElementById("theme-toggle").addEventListener("click", () => {
if (document.body.className.includes("dark")) {
document.body.classList.remove('dark');
localStorage.setItem("pref-theme", 'light');
} else {
document.body.classList.add('dark');
localStorage.setItem("pref-theme", 'dark');
}
})
</script>
</body>
</html>