Skip to content

Commit 7d431c1

Browse files
committed
2 parents 60dde06 + 2483689 commit 7d431c1

File tree

88 files changed

+1251
-1252
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+1251
-1252
lines changed

posts/airflow/execute-context.html

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<meta property="og:image:alt" content="Composition in architecture" />
1919

2020
<link rel="stylesheet" href="/posts/main.css">
21-
<link rel="alternate" type="application/rss+xml" title="Exploding Labs Blog" href="https://explodinglabs.com/posts/feed.xml">
21+
<link rel="alternate" type="application/rss+xml" title="Exploding Labs" href="https://explodinglabs.com/posts/feed.xml">
2222
<link rel="author" href="https://plus.google.com/u/0/110235318020270619650?rel=author" />
2323

2424
<link rel="icon" type="image/png" href="/posts/assets/favicon-16x16.png?v=2" sizes="16x16">
@@ -33,22 +33,22 @@
3333

3434

3535
<!-- Begin Jekyll SEO tag v2.7.1 -->
36-
<title>What’s in Airflow’s context dictionary? | Exploding Labs Blog</title>
36+
<title>What’s in Airflow’s context dictionary? | Exploding Labs</title>
3737
<meta name="generator" content="Jekyll v4.2.0" />
3838
<meta property="og:title" content="What’s in Airflow’s context dictionary?" />
39-
<meta name="author" content="Beau Barker" />
39+
<meta name="author" content="Exploding Labs" />
4040
<meta property="og:locale" content="en_AU" />
4141
<meta name="description" content="Showing the contents of the “context” object, which is available in an Operator’s execute method, or a PythonOperator’s function definition." />
4242
<meta property="og:description" content="Showing the contents of the “context” object, which is available in an Operator’s execute method, or a PythonOperator’s function definition." />
4343
<link rel="canonical" href="https://explodinglabs.com/posts/airflow/execute-context" />
4444
<meta property="og:url" content="https://explodinglabs.com/posts/airflow/execute-context" />
45-
<meta property="og:site_name" content="Exploding Labs Blog" />
45+
<meta property="og:site_name" content="Exploding Labs" />
4646
<meta property="og:type" content="article" />
4747
<meta property="article:published_time" content="2017-12-13T00:00:00+00:00" />
4848
<meta name="twitter:card" content="summary" />
4949
<meta property="twitter:title" content="What’s in Airflow’s context dictionary?" />
5050
<script type="application/ld+json">
51-
{"description":"Showing the contents of the “context” object, which is available in an Operator’s execute method, or a PythonOperator’s function definition.","mainEntityOfPage":{"@type":"WebPage","@id":"https://explodinglabs.com/posts/airflow/execute-context"},"headline":"What’s in Airflow’s context dictionary?","dateModified":"2025-07-15T23:45:50+00:00","datePublished":"2017-12-13T00:00:00+00:00","url":"https://explodinglabs.com/posts/airflow/execute-context","author":{"@type":"Person","name":"Beau Barker"},"@type":"BlogPosting","@context":"https://schema.org"}</script>
51+
{"description":"Showing the contents of the “context” object, which is available in an Operator’s execute method, or a PythonOperator’s function definition.","mainEntityOfPage":{"@type":"WebPage","@id":"https://explodinglabs.com/posts/airflow/execute-context"},"headline":"What’s in Airflow’s context dictionary?","dateModified":"2025-07-16T00:01:42+00:00","datePublished":"2017-12-13T00:00:00+00:00","url":"https://explodinglabs.com/posts/airflow/execute-context","author":{"@type":"Person","name":"Exploding Labs"},"@type":"BlogPosting","@context":"https://schema.org"}</script>
5252
<!-- End Jekyll SEO tag -->
5353

5454
</head>
@@ -64,16 +64,16 @@
6464
<div id="categories">
6565
<a href="/posts/">Posts</a>
6666
<span>(73)</span>
67-
68-
<a href="/posts/haskell/">Haskell</a>
69-
<span>(2)</span>
70-
67+
7168
<a href="/posts/jsonrpc/">JSON-RPC</a>
7269
<span>(16)</span>
70+
71+
<a href="/posts/haskell/">Haskell</a>
72+
<span>(2)</span>
7373

7474
<a href="/posts/python/">Python</a>
7575
<span>(19)</span>
76-
76+
7777
<a href="/posts/airflow/">Airflow</a>
7878
<span>(6)</span>
7979
</div>
@@ -88,7 +88,7 @@ <h1>What's in Airflow's context dictionary?</h1>
8888
<time datetime="2017-12-13T00:00:00+00:00" itemprop="datePublished">
8989
Beau Barker, <time>Dec 13, 2017</time>.
9090

