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
| ciadpi-x86_64 --tlsrec 3+s --auto=torst --timeout 3 |
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 | |
| # gh auth login | |
| git init | |
| git add -A . | |
| git commit -m "First commit" | |
| NAME=`basename $PWD` | |
| gh repo create "${NAME}" --source=. --public --push |
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
| # Create disk image with GRUB2 installd | |
| # Requires: grub-install rm mkdir dd parted kpartx mkfs.vfat mkfs.ext2 cp mount umount chown | |
| # Source tree: | |
| # img/ | |
| # ext2 fat16 fat32 | |
| FS=ext2 | |
| # | |
| DISK_FILE=disk.img | |
| DISK_SIZE=20 | |
| BUILD_FOLDER=.build |
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 | |
| # clear system journal (gnome journald) | |
| sudo journalctl --rotate | |
| sudo journalctl --vacuum-size=100M | |
| sudo journalctl --vacuum-time=1s | |
| sudo systemctl restart systemd-journald |
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 | |
| # Removes old revisions of snaps | |
| # CLOSE ALL SNAPS BEFORE RUNNING THIS | |
| set -eu | |
| LANG=en_US.UTF-8 snap list --all | awk '/disabled/{print $1, $3}' | | |
| while read snapname revision; do | |
| sudo snap remove "$snapname" --revision="$revision" | |
| done |
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 | |
| # Remove start into from video. | |
| # Remove end titres from video. | |
| [ -e splitted ] || mkdir trimed | |
| for f in *.mp4 | |
| do | |
| echo $f | |
| ffmpeg \ |
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
| // By Steve Hanov | |
| // [email protected] | |
| // Released to the public domain on April 18, 2020 | |
| //import { log } from "./log" | |
| // Usage: | |
| /* | |
| declare let arrayBuffer:ArrayBuffer; |
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 | |
| # Here building Tensorflow. | |
| # - will be created Virtual environment | |
| # - will be downloaded TensorFlow 1.14 | |
| # - will be downloaded Bazel 0.26.0 | |
| # - will be installed Bazel | |
| # - will be compilled TensorFlow to pip package | |
| # - will be installed pip package into the Virtual environment | |
| ############################################################################## |
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
| <association id= "d_function" langID="52" /> | |
| <!-- ======================================================================== --> | |
| <!-- =========================================================== [ D ] --> | |
| <parser | |
| displayName="D" | |
| id ="d_function" |