git clone -b no_old_eventing --single-branch [email protected]:matzew/knative-operators.git
cd knative-operators
./etc/scripts/install.sh
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
| # Baseed on previous attempts of others: https://github.com/NixOS/nixpkgs/issues/41189 | |
| { lib, vscode-utils, autoPatchelfHook, bash, file, makeWrapper, dotnet-sdk | |
| , curl, gcc, icu, libkrb5, libsecret, libunwind, libX11, lttng-ust, openssl, utillinux, zlib | |
| , enableDiagnosticsWorkaround ? false, gccStdenv | |
| }: | |
| with lib; | |
| let | |
| # https://docs.microsoft.com/en-us/visualstudio/liveshare/reference/linux#install-prerequisites-manually |
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
| package main | |
| import ( | |
| "context" | |
| "fmt" | |
| "io/ioutil" | |
| "os" | |
| "github.com/containerd/containerd/content/local" | |
| "github.com/containerd/containerd/images" |
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
| #!/usr/bin/env bash | |
| # TODO: Look at nixpkgs/pkgs/build-support/setup-hooks/auto-patchelf.sh | |
| # https://ms-vsliveshare.gallery.vsassets.io/_apis/public/gallery/publisher/MS-vsliveshare/extension/vsliveshare/0.3.423/assetbyname/Microsoft.VisualStudio.Services.VSIXPackage | |
| set -eu | |
| TOOLS="patchelf xsel" | |
| DEPS="utillinux.out openssl.out icu zlib curl.out lttng-ust libsecret libkrb5" |
GTD/BASB Templates for Emacs and Org-Mode
- Daily Review Template
- Weekly Review Template
- Monthly Review Template
- Annual Review Template (I don’t usually do these in Emacs, but I’ve included them for the sake of completeness)
As I’ve said on Twitter, I don’t actually necessarily perform these on a chronological basis.
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
| #!/usr/bin/env bash | |
| # requires jq | |
| DISPLAY_CONFIG=($(i3-msg -t get_outputs | jq -r '.[]|"\(.name):\(.current_workspace)"')) | |
| for ROW in "${DISPLAY_CONFIG[@]}" | |
| do | |
| IFS=':' | |
| read -ra CONFIG <<< "${ROW}" | |
| if [ "${CONFIG[0]}" != "null" ] && [ "${CONFIG[1]}" != "null" ]; then |