91-
Updated <time>Jul 15, 2025</time>.
91+
Updated <time>Jul 16, 2025</time>.
9292

9393
<a href="https://github.com/explodinglabs/posts/edit/main/docs/_posts/airflow/2017-12-13-airflows-execute-context.markdown">
9494
&#9998;

posts/airflow/fernet-key.html

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<meta property="og:image:alt" content="Composition in architecture" />
1919

2020
<link rel="stylesheet" href="/posts/main.css">
21-
<link rel="alternate" type="application/rss+xml" title="Exploding Labs Blog" href="https://explodinglabs.com/posts/feed.xml">
21+
<link rel="alternate" type="application/rss+xml" title="Exploding Labs" href="https://explodinglabs.com/posts/feed.xml">
2222
<link rel="author" href="https://plus.google.com/u/0/110235318020270619650?rel=author" />
2323

2424
<link rel="icon" type="image/png" href="/posts/assets/favicon-16x16.png?v=2" sizes="16x16">
@@ -33,22 +33,22 @@
3333

3434

3535
<!-- Begin Jekyll SEO tag v2.7.1 -->
36-
<title>How to generate a Fernet key? | Exploding Labs Blog</title>
36+
<title>How to generate a Fernet key? | Exploding Labs</title>
3737
<meta name="generator" content="Jekyll v4.2.0" />
3838
<meta property="og:title" content="How to generate a Fernet key?" />
39-
<meta name="author" content="Beau Barker" />
39+
<meta name="author" content="Exploding Labs" />
4040
<meta property="og:locale" content="en_AU" />
4141
<meta name="description" content="How to create a fernet key which is required for storing encrypted passwords." />
4242
<meta property="og:description" content="How to create a fernet key which is required for storing encrypted passwords." />
4343
<link rel="canonical" href="https://explodinglabs.com/posts/airflow/fernet-key" />
4444
<meta property="og:url" content="https://explodinglabs.com/posts/airflow/fernet-key" />
45-
<meta property="og:site_name" content="Exploding Labs Blog" />
45+
<meta property="og:site_name" content="Exploding Labs" />
4646
<meta property="og:type" content="article" />
4747
<meta property="article:published_time" content="2018-01-12T00:00:00+00:00" />
4848
<meta name="twitter:card" content="summary" />
4949
<meta property="twitter:title" content="How to generate a Fernet key?" />
5050
<script type="application/ld+json">
51-
{"description":"How to create a fernet key which is required for storing encrypted passwords.","mainEntityOfPage":{"@type":"WebPage","@id":"https://explodinglabs.com/posts/airflow/fernet-key"},"headline":"How to generate a Fernet key?","dateModified":"2025-07-15T23:45:50+00:00","datePublished":"2018-01-12T00:00:00+00:00","url":"https://explodinglabs.com/posts/airflow/fernet-key","author":{"@type":"Person","name":"Beau Barker"},"@type":"BlogPosting","@context":"https://schema.org"}</script>
51+
{"description":"How to create a fernet key which is required for storing encrypted passwords.","mainEntityOfPage":{"@type":"WebPage","@id":"https://explodinglabs.com/posts/airflow/fernet-key"},"headline":"How to generate a Fernet key?","dateModified":"2025-07-16T00:01:42+00:00","datePublished":"2018-01-12T00:00:00+00:00","url":"https://explodinglabs.com/posts/airflow/fernet-key","author":{"@type":"Person","name":"Exploding Labs"},"@type":"BlogPosting","@context":"https://schema.org"}</script>
5252
<!-- End Jekyll SEO tag -->
5353

5454
</head>
@@ -64,16 +64,16 @@
6464
<div id="categories">
6565
<a href="/posts/">Posts</a>
6666
<span>(73)</span>
67-
68-
<a href="/posts/haskell/">Haskell</a>
69-
<span>(2)</span>
70-
67+
7168
<a href="/posts/jsonrpc/">JSON-RPC</a>
7269
<span>(16)</span>
70+
71+
<a href="/posts/haskell/">Haskell</a>
72+
<span>(2)</span>
7373

7474
<a href="/posts/python/">Python</a>
7575
<span>(19)</span>
76-
76+
7777
<a href="/posts/airflow/">Airflow</a>
7878
<span>(6)</span>
7979
</div>
@@ -88,7 +88,7 @@ <h1>How to generate a Fernet key?</h1>
8888
<time datetime="2018-01-12T00:00:00+00:00" itemprop="datePublished">
8989
Beau Barker, <time>Jan 12, 2018</time>.
9090

