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
| (ns sbis-notifications | |
| (:require [babashka.pods :as pods] | |
| [clojure.string :as str] | |
| [babashka.process :refer [shell]] | |
| [cheshire.core :as json] | |
| [babashka.http-client :as http] | |
| [babashka.http-client.websocket :as ws])) | |
| (pods/load-pod 'org.babashka/go-sqlite3 "0.3.9") | |
| (require '[pod.babashka.go-sqlite3 :as sqlite]) |
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 bb | |
| (ns b16-themes | |
| (:require | |
| [babashka.fs :as fs] | |
| [babashka.deps :refer [add-deps]] | |
| [clojure.string :as str] | |
| [clojure.java.shell :refer [sh]] | |
| [clj-yaml.core :as yaml] | |
| [babashka.curl :as curl])) |
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
| #!/bin/sh | |
| # Script to use fzf as a launcher like dmenu. | |
| # | |
| # Steps: | |
| # | |
| # 1. get all directories from $PATH; | |
| # 2. filter out non-existing directories; | |
| # 3. search for executable files in these directories with fd-find; | |
| # 4. run fzf for sorted list of files, bind Tab to complete query string; |
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
| #!/bin/sh | |
| if test -z "$1" -o -z "$2"; then | |
| echo 'QMK reflash script. Usage: '`basename $0`' <port> <firmware>' | |
| exit 1 | |
| fi | |
| port="$1" | |
| file="$2" |
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
| #!/bin/sh | |
| #_xxx (comment | |
| exec env NODE_PATH="$HOME/.local/lib/node_modules" nbb "$0" "$@" | |
| #_xxx ) | |
| (ns nbb-tw | |
| "Веб-сервер для сохранения TiddlyWiki." | |
| (:require [clojure.string :as str] | |
| ["express$default" :as express] |
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
| (ns boomstream | |
| (:require [babashka.cli :as cli] | |
| [babashka.fs :as fs] | |
| [babashka.http-client :as http] | |
| [babashka.process :refer [shell]] | |
| [cheshire.core :as json] | |
| [clojure.string :as str])) | |
| (def *xor-key* "bla_bla_bla") |