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
| templates: | |
| torrent: | |
| transmission: | |
| host: transmission | |
| port: 9091 | |
| username: rodhfr | |
| password: linux123 | |
| anime: | |
| template: torrent | |
| configure_series: |
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
| from flexget import plugin | |
| from flexget.entry import Entry | |
| from flexget.task import Task | |
| from flexget.event import event | |
| import logging | |
| log = logging.getLogger('RoundRobinRSS') | |
| class RoundRobinRSS(object): | |
| """ |
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
| // ==UserScript== | |
| // @name Debrid Media Manager | |
| // @namespace https://debridmediamanager.com | |
| // @version 1.6.2 | |
| // @description Add accessible DMM buttons to IMDB, MDBList, AniDB, TraktTV, and Bittorrent sites with magnet links | |
| // @author Ben Adrian Sarmiento <[email protected]> | |
| // @license MIT | |
| // @match *://*/* | |
| // @grant none | |
| // @downloadURL https://update.greasyfork.org/scripts/463268/Debrid%20Media%20Manager.user.js |
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
| TCP/IP (wireless) | |
| Scrcpy uses adb to communicate with the device, and adb can connect to a device over TCP/IP. The device must be connected on the same network as the computer. | |
| Automatic | |
| An option --tcpip allows to configure the connection automatically. There are two variants. | |
| If adb TCP/IP mode is disabled on the device (or if you don't know the IP address), connect the device over USB, then run: | |
| scrcpy --tcpip # without arguments |
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
| git config --global alias.pushall '!f() { for remote in $(git remote); do echo "Pushing to $remote..."; git push --all "$remote"; git push --tags "$remote"; done }; f' |
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
| tar -cf - --exclude-from=/home/rodhfr/Backup/dockernew/exclude.txt -C /home/rodhfr dockernew | pv | pigz > "/home/rodhfr/Backup/dockernew/dockernew_$(date '+%Y-%m-%d_%H-%M-%S').tar.gz" |
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
| [rodhfr@wings ~]$ distrobox create --name kickstarter_test --home /home/rodhfr/Distrobox/kickstarter_test/ --image archlinux --hostname kickstarter_test | |
| --unshare-netns # share same ip that host |
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
| I don't know whether this will work for you. But check this solution. | |
| I am using NVchad too for me to open a vertical or horizontal terminal I have to use "leader(space bar) + v" or "leader(space bar) + h". To come back to the currently opened editor which will be either on top of the newly opened terminal or on the left side we need to do some more. | |
| "ctrl + x" this combination will exit/throw out your cursor from the terminal. | |
| "ctrl + h/k/l/j" this combination will switch your cursor to the nearby opened editor. | |
| For your reminder the keys "h,j,k,l" are generally used for navigation in vim/nvim as an alternative for the arrow keys. |
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
| # /home/rodhfr/.config/pipewire/pipewire.conf.d/snapcast.conf | |
| context.modules = [ | |
| { name = libpipewire-module-pipe-tunnel | |
| args = { | |
| node.name="snapcast" | |
| tunnel.mode = sink | |
| #tunnel.may-pause = true | |
| # Set the pipe name to tunnel to | |
| pipe.filename = "/tmp/snapfifo" | |
| audio.format=S16LE |
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
| import os | |
| import subprocess | |
| import re | |
| import time | |
| from tqdm import tqdm | |
| def list_subtitle_tracks(filename): | |
| cmd = ['mkvmerge', '-i', filename] | |
| result = subprocess.run(cmd, capture_output=True, text=True) | |
| tracks = [] |
NewerOlder