91-
Updated <time>Jul 15, 2025</time>.
91+
Updated <time>Jul 16, 2025</time>.
9292

9393
<a href="https://github.com/explodinglabs/posts/edit/main/docs/_posts/airflow/2018-01-12-generate-fernet-key.markdown">
9494
&#9998;

posts/airflow/gpl-dependency-error-with-pip.html

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<meta property="og:image:alt" content="Composition in architecture" />
1919

2020
<link rel="stylesheet" href="/posts/main.css">
21-
<link rel="alternate" type="application/rss+xml" title="Exploding Labs Blog" href="https://explodinglabs.com/posts/feed.xml">
21+
<link rel="alternate" type="application/rss+xml" title="Exploding Labs" href="https://explodinglabs.com/posts/feed.xml">
2222
<link rel="author" href="https://plus.google.com/u/0/110235318020270619650?rel=author" />
2323

2424
<link rel="icon" type="image/png" href="/posts/assets/favicon-16x16.png?v=2" sizes="16x16">
@@ -33,22 +33,22 @@
3333

3434

3535
<!-- Begin Jekyll SEO tag v2.7.1 -->
36-
<title>GPL dependency error installing Airflow 1.10 | Exploding Labs Blog</title>
36+
<title>GPL dependency error installing Airflow 1.10 | Exploding Labs</title>
3737
<meta name="generator" content="Jekyll v4.2.0" />
3838
<meta property="og:title" content="GPL dependency error installing Airflow 1.10" />
39-
<meta name="author" content="Beau Barker" />
39+
<meta name="author" content="Exploding Labs" />
4040
<meta property="og:locale" content="en_AU" />
41-
<meta name="description" content="A programming blog." />
42-
<meta property="og:description" content="A programming blog." />
41+
<meta name="description" content="Posts about Exploding Labs projects and other interests." />
42+
<meta property="og:description" content="Posts about Exploding Labs projects and other interests." />
4343
<link rel="canonical" href="https://explodinglabs.com/posts/airflow/gpl-dependency-error-with-pip" />
4444
<meta property="og:url" content="https://explodinglabs.com/posts/airflow/gpl-dependency-error-with-pip" />
45-
<meta property="og:site_name" content="Exploding Labs Blog" />
45+
<meta property="og:site_name" content="Exploding Labs" />
4646
<meta property="og:type" content="article" />
4747
<meta property="article:published_time" content="2018-08-28T00:00:00+00:00" />
4848
<meta name="twitter:card" content="summary" />
4949
<meta property="twitter:title" content="GPL dependency error installing Airflow 1.10" />
5050
<script type="application/ld+json">
51-
{"description":"A programming blog.","mainEntityOfPage":{"@type":"WebPage","@id":"https://explodinglabs.com/posts/airflow/gpl-dependency-error-with-pip"},"headline":"GPL dependency error installing Airflow 1.10","dateModified":"2025-07-15T23:45:50+00:00","datePublished":"2018-08-28T00:00:00+00:00","url":"https://explodinglabs.com/posts/airflow/gpl-dependency-error-with-pip","author":{"@type":"Person","name":"Beau Barker"},"@type":"BlogPosting","@context":"https://schema.org"}</script>
51+
{"description":"Posts about Exploding Labs projects and other interests.","mainEntityOfPage":{"@type":"WebPage","@id":"https://explodinglabs.com/posts/airflow/gpl-dependency-error-with-pip"},"headline":"GPL dependency error installing Airflow 1.10","dateModified":"2025-07-16T00:01:42+00:00","datePublished":"2018-08-28T00:00:00+00:00","url":"https://explodinglabs.com/posts/airflow/gpl-dependency-error-with-pip","author":{"@type":"Person","name":"Exploding Labs"},"@type":"BlogPosting","@context":"https://schema.org"}</script>
5252
<!-- End Jekyll SEO tag -->
5353

5454
</head>
@@ -64,16 +64,16 @@
6464
<div id="categories">
6565
<a href="/posts/">Posts</a>
6666
<span>(73)</span>
67-
68-
<a href="/posts/haskell/">Haskell</a>
69-
<span>(2)</span>
70-
67+
7168
<a href="/posts/jsonrpc/">JSON-RPC</a>
7269
<span>(16)</span>
70+
71+
<a href="/posts/haskell/">Haskell</a>
72+
<span>(2)</span>
7373

