├── docs ├── CNAME ├── database │ └── index.md ├── assets │ └── logo │ │ ├── avro.png │ │ ├── csv.png │ │ ├── hudi.png │ │ ├── orc.png │ │ ├── airflow.png │ │ ├── dagster.png │ │ ├── iceberg.png │ │ ├── delta_lake.png │ │ ├── prefect.svg │ │ └── mage.svg ├── stylesheets │ └── extra.css ├── index.md └── javascripts │ └── tableselect.js ├── site ├── CNAME ├── assets │ ├── javascripts │ │ └── lunr │ │ │ └── min │ │ │ ├── lunr.jp.min.js │ │ │ ├── lunr.vi.min.js │ │ │ ├── lunr.multi.min.js │ │ │ ├── lunr.th.min.js │ │ │ ├── lunr.hy.min.js │ │ │ ├── lunr.te.min.js │ │ │ ├── lunr.ta.min.js │ │ │ ├── lunr.zh.min.js │ │ │ ├── lunr.ja.min.js │ │ │ ├── lunr.hi.min.js │ │ │ ├── lunr.kn.min.js │ │ │ ├── lunr.sa.min.js │ │ │ ├── lunr.stemmer.support.min.js │ │ │ ├── lunr.ko.min.js │ │ │ ├── lunr.sv.min.js │ │ │ ├── lunr.da.min.js │ │ │ ├── lunr.no.min.js │ │ │ ├── lunr.he.min.js │ │ │ ├── lunr.nl.min.js │ │ │ ├── lunr.de.min.js │ │ │ └── lunr.du.min.js │ ├── logo │ │ ├── avro.png │ │ ├── csv.png │ │ ├── hudi.png │ │ ├── orc.png │ │ ├── airflow.png │ │ ├── dagster.png │ │ ├── iceberg.png │ │ ├── delta_lake.png │ │ ├── prefect.svg │ │ └── mage.svg │ ├── images │ │ ├── favicon.png │ │ └── social │ │ │ ├── index.png │ │ │ ├── file │ │ │ ├── index.png │ │ │ ├── apache_avro │ │ │ │ ├── csv.png │ │ │ │ ├── apache_orc.png │ │ │ │ ├── delta_lake.png │ │ │ │ ├── apache_hudi.png │ │ │ │ ├── apache_iceberg.png │ │ │ │ └── apache_parquet.png │ │ │ ├── apache_hudi │ │ │ │ ├── csv.png │ │ │ │ ├── apache_orc.png │ │ │ │ ├── delta_lake.png │ │ │ │ ├── apache_avro.png │ │ │ │ ├── apache_iceberg.png │ │ │ │ └── apache_parquet.png │ │ │ ├── apache_orc │ │ │ │ ├── csv.png │ │ │ │ ├── apache_avro.png │ │ │ │ ├── apache_hudi.png │ │ │ │ ├── delta_lake.png │ │ │ │ ├── apache_iceberg.png │ │ │ │ └── apache_parquet.png │ │ │ ├── csv │ │ │ │ ├── apache_avro.png │ │ │ │ ├── apache_hudi.png │ │ │ │ ├── apache_orc.png │ │ │ │ ├── delta_lake.png │ │ │ │ ├── apache_iceberg.png │ │ │ │ └── apache_parquet.png │ │ │ ├── delta_lake │ │ │ │ ├── csv.png │ │ │ │ ├── apache_avro.png │ │ │ │ ├── apache_hudi.png │ │ │ │ ├── apache_orc.png │ │ │ │ ├── apache_iceberg.png │ │ │ │ └── apache_parquet.png │ │ │ ├── apache_iceberg │ │ │ │ ├── csv.png │ │ │ │ ├── apache_orc.png │ │ │ │ ├── delta_lake.png │ │ │ │ ├── apache_avro.png │ │ │ │ ├── apache_hudi.png │ │ │ │ └── apache_parquet.png │ │ │ └── apache_parquet │ │ │ │ ├── csv.png │ │ │ │ ├── apache_orc.png │ │ │ │ ├── delta_lake.png │ │ │ │ ├── apache_avro.png │ │ │ │ ├── apache_hudi.png │ │ │ │ └── apache_iceberg.png │ │ │ ├── database │ │ │ └── index.png │ │ │ └── job_orchestration │ │ │ ├── index.png │ │ │ ├── dagster │ │ │ ├── mage.png │ │ │ ├── prefect.png │ │ │ └── apache_airflow.png │ │ │ ├── mage │ │ │ ├── dagster.png │ │ │ ├── prefect.png │ │ │ └── apache_airflow.png │ │ │ ├── prefect │ │ │ ├── mage.png │ │ │ ├── dagster.png │ │ │ └── apache_airflow.png │ │ │ └── apache_airflow │ │ │ ├── mage.png │ │ │ ├── dagster.png │ │ │ └── prefect.png │ └── external │ │ ├── fonts.gstatic.com │ │ └── s │ │ │ ├── roboto │ │ │ └── v30 │ │ │ │ ├── KFOmCnqEu92Fr1Mu4mxK.woff2 │ │ │ │ ├── KFOkCnqEu92Fr1Mu51xIIzI.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fBBc4.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfBBc4.woff2 │ │ │ │ ├── KFOmCnqEu92Fr1Mu4WxKOzY.woff2 │ │ │ │ ├── KFOmCnqEu92Fr1Mu5mxKOzY.woff2 │ │ │ │ ├── KFOmCnqEu92Fr1Mu72xKOzY.woff2 │ │ │ │ ├── KFOmCnqEu92Fr1Mu7GxKOzY.woff2 │ │ │ │ ├── KFOmCnqEu92Fr1Mu7WxKOzY.woff2 │ │ │ │ ├── KFOmCnqEu92Fr1Mu7mxKOzY.woff2 │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TjASc6CsQ.woff2 │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TzBic6CsQ.woff2 │ │ │ │ ├── KFOkCnqEu92Fr1Mu51xEIzIFKw.woff2 │ │ │ │ ├── KFOkCnqEu92Fr1Mu51xFIzIFKw.woff2 │ │ │ │ ├── KFOkCnqEu92Fr1Mu51xGIzIFKw.woff2 │ │ │ │ ├── KFOkCnqEu92Fr1Mu51xHIzIFKw.woff2 │ │ │ │ ├── KFOkCnqEu92Fr1Mu51xLIzIFKw.woff2 │ │ │ │ ├── KFOkCnqEu92Fr1Mu51xMIzIFKw.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fABc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fBxc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fCBc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fCRc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fChc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fCxc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2 │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TjASc-CsTKlA.woff2 │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TjASc0CsTKlA.woff2 │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TjASc1CsTKlA.woff2 │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TjASc2CsTKlA.woff2 │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TjASc3CsTKlA.woff2 │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TjASc5CsTKlA.woff2 │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TzBic-CsTKlA.woff2 │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TzBic0CsTKlA.woff2 │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TzBic1CsTKlA.woff2 │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TzBic2CsTKlA.woff2 │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TzBic3CsTKlA.woff2 │ │ │ │ └── KFOjCnqEu92Fr1Mu51TzBic5CsTKlA.woff2 │ │ │ └── robotomono │ │ │ └── v23 │ │ │ ├── L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSh0mQ.woff2 │ │ │ ├── L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSV0mf0h.woff2 │ │ │ ├── L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSZ0mf0h.woff2 │ │ │ ├── L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSd0mf0h.woff2 │ │ │ ├── L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSt0mf0h.woff2 │ │ │ ├── L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSx0mf0h.woff2 │ │ │ ├── L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEm-Ul.woff2 │ │ │ ├── L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtElOUlYIw.woff2 │ │ │ ├── L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEleUlYIw.woff2 │ │ │ ├── L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEluUlYIw.woff2 │ │ │ ├── L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEmOUlYIw.woff2 │ │ │ └── L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEn-UlYIw.woff2 │ │ └── cdn.datatables.net │ │ └── fixedheader │ │ └── 3.4.0 │ │ └── css │ │ └── fixedHeader.dataTables.min.css ├── sitemap.xml.gz ├── stylesheets │ └── extra.css ├── js │ └── open_in_new_tab.js └── javascripts │ └── tableselect.js ├── .cache └── plugin │ ├── privacy │ └── assets │ │ └── external │ │ ├── fonts.googleapis.com │ │ └── css.49ea35f2 │ │ ├── fonts.gstatic.com │ │ └── s │ │ │ ├── roboto │ │ │ └── v30 │ │ │ │ ├── KFOmCnqEu92Fr1Mu4mxK.woff2 │ │ │ │ ├── KFOkCnqEu92Fr1Mu51xIIzI.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fBBc4.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfBBc4.woff2 │ │ │ │ ├── KFOmCnqEu92Fr1Mu4WxKOzY.woff2 │ │ │ │ ├── KFOmCnqEu92Fr1Mu5mxKOzY.woff2 │ │ │ │ ├── KFOmCnqEu92Fr1Mu72xKOzY.woff2 │ │ │ │ ├── KFOmCnqEu92Fr1Mu7GxKOzY.woff2 │ │ │ │ ├── KFOmCnqEu92Fr1Mu7WxKOzY.woff2 │ │ │ │ ├── KFOmCnqEu92Fr1Mu7mxKOzY.woff2 │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TjASc6CsQ.woff2 │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TzBic6CsQ.woff2 │ │ │ │ ├── KFOkCnqEu92Fr1Mu51xEIzIFKw.woff2 │ │ │ │ ├── KFOkCnqEu92Fr1Mu51xFIzIFKw.woff2 │ │ │ │ ├── KFOkCnqEu92Fr1Mu51xGIzIFKw.woff2 │ │ │ │ ├── KFOkCnqEu92Fr1Mu51xHIzIFKw.woff2 │ │ │ │ ├── KFOkCnqEu92Fr1Mu51xLIzIFKw.woff2 │ │ │ │ ├── KFOkCnqEu92Fr1Mu51xMIzIFKw.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fABc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fBxc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fCBc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fCRc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fChc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmSU5fCxc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2 │ │ │ │ ├── KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2 │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TjASc-CsTKlA.woff2 │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TjASc0CsTKlA.woff2 │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TjASc1CsTKlA.woff2 │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TjASc2CsTKlA.woff2 │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TjASc3CsTKlA.woff2 │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TjASc5CsTKlA.woff2 │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TzBic-CsTKlA.woff2 │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TzBic0CsTKlA.woff2 │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TzBic1CsTKlA.woff2 │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TzBic2CsTKlA.woff2 │ │ │ │ ├── KFOjCnqEu92Fr1Mu51TzBic3CsTKlA.woff2 │ │ │ │ └── KFOjCnqEu92Fr1Mu51TzBic5CsTKlA.woff2 │ │ │ └── robotomono │ │ │ └── v23 │ │ │ ├── L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSh0mQ.woff2 │ │ │ ├── L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSV0mf0h.woff2 │ │ │ ├── L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSZ0mf0h.woff2 │ │ │ ├── L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSd0mf0h.woff2 │ │ │ ├── L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSt0mf0h.woff2 │ │ │ ├── L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSx0mf0h.woff2 │ │ │ ├── L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEm-Ul.woff2 │ │ │ ├── L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtElOUlYIw.woff2 │ │ │ ├── L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEleUlYIw.woff2 │ │ │ ├── L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEluUlYIw.woff2 │ │ │ ├── L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEmOUlYIw.woff2 │ │ │ └── L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEn-UlYIw.woff2 │ │ └── cdn.datatables.net │ │ └── fixedheader │ │ └── 3.4.0 │ │ └── css │ │ └── fixedHeader.dataTables.min.css │ ├── optimize │ ├── assets │ │ ├── logo │ │ │ ├── csv.png │ │ │ ├── orc.png │ │ │ ├── avro.png │ │ │ ├── hudi.png │ │ │ ├── airflow.png │ │ │ ├── dagster.png │ │ │ ├── iceberg.png │ │ │ └── delta_lake.png │ │ └── images │ │ │ └── favicon.png │ └── manifest.json │ └── social │ ├── fonts │ └── Roboto │ │ ├── Bold.ttf │ │ ├── Thin.ttf │ │ ├── Black.ttf │ │ ├── Italic.ttf │ │ ├── Light.ttf │ │ ├── Medium.ttf │ │ ├── Regular.ttf │ │ ├── Black Italic.ttf │ │ ├── Bold Italic.ttf │ │ ├── Light Italic.ttf │ │ ├── Thin Italic.ttf │ │ └── Medium Italic.ttf │ ├── assets │ └── images │ │ └── social │ │ ├── index.png │ │ ├── file │ │ ├── index.png │ │ ├── apache_orc │ │ │ ├── csv.png │ │ │ ├── delta_lake.png │ │ │ ├── apache_avro.png │ │ │ ├── apache_hudi.png │ │ │ ├── apache_iceberg.png │ │ │ └── apache_parquet.png │ │ ├── csv │ │ │ ├── apache_orc.png │ │ │ ├── delta_lake.png │ │ │ ├── apache_avro.png │ │ │ ├── apache_hudi.png │ │ │ ├── apache_iceberg.png │ │ │ └── apache_parquet.png │ │ ├── delta_lake │ │ │ ├── csv.png │ │ │ ├── apache_orc.png │ │ │ ├── apache_avro.png │ │ │ ├── apache_hudi.png │ │ │ ├── apache_iceberg.png │ │ │ └── apache_parquet.png │ │ ├── apache_avro │ │ │ ├── csv.png │ │ │ ├── apache_hudi.png │ │ │ ├── apache_orc.png │ │ │ ├── delta_lake.png │ │ │ ├── apache_iceberg.png │ │ │ └── apache_parquet.png │ │ ├── apache_hudi │ │ │ ├── csv.png │ │ │ ├── apache_avro.png │ │ │ ├── apache_orc.png │ │ │ ├── delta_lake.png │ │ │ ├── apache_iceberg.png │ │ │ └── apache_parquet.png │ │ ├── apache_iceberg │ │ │ ├── csv.png │ │ │ ├── apache_avro.png │ │ │ ├── apache_hudi.png │ │ │ ├── apache_orc.png │ │ │ ├── delta_lake.png │ │ │ └── apache_parquet.png │ │ └── apache_parquet │ │ │ ├── csv.png │ │ │ ├── apache_avro.png │ │ │ ├── apache_hudi.png │ │ │ ├── apache_orc.png │ │ │ ├── delta_lake.png │ │ │ └── apache_iceberg.png │ │ ├── database │ │ └── index.png │ │ └── job_orchestration │ │ ├── index.png │ │ ├── dagster │ │ ├── mage.png │ │ ├── prefect.png │ │ └── apache_airflow.png │ │ ├── mage │ │ ├── dagster.png │ │ ├── prefect.png │ │ └── apache_airflow.png │ │ ├── prefect │ │ ├── mage.png │ │ ├── dagster.png │ │ └── apache_airflow.png │ │ └── apache_airflow │ │ ├── mage.png │ │ ├── dagster.png │ │ └── prefect.png │ └── manifest.json ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .gitignore ├── .gitattributes ├── llm └── prompts.txt ├── settings.gradle.kts ├── .github └── workflows │ └── ci.yaml ├── tech ├── job_orchestration │ ├── prefect.yaml │ ├── apache-airflow.yaml │ ├── mage.yaml │ └── dagster.yaml ├── file │ ├── apache-hudi.yaml │ ├── apache-orc.yaml │ ├── apache-iceberg.yaml │ ├── delta-lake.yaml │ ├── apache-avro.yaml │ ├── csv.yaml │ └── apache-parquet.yaml └── templates │ └── template-index.ftl ├── gradlew.bat └── README.md /docs/CNAME: -------------------------------------------------------------------------------- 1 | tech-diff.com -------------------------------------------------------------------------------- /site/CNAME: -------------------------------------------------------------------------------- 1 | tech-diff.com -------------------------------------------------------------------------------- /docs/database/index.md: -------------------------------------------------------------------------------- 1 | # Databases 2 | -------------------------------------------------------------------------------- /site/assets/javascripts/lunr/min/lunr.jp.min.js: -------------------------------------------------------------------------------- 1 | module.exports=require("./lunr.ja"); -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.googleapis.com/css.49ea35f2: -------------------------------------------------------------------------------- 1 | css.49ea35f2.css -------------------------------------------------------------------------------- /site/sitemap.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/sitemap.xml.gz -------------------------------------------------------------------------------- /docs/assets/logo/avro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/docs/assets/logo/avro.png -------------------------------------------------------------------------------- /docs/assets/logo/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/docs/assets/logo/csv.png -------------------------------------------------------------------------------- /docs/assets/logo/hudi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/docs/assets/logo/hudi.png -------------------------------------------------------------------------------- /docs/assets/logo/orc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/docs/assets/logo/orc.png -------------------------------------------------------------------------------- /site/assets/logo/avro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/logo/avro.png -------------------------------------------------------------------------------- /site/assets/logo/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/logo/csv.png -------------------------------------------------------------------------------- /site/assets/logo/hudi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/logo/hudi.png -------------------------------------------------------------------------------- /site/assets/logo/orc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/logo/orc.png -------------------------------------------------------------------------------- /docs/assets/logo/airflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/docs/assets/logo/airflow.png -------------------------------------------------------------------------------- /docs/assets/logo/dagster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/docs/assets/logo/dagster.png -------------------------------------------------------------------------------- /docs/assets/logo/iceberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/docs/assets/logo/iceberg.png -------------------------------------------------------------------------------- /site/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/favicon.png -------------------------------------------------------------------------------- /site/assets/logo/airflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/logo/airflow.png -------------------------------------------------------------------------------- /site/assets/logo/dagster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/logo/dagster.png -------------------------------------------------------------------------------- /site/assets/logo/iceberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/logo/iceberg.png -------------------------------------------------------------------------------- /docs/assets/logo/delta_lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/docs/assets/logo/delta_lake.png -------------------------------------------------------------------------------- /site/assets/logo/delta_lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/logo/delta_lake.png -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /site/assets/images/social/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/index.png -------------------------------------------------------------------------------- /site/assets/images/social/file/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/index.png -------------------------------------------------------------------------------- /.cache/plugin/optimize/assets/logo/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/optimize/assets/logo/csv.png -------------------------------------------------------------------------------- /.cache/plugin/optimize/assets/logo/orc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/optimize/assets/logo/orc.png -------------------------------------------------------------------------------- /.cache/plugin/social/fonts/Roboto/Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/fonts/Roboto/Bold.ttf -------------------------------------------------------------------------------- /.cache/plugin/social/fonts/Roboto/Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/fonts/Roboto/Thin.ttf -------------------------------------------------------------------------------- /.cache/plugin/optimize/assets/logo/avro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/optimize/assets/logo/avro.png -------------------------------------------------------------------------------- /.cache/plugin/optimize/assets/logo/hudi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/optimize/assets/logo/hudi.png -------------------------------------------------------------------------------- /.cache/plugin/social/fonts/Roboto/Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/fonts/Roboto/Black.ttf -------------------------------------------------------------------------------- /.cache/plugin/social/fonts/Roboto/Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/fonts/Roboto/Italic.ttf -------------------------------------------------------------------------------- /.cache/plugin/social/fonts/Roboto/Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/fonts/Roboto/Light.ttf -------------------------------------------------------------------------------- /.cache/plugin/social/fonts/Roboto/Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/fonts/Roboto/Medium.ttf -------------------------------------------------------------------------------- /.cache/plugin/social/fonts/Roboto/Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/fonts/Roboto/Regular.ttf -------------------------------------------------------------------------------- /site/assets/images/social/database/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/database/index.png -------------------------------------------------------------------------------- /.cache/plugin/optimize/assets/logo/airflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/optimize/assets/logo/airflow.png -------------------------------------------------------------------------------- /.cache/plugin/optimize/assets/logo/dagster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/optimize/assets/logo/dagster.png -------------------------------------------------------------------------------- /.cache/plugin/optimize/assets/logo/iceberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/optimize/assets/logo/iceberg.png -------------------------------------------------------------------------------- /.cache/plugin/optimize/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/optimize/assets/images/favicon.png -------------------------------------------------------------------------------- /.cache/plugin/optimize/assets/logo/delta_lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/optimize/assets/logo/delta_lake.png -------------------------------------------------------------------------------- /.cache/plugin/social/fonts/Roboto/Black Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/fonts/Roboto/Black Italic.ttf -------------------------------------------------------------------------------- /.cache/plugin/social/fonts/Roboto/Bold Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/fonts/Roboto/Bold Italic.ttf -------------------------------------------------------------------------------- /.cache/plugin/social/fonts/Roboto/Light Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/fonts/Roboto/Light Italic.ttf -------------------------------------------------------------------------------- /.cache/plugin/social/fonts/Roboto/Thin Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/fonts/Roboto/Thin Italic.ttf -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_avro/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_avro/csv.png -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_hudi/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_hudi/csv.png -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_orc/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_orc/csv.png -------------------------------------------------------------------------------- /site/assets/images/social/file/csv/apache_avro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/csv/apache_avro.png -------------------------------------------------------------------------------- /site/assets/images/social/file/csv/apache_hudi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/csv/apache_hudi.png -------------------------------------------------------------------------------- /site/assets/images/social/file/csv/apache_orc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/csv/apache_orc.png -------------------------------------------------------------------------------- /site/assets/images/social/file/csv/delta_lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/csv/delta_lake.png -------------------------------------------------------------------------------- /site/assets/images/social/file/delta_lake/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/delta_lake/csv.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/index.png -------------------------------------------------------------------------------- /.cache/plugin/social/fonts/Roboto/Medium Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/fonts/Roboto/Medium Italic.ttf -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_iceberg/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_iceberg/csv.png -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_parquet/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_parquet/csv.png -------------------------------------------------------------------------------- /site/assets/images/social/file/csv/apache_iceberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/csv/apache_iceberg.png -------------------------------------------------------------------------------- /site/assets/images/social/file/csv/apache_parquet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/csv/apache_parquet.png -------------------------------------------------------------------------------- /site/assets/images/social/job_orchestration/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/job_orchestration/index.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/index.png -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_avro/apache_orc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_avro/apache_orc.png -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_avro/delta_lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_avro/delta_lake.png -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_hudi/apache_orc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_hudi/apache_orc.png -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_hudi/delta_lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_hudi/delta_lake.png -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_orc/apache_avro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_orc/apache_avro.png -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_orc/apache_hudi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_orc/apache_hudi.png -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_orc/delta_lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_orc/delta_lake.png -------------------------------------------------------------------------------- /site/assets/images/social/file/delta_lake/apache_avro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/delta_lake/apache_avro.png -------------------------------------------------------------------------------- /site/assets/images/social/file/delta_lake/apache_hudi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/delta_lake/apache_hudi.png -------------------------------------------------------------------------------- /site/assets/images/social/file/delta_lake/apache_orc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/delta_lake/apache_orc.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/database/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/database/index.png -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_avro/apache_hudi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_avro/apache_hudi.png -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_hudi/apache_avro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_hudi/apache_avro.png -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_iceberg/apache_orc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_iceberg/apache_orc.png -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_iceberg/delta_lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_iceberg/delta_lake.png -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_orc/apache_iceberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_orc/apache_iceberg.png -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_orc/apache_parquet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_orc/apache_parquet.png -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_parquet/apache_orc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_parquet/apache_orc.png -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_parquet/delta_lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_parquet/delta_lake.png -------------------------------------------------------------------------------- /site/assets/images/social/file/delta_lake/apache_iceberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/delta_lake/apache_iceberg.png -------------------------------------------------------------------------------- /site/assets/images/social/file/delta_lake/apache_parquet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/delta_lake/apache_parquet.png -------------------------------------------------------------------------------- /site/assets/images/social/job_orchestration/dagster/mage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/job_orchestration/dagster/mage.png -------------------------------------------------------------------------------- /site/assets/images/social/job_orchestration/mage/dagster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/job_orchestration/mage/dagster.png -------------------------------------------------------------------------------- /site/assets/images/social/job_orchestration/mage/prefect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/job_orchestration/mage/prefect.png -------------------------------------------------------------------------------- /site/assets/images/social/job_orchestration/prefect/mage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/job_orchestration/prefect/mage.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | 3 | # Ignore Gradle project-specific cache directory 4 | .gradle 5 | 6 | # Ignore Gradle build output directory 7 | build 8 | 9 | llm 10 | script -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_avro/apache_iceberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_avro/apache_iceberg.png -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_avro/apache_parquet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_avro/apache_parquet.png -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_hudi/apache_iceberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_hudi/apache_iceberg.png -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_hudi/apache_parquet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_hudi/apache_parquet.png -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_iceberg/apache_avro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_iceberg/apache_avro.png -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_iceberg/apache_hudi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_iceberg/apache_hudi.png -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_parquet/apache_avro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_parquet/apache_avro.png -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_parquet/apache_hudi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_parquet/apache_hudi.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_orc/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_orc/csv.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/csv/apache_orc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/csv/apache_orc.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/csv/delta_lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/csv/delta_lake.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/delta_lake/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/delta_lake/csv.png -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_iceberg/apache_parquet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_iceberg/apache_parquet.png -------------------------------------------------------------------------------- /site/assets/images/social/file/apache_parquet/apache_iceberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/file/apache_parquet/apache_iceberg.png -------------------------------------------------------------------------------- /site/assets/images/social/job_orchestration/dagster/prefect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/job_orchestration/dagster/prefect.png -------------------------------------------------------------------------------- /site/assets/images/social/job_orchestration/prefect/dagster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/job_orchestration/prefect/dagster.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_avro/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_avro/csv.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_hudi/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_hudi/csv.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/csv/apache_avro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/csv/apache_avro.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/csv/apache_hudi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/csv/apache_hudi.png -------------------------------------------------------------------------------- /site/assets/images/social/job_orchestration/apache_airflow/mage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/job_orchestration/apache_airflow/mage.png -------------------------------------------------------------------------------- /site/assets/images/social/job_orchestration/mage/apache_airflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/job_orchestration/mage/apache_airflow.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_iceberg/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_iceberg/csv.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_parquet/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_parquet/csv.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/csv/apache_iceberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/csv/apache_iceberg.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/csv/apache_parquet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/csv/apache_parquet.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/job_orchestration/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/job_orchestration/index.png -------------------------------------------------------------------------------- /site/assets/images/social/job_orchestration/apache_airflow/dagster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/job_orchestration/apache_airflow/dagster.png -------------------------------------------------------------------------------- /site/assets/images/social/job_orchestration/apache_airflow/prefect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/job_orchestration/apache_airflow/prefect.png -------------------------------------------------------------------------------- /site/assets/images/social/job_orchestration/dagster/apache_airflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/job_orchestration/dagster/apache_airflow.png -------------------------------------------------------------------------------- /site/assets/images/social/job_orchestration/prefect/apache_airflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/images/social/job_orchestration/prefect/apache_airflow.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_orc/delta_lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_orc/delta_lake.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/delta_lake/apache_orc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/delta_lake/apache_orc.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_avro/apache_hudi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_avro/apache_hudi.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_avro/apache_orc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_avro/apache_orc.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_avro/delta_lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_avro/delta_lake.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_hudi/apache_avro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_hudi/apache_avro.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_hudi/apache_orc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_hudi/apache_orc.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_hudi/delta_lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_hudi/delta_lake.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_orc/apache_avro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_orc/apache_avro.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_orc/apache_hudi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_orc/apache_hudi.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/delta_lake/apache_avro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/delta_lake/apache_avro.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/delta_lake/apache_hudi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/delta_lake/apache_hudi.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_avro/apache_iceberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_avro/apache_iceberg.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_avro/apache_parquet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_avro/apache_parquet.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_hudi/apache_iceberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_hudi/apache_iceberg.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_hudi/apache_parquet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_hudi/apache_parquet.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_iceberg/apache_avro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_iceberg/apache_avro.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_iceberg/apache_hudi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_iceberg/apache_hudi.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_iceberg/apache_orc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_iceberg/apache_orc.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_iceberg/delta_lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_iceberg/delta_lake.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_orc/apache_iceberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_orc/apache_iceberg.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_orc/apache_parquet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_orc/apache_parquet.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_parquet/apache_avro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_parquet/apache_avro.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_parquet/apache_hudi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_parquet/apache_hudi.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_parquet/apache_orc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_parquet/apache_orc.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_parquet/delta_lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_parquet/delta_lake.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/delta_lake/apache_iceberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/delta_lake/apache_iceberg.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/delta_lake/apache_parquet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/delta_lake/apache_parquet.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/job_orchestration/dagster/mage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/job_orchestration/dagster/mage.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/job_orchestration/mage/dagster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/job_orchestration/mage/dagster.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/job_orchestration/mage/prefect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/job_orchestration/mage/prefect.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/job_orchestration/prefect/mage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/job_orchestration/prefect/mage.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_iceberg/apache_parquet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_iceberg/apache_parquet.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/file/apache_parquet/apache_iceberg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/file/apache_parquet/apache_iceberg.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/job_orchestration/dagster/prefect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/job_orchestration/dagster/prefect.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/job_orchestration/prefect/dagster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/job_orchestration/prefect/dagster.png -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxK.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxK.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xIIzI.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xIIzI.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fBBc4.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fBBc4.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfBBc4.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfBBc4.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4WxKOzY.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4WxKOzY.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu5mxKOzY.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu5mxKOzY.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu72xKOzY.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu72xKOzY.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7GxKOzY.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7GxKOzY.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7WxKOzY.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7WxKOzY.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7mxKOzY.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7mxKOzY.woff2 -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/job_orchestration/apache_airflow/mage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/job_orchestration/apache_airflow/mage.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/job_orchestration/mage/apache_airflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/job_orchestration/mage/apache_airflow.png -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc6CsQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc6CsQ.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic6CsQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic6CsQ.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xEIzIFKw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xEIzIFKw.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xFIzIFKw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xFIzIFKw.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xGIzIFKw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xGIzIFKw.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xHIzIFKw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xHIzIFKw.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xLIzIFKw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xLIzIFKw.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xMIzIFKw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xMIzIFKw.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fABc4EsA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fABc4EsA.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fBxc4EsA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fBxc4EsA.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fCBc4EsA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fCBc4EsA.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fCRc4EsA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fCRc4EsA.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fChc4EsA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fChc4EsA.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fCxc4EsA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fCxc4EsA.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2 -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/job_orchestration/apache_airflow/dagster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/job_orchestration/apache_airflow/dagster.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/job_orchestration/apache_airflow/prefect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/job_orchestration/apache_airflow/prefect.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/job_orchestration/dagster/apache_airflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/job_orchestration/dagster/apache_airflow.png -------------------------------------------------------------------------------- /.cache/plugin/social/assets/images/social/job_orchestration/prefect/apache_airflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/social/assets/images/social/job_orchestration/prefect/apache_airflow.png -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc-CsTKlA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc-CsTKlA.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc0CsTKlA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc0CsTKlA.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc1CsTKlA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc1CsTKlA.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc2CsTKlA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc2CsTKlA.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc3CsTKlA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc3CsTKlA.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc5CsTKlA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc5CsTKlA.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic-CsTKlA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic-CsTKlA.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic0CsTKlA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic0CsTKlA.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic1CsTKlA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic1CsTKlA.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic2CsTKlA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic2CsTKlA.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic3CsTKlA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic3CsTKlA.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic5CsTKlA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic5CsTKlA.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxK.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxK.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xIIzI.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xIIzI.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fBBc4.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fBBc4.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfBBc4.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfBBc4.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4WxKOzY.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4WxKOzY.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu5mxKOzY.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu5mxKOzY.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu72xKOzY.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu72xKOzY.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7GxKOzY.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7GxKOzY.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7WxKOzY.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7WxKOzY.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7mxKOzY.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu7mxKOzY.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc6CsQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc6CsQ.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic6CsQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic6CsQ.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xEIzIFKw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xEIzIFKw.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xFIzIFKw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xFIzIFKw.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xGIzIFKw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xGIzIFKw.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xHIzIFKw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xHIzIFKw.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xLIzIFKw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xLIzIFKw.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xMIzIFKw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xMIzIFKw.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fABc4EsA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fABc4EsA.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fBxc4EsA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fBxc4EsA.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fCBc4EsA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fCBc4EsA.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fCRc4EsA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fCRc4EsA.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fChc4EsA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fChc4EsA.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fCxc4EsA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fCxc4EsA.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc-CsTKlA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc-CsTKlA.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc0CsTKlA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc0CsTKlA.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc1CsTKlA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc1CsTKlA.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc2CsTKlA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc2CsTKlA.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc3CsTKlA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc3CsTKlA.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc5CsTKlA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc5CsTKlA.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic-CsTKlA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic-CsTKlA.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic0CsTKlA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic0CsTKlA.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic1CsTKlA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic1CsTKlA.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic2CsTKlA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic2CsTKlA.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic3CsTKlA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic3CsTKlA.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic5CsTKlA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBic5CsTKlA.woff2 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # 2 | # https://help.github.com/articles/dealing-with-line-endings/ 3 | # 4 | # Linux start script should use lf 5 | /gradlew text eol=lf 6 | 7 | # These are Windows script files and should use crlf 8 | *.bat text eol=crlf 9 | 10 | -------------------------------------------------------------------------------- /llm/prompts.txt: -------------------------------------------------------------------------------- 1 | # file 2 | 3 | # job_orchestration 4 | "support cron schedules","support event based triggers","have a REST API","have access controls","support workflow versioning","support workflow configurations","have audit logs","have cost tracking","support data source connections" -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSh0mQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSh0mQ.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSV0mf0h.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSV0mf0h.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSZ0mf0h.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSZ0mf0h.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSd0mf0h.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSd0mf0h.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSt0mf0h.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSt0mf0h.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSx0mf0h.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSx0mf0h.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEm-Ul.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEm-Ul.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtElOUlYIw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtElOUlYIw.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEleUlYIw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEleUlYIw.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEluUlYIw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEluUlYIw.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEmOUlYIw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEmOUlYIw.woff2 -------------------------------------------------------------------------------- /site/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEn-UlYIw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/site/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEn-UlYIw.woff2 -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip 4 | networkTimeout=10000 5 | validateDistributionUrl=true 6 | zipStoreBase=GRADLE_USER_HOME 7 | zipStorePath=wrapper/dists 8 | -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSh0mQ.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSh0mQ.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSV0mf0h.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSV0mf0h.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSZ0mf0h.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSZ0mf0h.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSd0mf0h.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSd0mf0h.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSt0mf0h.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSt0mf0h.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSx0mf0h.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xTDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vrtSM1J-gEPT5Ese6hmHSx0mf0h.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEm-Ul.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEm-Ul.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtElOUlYIw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtElOUlYIw.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEleUlYIw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEleUlYIw.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEluUlYIw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEluUlYIw.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEmOUlYIw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEmOUlYIw.woff2 -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEn-UlYIw.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pflooky/tech-diff/HEAD/.cache/plugin/privacy/assets/external/fonts.gstatic.com/s/robotomono/v23/L0xdDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAIe2Imhk1T8rbociImtEn-UlYIw.woff2 -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | /* 2 | * This file was generated by the Gradle 'init' task. 3 | * 4 | * The settings file is used to specify which projects to include in your build. 5 | * For more detailed information on multi-project builds, please refer to https://docs.gradle.org/8.3/userguide/building_swift_projects.html in the Gradle documentation. 6 | */ 7 | 8 | rootProject.name = "tech-diff" 9 | -------------------------------------------------------------------------------- /docs/assets/logo/prefect.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /site/assets/logo/prefect.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /site/assets/external/cdn.datatables.net/fixedheader/3.4.0/css/fixedHeader.dataTables.min.css: -------------------------------------------------------------------------------- 1 | table.fixedHeader-floating{background-color:white}table.fixedHeader-floating.no-footer{border-bottom-width:0}table.fixedHeader-locked{position:absolute !important;background-color:white}@media print{table.fixedHeader-floating{display:none}}html.dark table.fixedHeader-floating{background-color:var(--dt-html-background)}html.dark table.fixedHeader-locked{background-color:var(--dt-html-background)} 2 | -------------------------------------------------------------------------------- /.cache/plugin/privacy/assets/external/cdn.datatables.net/fixedheader/3.4.0/css/fixedHeader.dataTables.min.css: -------------------------------------------------------------------------------- 1 | table.fixedHeader-floating{background-color:white}table.fixedHeader-floating.no-footer{border-bottom-width:0}table.fixedHeader-locked{position:absolute !important;background-color:white}@media print{table.fixedHeader-floating{display:none}}html.dark table.fixedHeader-floating{background-color:var(--dt-html-background)}html.dark table.fixedHeader-locked{background-color:var(--dt-html-background)} 2 | -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- 1 | .red-cross { 2 | color: #D9534F; 3 | } 4 | 5 | .maybe-minus { 6 | color: #F28C28; 7 | } 8 | 9 | .green-tick { 10 | color: #008000; 11 | } 12 | 13 | .md-header { 14 | position: unset; 15 | } 16 | 17 | .sorting_disabled { 18 | font-size: 0.8rem; 19 | } 20 | 21 | .md-button-selected, .md-button:focus { 22 | background-color: var(--md-accent-fg-color) !important; 23 | border-color: white !important; 24 | color: var(--md-accent-bg-color) !important; 25 | } 26 | -------------------------------------------------------------------------------- /site/stylesheets/extra.css: -------------------------------------------------------------------------------- 1 | .red-cross { 2 | color: #D9534F; 3 | } 4 | 5 | .maybe-minus { 6 | color: #F28C28; 7 | } 8 | 9 | .green-tick { 10 | color: #008000; 11 | } 12 | 13 | .md-header { 14 | position: unset; 15 | } 16 | 17 | .sorting_disabled { 18 | font-size: 0.8rem; 19 | } 20 | 21 | .md-button-selected, .md-button:focus { 22 | background-color: var(--md-accent-fg-color) !important; 23 | border-color: white !important; 24 | color: var(--md-accent-bg-color) !important; 25 | } 26 | -------------------------------------------------------------------------------- /.cache/plugin/optimize/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "assets/logo/avro.png": "0f729702e50491d3edf3248ef0431c01c94aa758", 3 | "assets/logo/hudi.png": "f5cb44983753303ce9bf582117e273df49947a28", 4 | "assets/logo/airflow.png": "77320873da884ca9c4a01786ce0562825a75422b", 5 | "assets/logo/dagster.png": "3cef5327e5082f71fb3674ffff92b3f01cc3079d", 6 | "assets/images/favicon.png": "50c4fb6c0d449e6c8c07bd9bfbdea32b4e02b09a", 7 | "assets/logo/iceberg.png": "3f49b10d2bacb6fc4b9d77f6500ecd223823c432", 8 | "assets/logo/csv.png": "1d2bb4238239bdbdcc1e936f47591170280de9cd", 9 | "assets/logo/orc.png": "7ac0de96110babf9d60512ee39e668065c5667fd", 10 | "assets/logo/delta_lake.png": "3167c7920f5fbf81edfe30770fca5d34b4edcd18" 11 | } -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Compare Different Technologies/Tools" 3 | description: "Compare technologies/tools by features. Covers file types, job orchestration tools and more." 4 | --- 5 | 6 | # Tech Compare 7 | 8 | Compare technologies/tools with each other to find the best fit for you and your use case. 9 | 10 | ## Categories 11 | 12 |
| Attribute | 55 | <#list tech_types as tech> 56 |${tech} | 57 | #list> 58 |||||||
|---|---|---|---|---|---|---|---|
| ${attribute?replace("_", " ")?cap_first} | 65 | <#list tech_types as tech> 66 | <#assign curr_attribute=.vars[tech][attribute]> 67 | <#if curr_attribute?is_string && curr_attribute?starts_with("http")> 68 |${curr_attribute} | 69 | <#elseif curr_attribute?is_string> 70 |${curr_attribute} | 71 | <#elseif curr_attribute?is_number> 72 |${curr_attribute?string["0"]} | 73 | <#elseif curr_attribute?is_sequence> 74 |${curr_attribute?join(", ")} | 75 | <#else> 76 |N/A | 77 | #if> 78 | #list> 79 |||
| ${inner_attribute?replace("_", " ")?cap_first} | 85 | <#list tech_types as tech> 86 | <#assign curr_attribute=.vars[tech][high_level_tech_name][inner_attribute]> 87 | <#if curr_attribute?is_sequence> 88 |89 | <#list curr_attribute as inner_curr_attr> 90 | ${inner_curr_attr.value}, 91 | #list> 92 | | 93 | <#elseif curr_attribute.value?has_content && curr_attribute.source?has_content && curr_attribute.notes?has_content> 94 |${getHasSupportEmoji(curr_attribute)} | 95 | <#elseif curr_attribute.value?has_content && curr_attribute.source?has_content> 96 |${getHasSupportEmoji(curr_attribute)} | 97 | <#elseif curr_attribute.value?has_content && curr_attribute.value?is_sequence && curr_attribute.source?has_content> 98 |${curr_attribute.value?join(", ")} | 99 | <#elseif curr_attribute.value?is_sequence> 100 |${curr_attribute.value?join(", ")} | 101 | <#elseif curr_attribute.value?is_string> 102 |${getHasSupportEmoji(curr_attribute)} | 103 | <#else> 104 |${curr_attribute.value?string} | 105 | #if> 106 | #list> 107 |