From da85f9f46019114de5737a2e28ba433229b278c7 Mon Sep 17 00:00:00 2001 From: Ihar Hancharenka Date: Tue, 30 Apr 2024 20:10:16 +0300 Subject: [PATCH] m --- nontech/ortho/people/avdeenko.txt | 11 ++++++- nontech/politics/channels/metametrica.txt | 4 +-- os/linux/rh/fedora/inst/after-inst.txt | 5 +++ pl/cross/tools/ide/jetbrains/inst/inst.sh | 39 +++++++++++++++++++++++ 4 files changed, 56 insertions(+), 3 deletions(-) create mode 100755 pl/cross/tools/ide/jetbrains/inst/inst.sh diff --git a/nontech/ortho/people/avdeenko.txt b/nontech/ortho/people/avdeenko.txt index 11387d110..5b1334f40 100644 --- a/nontech/ortho/people/avdeenko.txt +++ b/nontech/ortho/people/avdeenko.txt @@ -64,7 +64,7 @@ IrIna - Avdeenko - How Apocalypse Opens at Our Time of 1:24:48 ! vavilon, gorod (zhenskogo roda v grecheskom) - globalnaya civilizaciya ! 43:00 - Vavilon - deyatelnost, presekayuschaya vsyakuyu vozmozhnost Bogoobscheniya 2016 -termen111 - Avdeenko - Genesis 3 - Sinfall - 1:02:00 of 4:17:47 +termen111 - Avdeenko - Genesis 3 - Sinfall - 1:06:00 of 4:17:47 https://www.youtube.com/watch?v=pA99l2iqDBc ! Rai byl hram Bozhiy, v kotorom chelovek imell Bogoobschenie ! Vnutrenniy hram (drevo zhizni) - eto svyatoe-svyatyh @@ -146,6 +146,15 @@ termen111 - Avdeenko - Genesis 3 - Sinfall - 1:02:00 of 4:17:47 ! uvidela zhena, syela i dala muzhu, no nichego ne budet skazano o tom, kak pal Adam ! posle grehopadeniya Bog skazal o tom, chto tot poslushal golosa zheny ! dayom v sebe zaglushit zapoved Bozhiyu + ! Zhena govorila Adamu golosom + ! Adam mog postavit zhenu na mesto i vosstanovit ierarhiyu (Bog, muzh, zhena) + ! energiya greha: tyomnyi zhar zameschaet Bozhestvennyi svet + ! Adam sovratilsya, potomu chto ne uvidel istinu (hischnyi vzglyad) + ! Za etim sleduet sovmestnyi greh + ! ... i oni eli ... + ! sovmestnyi greh imeet svoyu otdelnuyu sladost + ! grehovnye sborischa - vesch chrezvychaino opasnaya + ! ... i vmig Bogoprotivnyi mir ruhnul termen111 - Avdeenko - Genesis 2 - About Paradise - 2:02:00 of 2:14:59 https://www.youtube.com/watch?v=uIYmNfLVN9c diff --git a/nontech/politics/channels/metametrica.txt b/nontech/politics/channels/metametrica.txt index 50e1983e8..dd26a0d32 100644 --- a/nontech/politics/channels/metametrica.txt +++ b/nontech/politics/channels/metametrica.txt @@ -5,9 +5,9 @@ https://vk.com/public210614080 https://www.youtube.com/c/Metametrica/videos 2024 -MetametricaLive - 04.27 - Gevorgyan/Hazin/Mardan of 1:49:16 +MetametricaLive - 04.27 - Gevorgyan/Hazin/Mardan 22:00 of 1:49:16 https://www.youtube.com/watch?v=T1J2FQph0Fs -MetametricaLive - 01.15 - Delyagin/Mirzayan/Dubovikova 55:00 of 1:50:16 +MetametricaLive - 01.15 - Delyagin/Mirzayan/Dubovikova of 1:50:16 https://www.youtube.com/watch?v=QcO0rCdljRs 2023 Metametrica - 12.11 - Gevorgyan Filin Gasparyan Delyagin 3:00 of 2:37:17 diff --git a/os/linux/rh/fedora/inst/after-inst.txt b/os/linux/rh/fedora/inst/after-inst.txt index cd89f5851..cc633cf9b 100644 --- a/os/linux/rh/fedora/inst/after-inst.txt +++ b/os/linux/rh/fedora/inst/after-inst.txt @@ -16,3 +16,8 @@ https://discussion.fedoraproject.org/t/video-playback-broken-after-upgrading-to- dnf install openh264 mpv # ??? sudo dnf install ffmpeg avidemux vlc + +https://gist.github.com/abn/022c5f9eae491687a766f25bd8322fc0 + +https://github.com/nagygergo/jetbrains-toolbox-install +https://github.com/nagygergo/jetbrains-toolbox-install/blob/master/jetbrains-toolbox.sh diff --git a/pl/cross/tools/ide/jetbrains/inst/inst.sh b/pl/cross/tools/ide/jetbrains/inst/inst.sh new file mode 100755 index 000000000..d85bf6fa8 --- /dev/null +++ b/pl/cross/tools/ide/jetbrains/inst/inst.sh @@ -0,0 +1,39 @@ +#!/bin/bash + +set -e +set -o pipefail + +TMP_DIR="/tmp" +INSTALL_DIR="$HOME/.local/share/JetBrains/Toolbox/bin" +SYMLINK_DIR="$HOME/.local/bin" + +echo "### INSTALL JETBRAINS TOOLBOX ###" + +echo -e "\e[94mFetching the URL of the latest version...\e[39m" +ARCHIVE_URL=$(curl -s 'https://data.services.jetbrains.com/products/releases?code=TBA&latest=true&type=release' | grep -Po '"linux":.*?[^\\]",' | awk -F ':' '{print $3,":"$4}'| sed 's/[", ]//g') +ARCHIVE_FILENAME=$(basename "$ARCHIVE_URL") + +echo -e "\e[94mDownloading $ARCHIVE_FILENAME...\e[39m" +rm "$TMP_DIR/$ARCHIVE_FILENAME" 2>/dev/null || true +# wget -q --show-progress -cO "$TMP_DIR/$ARCHIVE_FILENAME" "$ARCHIVE_URL" +wget -q -cO "$TMP_DIR/$ARCHIVE_FILENAME" "$ARCHIVE_URL" + +echo -e "\e[94mExtracting to $INSTALL_DIR...\e[39m" +mkdir -p "$INSTALL_DIR" +rm "$INSTALL_DIR/jetbrains-toolbox" 2>/dev/null || true +tar -xzf "$TMP_DIR/$ARCHIVE_FILENAME" -C "$INSTALL_DIR" --strip-components=1 +rm "$TMP_DIR/$ARCHIVE_FILENAME" +chmod +x "$INSTALL_DIR/jetbrains-toolbox" + +echo -e "\e[94mSymlinking to $SYMLINK_DIR/jetbrains-toolbox...\e[39m" +mkdir -p $SYMLINK_DIR +rm "$SYMLINK_DIR/jetbrains-toolbox" 2>/dev/null || true +ln -s "$INSTALL_DIR/jetbrains-toolbox" "$SYMLINK_DIR/jetbrains-toolbox" + +if [ -z "$CI" ]; then + echo -e "\e[94mRunning for the first time to set-up...\e[39m" + ( "$INSTALL_DIR/jetbrains-toolbox" & ) + echo -e "\n\e[32mDone! JetBrains Toolbox should now be running, in your application list, and you can run it in terminal as jetbrains-toolbox (ensure that $SYMLINK_DIR is on your PATH)\e[39m\n" +else + echo -e "\n\e[32mDone! Running in a CI -- skipped launching the AppImage.\e[39m\n" +fi