-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
gerry
committed
Dec 15, 2024
1 parent
f0c5d70
commit 5245983
Showing
51 changed files
with
1,579 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
layout: post | ||
title: Niien Open Data | ||
lead: | ||
--- | ||
|
||
# niien | ||
Non-interconnected Greek islands Energy Production | ||
|
||
A repository to publish Energy production data for Non-Interconnected Islands Market. | ||
|
||
Find more [here](https://github.com/gerrykou/niien) | ||
|
99 changes: 99 additions & 0 deletions
99
_site/2024/02/04/apache-kafka-dead-letter-queues/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
|
||
<title> | ||
|
||
gerrykou · Apache Kafka Dead Letter Queues | ||
|
||
</title> | ||
|
||
<link rel="stylesheet" href="/assets/css/bootstrap.min.css"> | ||
<link rel="stylesheet" href="/assets/css/open-color.min.css"> | ||
<link rel="stylesheet" href="/assets/css/syntax.css"> | ||
<link rel="stylesheet" href="/assets/css/styles.min.css"> | ||
<link rel="apple-touch-icon" sizes="180x180" href="/assets/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon-16x16.png"> | ||
<link rel="manifest" href="/assets/site.webmanifest"> | ||
<link rel="alternate" type="application/atom+xml" title="gerrykou" href="/atom.xml"> | ||
|
||
<!-- Begin Jekyll SEO tag v2.8.0 --> | ||
<meta name="generator" content="Jekyll v4.3.2" /> | ||
<meta property="og:title" content="Apache Kafka Dead Letter Queues" /> | ||
<meta name="author" content="Gerry" /> | ||
<meta property="og:locale" content="en_US" /> | ||
<meta name="description" content="If the message failed, would you miss it? Are you going to do anything with it?" /> | ||
<meta property="og:description" content="If the message failed, would you miss it? Are you going to do anything with it?" /> | ||
<link rel="canonical" href="http://0.0.0.0:4000/2024/02/04/apache-kafka-dead-letter-queues/" /> | ||
<meta property="og:url" content="http://0.0.0.0:4000/2024/02/04/apache-kafka-dead-letter-queues/" /> | ||
<meta property="og:site_name" content="gerrykou" /> | ||
<meta property="og:type" content="article" /> | ||
<meta property="article:published_time" content="2024-02-04T00:00:00+00:00" /> | ||
<meta name="twitter:card" content="summary" /> | ||
<meta property="twitter:title" content="Apache Kafka Dead Letter Queues" /> | ||
<script type="application/ld+json"> | ||
{"@context":"https://schema.org","@type":"BlogPosting","author":{"@type":"Person","name":"Gerry"},"dateModified":"2024-02-04T00:00:00+00:00","datePublished":"2024-02-04T00:00:00+00:00","description":"If the message failed, would you miss it? Are you going to do anything with it?","headline":"Apache Kafka Dead Letter Queues","mainEntityOfPage":{"@type":"WebPage","@id":"http://0.0.0.0:4000/2024/02/04/apache-kafka-dead-letter-queues/"},"url":"http://0.0.0.0:4000/2024/02/04/apache-kafka-dead-letter-queues/"}</script> | ||
<!-- End Jekyll SEO tag --> | ||
|
||
</head> | ||
|
||
|
||
<body> | ||
|
||
|
||
|
||
|
||
<div class="container"> | ||
<div class="row justify-content-center"> | ||
<div class="col col-sm-10 col-md-8 col-lg-6"> | ||
<article> | ||
<header> | ||
<div> | ||
<a class="site-title" href="/">gerrykou</a> | ||
<small> | ||
|
||
|
||
|
||
</small> | ||
</div> | ||
<a id="theme-toggle" class="toggle-icon" onclick="modeSwitcher()"></a> | ||
</header> | ||
|
||
<main> | ||
<h1 class="post-title">Apache Kafka Dead Letter Queues</h1> | ||
<time datetime="2024-02-04T00:00:00+00:00" class="post-date">February 4, 2024</time> | ||
<p class="lead"></p> | ||
<p>If the message failed, would you miss it?<br /> | ||
Are you going to do anything with it?</p> | ||
|
||
<p>If not, then fine, you don’t need the DLQ, just get rid of it.</p> | ||
<ul> | ||
<li>Just handle the exception and move on.</li> | ||
<li>Put it somewhere where it can be found and drop the message.</li> | ||
</ul> | ||
|
||
<p>Listen to this conversation <a href="https://www.youtube.com/watch?v=WQDbX0agk-I&t=338s">here</a> with Tim Burgland and Jason Bell.</p> | ||
|
||
</main> | ||
<footer> | ||
<small>© <time datetime="2024-12-15T16:13:35+00:00">2024</time> | ||
Gerry. All rights reserved.</small> | ||
</footer> | ||
|
||
</article> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
<script src="/assets/js/bootstrap.min.js"></script> | ||
|
||
<script src="/assets/js/darkmode.js"></script> | ||
|
||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
|
||
<title> | ||
|
||
gerrykou · Book Recommendations | ||
|
||
</title> | ||
|
||
<link rel="stylesheet" href="/assets/css/bootstrap.min.css"> | ||
<link rel="stylesheet" href="/assets/css/open-color.min.css"> | ||
<link rel="stylesheet" href="/assets/css/syntax.css"> | ||
<link rel="stylesheet" href="/assets/css/styles.min.css"> | ||
<link rel="apple-touch-icon" sizes="180x180" href="/assets/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon-16x16.png"> | ||
<link rel="manifest" href="/assets/site.webmanifest"> | ||
<link rel="alternate" type="application/atom+xml" title="gerrykou" href="/atom.xml"> | ||
|
||
<!-- Begin Jekyll SEO tag v2.8.0 --> | ||
<meta name="generator" content="Jekyll v4.3.2" /> | ||
<meta property="og:title" content="Book Recommendations" /> | ||
<meta name="author" content="Gerry" /> | ||
<meta property="og:locale" content="en_US" /> | ||
<meta name="description" content="Streaming Systems" /> | ||
<meta property="og:description" content="Streaming Systems" /> | ||
<link rel="canonical" href="http://0.0.0.0:4000/2024/05/28/book-recommendations/" /> | ||
<meta property="og:url" content="http://0.0.0.0:4000/2024/05/28/book-recommendations/" /> | ||
<meta property="og:site_name" content="gerrykou" /> | ||
<meta property="og:type" content="article" /> | ||
<meta property="article:published_time" content="2024-05-28T00:00:00+00:00" /> | ||
<meta name="twitter:card" content="summary" /> | ||
<meta property="twitter:title" content="Book Recommendations" /> | ||
<script type="application/ld+json"> | ||
{"@context":"https://schema.org","@type":"BlogPosting","author":{"@type":"Person","name":"Gerry"},"dateModified":"2024-05-28T00:00:00+00:00","datePublished":"2024-05-28T00:00:00+00:00","description":"Streaming Systems","headline":"Book Recommendations","mainEntityOfPage":{"@type":"WebPage","@id":"http://0.0.0.0:4000/2024/05/28/book-recommendations/"},"url":"http://0.0.0.0:4000/2024/05/28/book-recommendations/"}</script> | ||
<!-- End Jekyll SEO tag --> | ||
|
||
</head> | ||
|
||
|
||
<body> | ||
|
||
|
||
|
||
|
||
<div class="container"> | ||
<div class="row justify-content-center"> | ||
<div class="col col-sm-10 col-md-8 col-lg-6"> | ||
<article> | ||
<header> | ||
<div> | ||
<a class="site-title" href="/">gerrykou</a> | ||
<small> | ||
|
||
|
||
|
||
</small> | ||
</div> | ||
<a id="theme-toggle" class="toggle-icon" onclick="modeSwitcher()"></a> | ||
</header> | ||
|
||
<main> | ||
<h1 class="post-title">Book Recommendations</h1> | ||
<time datetime="2024-05-28T00:00:00+00:00" class="post-date">May 28, 2024</time> | ||
<p class="lead"></p> | ||
<blockquote> | ||
<p>Streaming Systems</p> | ||
</blockquote> | ||
|
||
<ul> | ||
<li><strong>Grokking Streaming Systems, Real-time event processing</strong> by Josh Fischer and Ning Wang<br /> | ||
Find the book <a href="https://www.manning.com/books/grokking-streaming-systems">here</a></li> | ||
</ul> | ||
|
||
<blockquote> | ||
<p>Data Engineering</p> | ||
</blockquote> | ||
|
||
<ul> | ||
<li> | ||
<p><strong>Data Pipelines Pocket Reference</strong> by James Densmore<br /> | ||
Find the book <a href="https://www.oreilly.com/library/view/data-pipelines-pocket/9781492087823/">here</a></p> | ||
</li> | ||
<li> | ||
<p><strong>Data Analysis with Python and PySpark</strong> by Jonathan Rioux<br /> | ||
Find the book <a href="https://www.manning.com/books/data-analysis-with-python-and-pyspark">here</a></p> | ||
</li> | ||
</ul> | ||
|
||
<blockquote> | ||
<p>Programming Language</p> | ||
</blockquote> | ||
|
||
<ul> | ||
<li><strong>Green Tea Press</strong>, Free books by Allen B. Downey<br /> | ||
Find the books <a href="https://greenteapress.com/wp/">here</a></li> | ||
</ul> | ||
|
||
<blockquote> | ||
<p>Other</p> | ||
</blockquote> | ||
|
||
<ul> | ||
<li><strong>The Manager’s Path</strong> by Camille Fournier<br /> | ||
Find the book <a href="https://www.oreilly.com/library/view/the-managers-path/9781491973882/">here</a></li> | ||
</ul> | ||
|
||
</main> | ||
<footer> | ||
<small>© <time datetime="2024-12-15T16:13:35+00:00">2024</time> | ||
Gerry. All rights reserved.</small> | ||
</footer> | ||
|
||
</article> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
<script src="/assets/js/bootstrap.min.js"></script> | ||
|
||
<script src="/assets/js/darkmode.js"></script> | ||
|
||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
|
||
<title> | ||
|
||
gerrykou · Niien Open Data | ||
|
||
</title> | ||
|
||
<link rel="stylesheet" href="/assets/css/bootstrap.min.css"> | ||
<link rel="stylesheet" href="/assets/css/open-color.min.css"> | ||
<link rel="stylesheet" href="/assets/css/syntax.css"> | ||
<link rel="stylesheet" href="/assets/css/styles.min.css"> | ||
<link rel="apple-touch-icon" sizes="180x180" href="/assets/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon-16x16.png"> | ||
<link rel="manifest" href="/assets/site.webmanifest"> | ||
<link rel="alternate" type="application/atom+xml" title="gerrykou" href="/atom.xml"> | ||
|
||
<!-- Begin Jekyll SEO tag v2.8.0 --> | ||
<meta name="generator" content="Jekyll v4.3.2" /> | ||
<meta property="og:title" content="Niien Open Data" /> | ||
<meta name="author" content="Gerry" /> | ||
<meta property="og:locale" content="en_US" /> | ||
<meta name="description" content="niien Non-interconnected Greek islands Energy Production" /> | ||
<meta property="og:description" content="niien Non-interconnected Greek islands Energy Production" /> | ||
<link rel="canonical" href="http://0.0.0.0:4000/2024/12/15/niien-open-data/" /> | ||
<meta property="og:url" content="http://0.0.0.0:4000/2024/12/15/niien-open-data/" /> | ||
<meta property="og:site_name" content="gerrykou" /> | ||
<meta property="og:type" content="article" /> | ||
<meta property="article:published_time" content="2024-12-15T00:00:00+00:00" /> | ||
<meta name="twitter:card" content="summary" /> | ||
<meta property="twitter:title" content="Niien Open Data" /> | ||
<script type="application/ld+json"> | ||
{"@context":"https://schema.org","@type":"BlogPosting","author":{"@type":"Person","name":"Gerry"},"dateModified":"2024-12-15T00:00:00+00:00","datePublished":"2024-12-15T00:00:00+00:00","description":"niien Non-interconnected Greek islands Energy Production","headline":"Niien Open Data","mainEntityOfPage":{"@type":"WebPage","@id":"http://0.0.0.0:4000/2024/12/15/niien-open-data/"},"url":"http://0.0.0.0:4000/2024/12/15/niien-open-data/"}</script> | ||
<!-- End Jekyll SEO tag --> | ||
|
||
</head> | ||
|
||
|
||
<body> | ||
|
||
|
||
|
||
|
||
<div class="container"> | ||
<div class="row justify-content-center"> | ||
<div class="col col-sm-10 col-md-8 col-lg-6"> | ||
<article> | ||
<header> | ||
<div> | ||
<a class="site-title" href="/">gerrykou</a> | ||
<small> | ||
|
||
|
||
|
||
</small> | ||
</div> | ||
<a id="theme-toggle" class="toggle-icon" onclick="modeSwitcher()"></a> | ||
</header> | ||
|
||
<main> | ||
<h1 class="post-title">Niien Open Data</h1> | ||
<time datetime="2024-12-15T00:00:00+00:00" class="post-date">December 15, 2024</time> | ||
<p class="lead"></p> | ||
<h1 id="niien">niien</h1> | ||
<p>Non-interconnected Greek islands Energy Production</p> | ||
|
||
<p>A repository to publish Energy production data for Non-Interconnected Islands Market.</p> | ||
|
||
<p>Find more <a href="https://github.com/gerrykou/niien">here</a></p> | ||
|
||
|
||
</main> | ||
<footer> | ||
<small>© <time datetime="2024-12-15T16:13:35+00:00">2024</time> | ||
Gerry. All rights reserved.</small> | ||
</footer> | ||
|
||
</article> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
<script src="/assets/js/bootstrap.min.js"></script> | ||
|
||
<script src="/assets/js/darkmode.js"></script> | ||
|
||
|
||
</body> | ||
|
||
</html> |
Oops, something went wrong.