We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
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
# Tag name ; color | |
Untagged ; #c0c0c0 | |
afsk1200 ; #c0c0c0 | |
eng ; #170bc0 | |
fm ; #c0c0c0 | |
midland24 ; #c0c0c0 | |
numeric ; #c0c0c0 | |
rds ; #00aa7f | |
rus ; #ffffff | |
unknown ; #c0c0c0 |
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
# obtain keycloack jwt token and store in in variable | |
export token=$(shell curl -s -k -X POST \ | |
-d 'grant_type=password' \ | |
-d 'username=somebody' \ | |
-d 'password=longPasswordToMakeHackersSad333222111' \ | |
-d 'scope=email%20profile%20openid' \ | |
-d 'client_id=somebody' \ | |
-d 'client_secret=""' \ | |
--connect-timeout 5 \ | |
https://keycloack.local/oidc/realms/something/protocol/openid-connect/token | jq '.["access_token"]') |
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 -e | |
service="[email protected]" | |
if (systemctl -q is-active "$service") then | |
echo "Stopping $service..." | |
sudo systemctl stop "$service" | |
else |
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 | |
auth="username:password" | |
host=imaps://imap.example.org | |
curl -u $auth $host -X 'LIST "" "*"' | |
curl -u $auth $host -X 'STATUS INBOX (MESSAGES)' |
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 | |
work_pwd=`secret-tool lookup user vodolaz095 domain example.org` | |
( | |
sleep 1 | |
echo "vodolaz095" | |
sleep 1 | |
echo "$work_pwd" | |
) | nmcli connection up work --ask |
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 count_steps | |
/* | |
Необходимо определить userIds участников, которые прошли наибольшее количество шагов steps за все дни, не пропустив ни одного дня соревнований. | |
Пример | |
# Пример 1 | |
# ввод | |
statistics = [ |
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 | |
# This script makes local copy of all Valheim user's data | |
set -e | |
fname=`date "+%Y_%m_%d___%H_%M_%S"` | |
fpath="$HOME/Documents/backups/valheim/valheim_$fname.zip" | |
echo "Preparing to make backup into $fpath..." |
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 strings | |
import ( | |
"bytes" | |
"fmt" | |
"os" | |
"strings" | |
"testing" | |
) |
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 | |
# upgrade system | |
su -c 'dnf upgrade -y' | |
# install extra repos | |
su -c 'dnf install -y https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm' | |
su -c 'dnf install -y https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm' | |
su -c 'dnf upgrade -y rpmfusion-free-release rpmfusion-nonfree-release' |
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/bash | |
# bash generate random 32 character alphanumeric string (upper and lowercase) and | |
NEW_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 9 | head -n 1) | |
PIC_URL=$HOME/Pictures/Screenshots/$NEW_UUID.png | |
mkdir -p $HOME/Pictures/Screenshots | |
scrot -s -c $PIC_URL | |
scp $PIC_URL holod.local:/srv/www/s/ |
NewerOlder