Skip to content

Instantly share code, notes, and snippets.

@FrankelJb
FrankelJb / nextcloud-helm.yaml
Created March 6, 2023 09:23
Redacted Nextcloud helm values
values:
replicaCount: 1
image:
repository: gitea.${ROOT_DOMAIN}/gitea_admin/nextcloud-supervisord
tag: 25.0.4
internalDatabase:
enabled: false
externalDatabase:
enabled: true
host: ${POSTGRESQL_HOST}
@FrankelJb
FrankelJb / EventSource.elm
Created September 20, 2019 09:51
[Elm EventSource] Handling ports across a SPA #Elm #ElmSPA
type Msg
= ErrorMsg String
| EventSourceConnect ConnectionInfo
| EventSourceClosed ConnectionInfo
| PopulateEventHandler ConnectionInfo Video
| UserEventHandler ConnectionInfo Int
| NoOp
update : Msg -> ( Event, Cmd Msg )