| name | about | title | labels | assignees |
|---|---|---|---|---|
Turn-Up Ticket |
Procedure for managing changes in production. |
[turn-up] <Summary> |
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 | |
| INPUT=$* | |
| OUTPUT=$(basename $INPUT .MTS) | |
| ### Fast version, just copies streams to mp4, but failed on one MTS file | |
| #echo ffmpeg -i $INPUT -c:v copy -c:a aac ${OUTPUT}.mp4 | |
| ### Slow version, re-encodes, but works on every file | |
| echo ffmpeg -i $INPUT -y -c:v libx264 -crf 23 -c:a aac -b:a 128k ${OUTPUT}.mp4 |
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"] | |
| :deps {org.clojure/clojure {:mvn/version "1.12.3"}} | |
| :tasks | |
| {:require [[clojure.string :as str]] | |
| test {:doc "Run the test suite." | |
| :task (clojure "-M:test" "-m" "cognitect.test-runner")} | |
| test:bb {:doc "Run the test suite using Babashka to check compatibility." | |
| :extra-paths ["test"] |
I want to build a model and its APIs using the kubebuilder pattern. Don't use code examples or any particular programming language. Walk me through at the REST API layer or other interfaces how I would need to build in my language of choice
I'll walk you through the conceptual architecture and interfaces you need to build, independent of language.
You're essentially building two parallel systems that share data sources:
- The Reconciliation System (Kubebuilder's domain)
- The REST API System (Your webapp domain)
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
| theme = Alabaster | |
| font-family = Menlo | |
| macos-option-as-alt = true | |
| # alt because I use cmd-key-happy to swap cmd and option | |
| # Could use esc:CHAR instead of text:ESCAPE here. | |
| keybind = alt+a=text:\x1ba | |
| keybind = alt+b=text:\x1bb | |
| keybind = alt+c=text:\x1bc | |
| keybind = alt+d=text:\x1bd |
- Create slack app in the UI (the command line ended up creating an unusable app)
- Add these oauth permissions
channels:history channels:read groups:history groups:read im:history mpim:history team:read
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <title>Display a satellite map</title> | |
| <meta property="og:description" content="Display a satellite raster baselayer." /> | |
| <meta charset='utf-8'> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <link rel='stylesheet' href='https://unpkg.com/maplibre-gl@4.0.1/dist/maplibre-gl.css' /> | |
| <script src='https://unpkg.com/maplibre-gl@4.0.1/dist/maplibre-gl.js'></script> | |
| <style> |
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
| drewr@474b6b83 Thu 15 17:25:03 877 1 src/drewr/rustutils(main●)% nix-shell -E 'let pkgs = import <nixpkgs> {}; unstable = import <nixpkgs-unstable> {}; shell = pkgs.mkShell { buildInputs = [ unstable.cargo unstable.pkg-config unstable.openssl unstable.glibc ];}; in shell' --run "cargo build" | |
| Compiling libc v0.2.153 | |
| Compiling proc-macro2 v1.0.78 | |
| Compiling syn v1.0.109 | |
| Compiling indexmap v1.9.3 | |
| Compiling aho-corasick v1.1.2 | |
| Compiling form_urlencoded v1.2.1 | |
| Compiling clap_lex v0.2.4 | |
| Compiling proc-macro-error-attr v1.0.4 | |
| Compiling unicode-normalization v0.1.22 |
NewerOlder