____ ,-.
/ /)))( , )
( c'a( \`'
_) ) _/ |
\_/ (_ |
/ \`~\\ |
(,,,) )) _j
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
| gio mount davs://dav.box.com | |
| gio mount google-drive://xxx.yyy@gmail.com |
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
| # some gnome key bindings conflict with eclipse short cuts that I use frequently | |
| # free up '<Control><Alt>Down' | |
| gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-down "['<Super>Page_Down']" | |
| # free up '<Control><Alt>Up' | |
| gsettings set org.gnome.desktop.wm.keybindings switch-to-workspace-up "['<Super>Page_Up']" |
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
| digraph G { | |
| rankdir=TB | |
| bgcolor = "transparent" | |
| ranksep = "1.2" | |
| node [fontname = "Sans", shape = "record", margin = ".4"] | |
| n1 [label = "Import from camera",fillcolor=lightblue,style = "filled"] | |
| n2 [label = "Import from directory",fillcolor=lightblue,style = "filled"] | |
| n3 [label="Create \n temporary local disk"] | |
| n4 [label="Check remote for duplicates"] | |
| n5 [label = "Display overview",fillcolor=lightblue,style = "filled"] |
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 culmat.photo; | |
| import static java.util.Arrays.asList; | |
| import static java.util.Arrays.stream; | |
| import java.io.BufferedReader; | |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import java.io.InputStreamReader; | |
| import java.io.OutputStream; | |
| import java.nio.file.Path; |
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> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>DevOps</title> | |
| <style> | |
| .do_icon:hover { | |
| filter: drop-shadow(8px 8px 3px grey); | |
| cursor: pointer; |
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> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Geo URI</title> | |
| </head> | |
| <body> | |
| <script> | |
| function openGeo(geo) { | |
| try { |
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: backstage.io/v1alpha1 | |
| kind: Group | |
| metadata: | |
| name: team-devops-guild | |
| title: Team DevOps Guild | |
| description: The DevOps Guild | |
| links: | |
| - url: https://baloise.com | |
| title: Homepage | |
| spec: |
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 | |
| set -euo pipefail | |
| SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" | |
| API_KEY_FILE="$SCRIPT_DIR/API_KEY.txt" | |
| API_BASE_URL="https://api.mistral.ai" | |
| DEFAULT_OCR_MODEL="mistral-ocr-latest" | |
| abort() { |