7474
<a href="/posts/python/">Python</a>
7575
<span>(19)</span>
76-
76+
7777
<a href="/posts/airflow/">Airflow</a>
7878
<span>(6)</span>
7979
</div>
@@ -88,7 +88,7 @@ <h1>GPL dependency error installing Airflow 1.10</h1>
8888
<time datetime="2018-08-28T00:00:00+00:00" itemprop="datePublished">
8989
Beau Barker, <time>Aug 28, 2018</time>.
9090

91-
Updated <time>Jul 15, 2025</time>.
91+
Updated <time>Jul 16, 2025</time>.
9292

9393
<a href="https://github.com/explodinglabs/posts/edit/main/docs/_posts/airflow/2018-08-28-gpl-dependency-error-in-airflow-1.10.markdown">
9494
&#9998;

posts/airflow/hide-globals-in-dag-definition-file.html

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<meta property="og:image:alt" content="Composition in architecture" />
1919

2020
<link rel="stylesheet" href="/posts/main.css">
21-
<link rel="alternate" type="application/rss+xml" title="Exploding Labs Blog" href="https://explodinglabs.com/posts/feed.xml">
21+
<link rel="alternate" type="application/rss+xml" title="Exploding Labs" href="https://explodinglabs.com/posts/feed.xml">
2222
<link rel="author" href="https://plus.google.com/u/0/110235318020270619650?rel=author" />
2323

2424
<link rel="icon" type="image/png" href="/posts/assets/favicon-16x16.png?v=2" sizes="16x16">
@@ -33,22 +33,22 @@
3333

3434

3535
<!-- Begin Jekyll SEO tag v2.7.1 -->
36-
<title>How to hide globals in an Airflow DAG definition file? | Exploding Labs Blog</title>
36+
<title>How to hide globals in an Airflow DAG definition file? | Exploding Labs</title>
3737
<meta name="generator" content="Jekyll v4.2.0" />
3838
<meta property="og:title" content="How to hide globals in an Airflow DAG definition file?" />
39-
<meta name="author" content="Beau Barker" />
39+
<meta name="author" content="Exploding Labs" />
4040
<meta property="og:locale" content="en_AU" />
4141
<meta name="description" content="Don’t instantiate the DAG and operators when importing your DAG definition file." />
4242
<meta property="og:description" content="Don’t instantiate the DAG and operators when importing your DAG definition file." />
4343
<link rel="canonical" href="https://explodinglabs.com/posts/airflow/hide-globals-in-dag-definition-file" />
4444
<meta property="og:url" content="https://explodinglabs.com/posts/airflow/hide-globals-in-dag-definition-file" />
45-
<meta property="og:site_name" content="Exploding Labs Blog" />
45+
<meta property="og:site_name" content="Exploding Labs" />
4646
<meta property="og:type" content="article" />
4747
<meta property="article:published_time" content="2018-03-06T00:00:00+00:00" />
4848
<meta name="twitter:card" content="summary" />
4949
<meta property="twitter:title" content="How to hide globals in an Airflow DAG definition file?" />
5050
<script type="application/ld+json">
51-
{"description":"Don’t instantiate the DAG and operators when importing your DAG definition file.","mainEntityOfPage":{"@type":"WebPage","@id":"https://explodinglabs.com/posts/airflow/hide-globals-in-dag-definition-file"},"headline":"How to hide globals in an Airflow DAG definition file?","dateModified":"2025-07-15T23:45:50+00:00","datePublished":"2018-03-06T00:00:00+00:00","url":"https://explodinglabs.com/posts/airflow/hide-globals-in-dag-definition-file","author":{"@type":"Person","name":"Beau Barker"},"@type":"BlogPosting","@context":"https://schema.org"}</script>
51+
{"description":"Don’t instantiate the DAG and operators when importing your DAG definition file.","mainEntityOfPage":{"@type":"WebPage","@id":"https://explodinglabs.com/posts/airflow/hide-globals-in-dag-definition-file"},"headline":"How to hide globals in an Airflow DAG definition file?","dateModified":"2025-07-16T00:01:42+00:00","datePublished":"2018-03-06T00:00:00+00:00","url":"https://explodinglabs.com/posts/airflow/hide-globals-in-dag-definition-file","author":{"@type":"Person","name":"Exploding Labs"},"@type":"BlogPosting","@context":"https://schema.org"}</script>
5252
<!-- End Jekyll SEO tag -->
5353

