(require 'org.httpkit.client)
(do
(def _base_url "https://cdn.contentful.com")
(def _env "master")
(def _space_id "xyz")
(def _token "xyz")
)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import assert from 'assert' | |
import * as Ma from 'fp-ts/Magma' | |
import * as Fu from 'fp-ts/Functor' | |
import * as Ap from 'fp-ts/Applicative' | |
import * as FN from 'fp-ts/function' | |
import * as B from 'fp-ts/boolean' | |
import * as S from 'fp-ts/string' |
-
Perhatikan posisi element
.copyright
menentukan apakah akan diulang untuk setiap page, atau misal setelah halaman tertentu saja, karena content nya aktif/tersedia pada saat dia sudah terbaca. Jika dia posisi nya di paling atasbody
content, maka ia akan diulang untuk setiap page, jika berada paling bawah, maka akan muncul di halaman terakhir saja. -
Referensi lengkap nya di https://www.w3.org/TR/css-gcpm-3/#running-elements.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{:paths ["src" "resources"] | |
:deps {org.clojure/clojure {:mvn/version "1.12.0-alpha5"} | |
missionary/missionary {:mvn/version "b.33"} | |
datalevin/datalevin {:mvn/version "0.8.21"} | |
} | |
:aliases | |
{:run-m {:main-opts ["-m" "playground.playground"]} | |
:run-x {:ns-default playground.playground | |
:exec-fn greet |
This is for scenario where we want to access kubernetes cluster on our mac that is created with colima.
The kube api server is a k0s docker container running inside colima with url: https://172.17.0.2:6443.
- Modify
/etc/pf.conf
file to be like below, note that therdr pass ...
line must be exactly beforeanchor
andload anchor
.
scrub-anchor "com.apple/*"
nat-anchor "com.apple/*"
rdr-anchor "com.apple/*"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: storage.k8s.io/v1 | |
kind: StorageClass | |
metadata: | |
name: local-storage # Name of the StorageClass | |
provisioner: kubernetes.io/no-provisioner # Specify the provisioner (manual static provisioning) | |
volumeBindingMode: WaitForFirstConsumer # Waits until a Pod is scheduled before binding a PV | |
reclaimPolicy: Delete |
OlderNewer