Skip to content

Instantly share code, notes, and snippets.

View enspdf's full-sized avatar
💻
Reacting ⚛️ :atom:

Sebastian Higuita Castañeda enspdf

💻
Reacting ⚛️ :atom:
View GitHub Profile
@enspdf
enspdf / Airflow external triggers
Created September 8, 2022 19:17 — forked from bartosz25/Airflow external triggers
Apache Airflow external trigger example
curl -X POST http://localhost:8081/api/experimental/dags/hello_world_a/dag_runs -H 'Cache-Control: no-cache' -H 'Content-Type: application/json' -d '{"conf":"{\"task_payload\":\"payload1\"}"}'
curl -X POST http://localhost:8081/api/experimental/dags/hello_world_a/dag_runs -H 'Cache-Control: no-cache' -H 'Content-Type: application/json' -d '{"conf":"{\"task_payload\":\"payload2\"}"}'
curl -X POST http://localhost:8081/api/experimental/dags/hello_world_a/dag_runs -H 'Cache-Control: no-cache' -H 'Content-Type: application/json' -d '{"conf":"{\"task_payload\":\"payload3\"}"}'
@enspdf
enspdf / Java11_PopOS.markdown
Created September 22, 2022 20:19 — forked from IvanCl4udio/Java11_PopOS.markdown
How install and config Java 11 on PopOS

How install and config Java 11 on PopOS

Introduction

PopOS is created from Ubuntu, so the configuration for Java environment can be follow the same way. We need only install the new version from the JDK and automatically it will be set as default. However, if you like rollback to previously version that was installed before, you can use the last step to do that.

Steps

Install the JDK 11

sudo apt update