5454
</head>
@@ -64,16 +64,16 @@
6464
<div id="categories">
6565
<a href="/posts/">Posts</a>
6666
<span>(73)</span>
67-
68-
<a href="/posts/haskell/">Haskell</a>
69-
<span>(2)</span>
70-
67+
7168
<a href="/posts/jsonrpc/">JSON-RPC</a>
7269
<span>(16)</span>
70+
71+
<a href="/posts/haskell/">Haskell</a>
72+
<span>(2)</span>
7373

7474
<a href="/posts/python/">Python</a>
7575
<span>(19)</span>
76-
76+
7777
<a href="/posts/airflow/">Airflow</a>
7878
<span>(6)</span>
7979
</div>
@@ -88,7 +88,7 @@ <h1>How to hide globals in an Airflow DAG definition file?</h1>
8888
<time datetime="2018-03-06T00:00:00+00:00" itemprop="datePublished">
8989
Beau Barker, <time>Mar 6, 2018</time>.
9090

91-
Updated <time>Jul 15, 2025</time>.
91+
Updated <time>Jul 16, 2025</time>.
9292

9393
<a href="https://github.com/explodinglabs/posts/edit/main/docs/_posts/airflow/2018-03-06-hide-globals-in-dag-definition-file.markdown">
9494
&#9998;

posts/airflow/index.html

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<meta property="og:image:alt" content="Composition in architecture" />
1919

2020
<link rel="stylesheet" href="/posts/main.css">
21-
<link rel="alternate" type="application/rss+xml" title="Exploding Labs Blog" href="https://explodinglabs.com/posts/feed.xml">
21+
<link rel="alternate" type="application/rss+xml" title="Exploding Labs" href="https://explodinglabs.com/posts/feed.xml">
2222
<link rel="author" href="https://plus.google.com/u/0/110235318020270619650?rel=author" />
2323

2424
<link rel="icon" type="image/png" href="/posts/assets/favicon-16x16.png?v=2" sizes="16x16">
@@ -33,20 +33,20 @@
3333

3434

3535
<!-- Begin Jekyll SEO tag v2.7.1 -->
36-
<title>Airflow | Exploding Labs Blog</title>
36+
<title>Airflow | Exploding Labs</title>
3737
<meta name="generator" content="Jekyll v4.2.0" />
3838
<meta property="og:title" content="Airflow" />
39-
<meta name="author" content="Beau Barker" />
39+
<meta name="author" content="Exploding Labs" />
4040
<meta property="og:locale" content="en_AU" />
41-
<meta name="description" content="A programming blog." />
42-
<meta property="og:description" content="A programming blog." />
41+
<meta name="description" content="Posts about Exploding Labs projects and other interests." />
42+
<meta property="og:description" content="Posts about Exploding Labs projects and other interests." />
4343
<link rel="canonical" href="https://explodinglabs.com/posts/airflow/" />
4444
<meta property="og:url" content="https://explodinglabs.com/posts/airflow/" />
45-
<meta property="og:site_name" content="Exploding Labs Blog" />
45+
<meta property="og:site_name" content="Exploding Labs" />
4646
<meta name="twitter:card" content="summary" />
4747
<meta property="twitter:title" content="Airflow" />
4848
<script type="application/ld+json">
49-
{"description":"A programming blog.","headline":"Airflow","dateModified":"2025-07-15T23:45:50+00:00","url":"https://explodinglabs.com/posts/airflow/","author":{"@type":"Person","name":"Beau Barker"},"@type":"WebPage","@context":"https://schema.org"}</script>
49+
{"description":"Posts about Exploding Labs projects and other interests.","headline":"Airflow","dateModified":"2025-07-16T00:01:42+00:00","url":"https://explodinglabs.com/posts/airflow/","author":{"@type":"Person","name":"Exploding Labs"},"@type":"WebPage","@context":"https://schema.org"}</script>
5050
<!-- End Jekyll SEO tag -->
5151

5252
</head>
@@ -58,16 +58,16 @@
5858
<div id="categories">
5959
<a href="/posts/">Posts</a>
6060
<span>(73)</span>
61-
62-
<a href="/posts/haskell/">Haskell</a>
63-
<span>(2)</span>
64-
61+
6562
<a href="/posts/jsonrpc/">JSON-RPC</a>
6663
<span>(16)</span>
64+
65+
<a href="/posts/haskell/">Haskell</a>
66+
<span>(2)</span>
6767

6868
<a href="/posts/python/">Python</a>
6969
<span>(19)</span>
70-
70+
7171
<a href="/posts/airflow/">Airflow</a>
7272
<span>(6)</span>
7373
</div>

0 commit comments

Comments
 (0)