This document attempts to consolidate all available information regarding the VBIOS ROMs for the venerable AMD Instinct MI50 - especially the 32 GB variant
Sources include
This document attempts to consolidate all available information regarding the VBIOS ROMs for the venerable AMD Instinct MI50 - especially the 32 GB variant
Sources include
If you are in my boots, starting using podman for the first time and want it to get it working on Windows and WSL, this is for you. It's a bit of a pain to have the same "Docker Desktop" experience just with "Podman Desktop".
This guide doesn't matter for security, it just documents how you make things work.
This guide only works for ubuntu 24 in your WSL distro. Versions bellow have older podman versions which are not compatible with podman desktop.
| ########################### | |
| ### *ARR RESTORE v1.2 ### | |
| ### by xzin ### | |
| ########################### | |
| # About # | |
| # This script automatically restores the original downloaded media files from your Radarr and Sonarr databases | |
| # These files will be named as they were when originally downloaded, before Radarr/Sonarr performed any renaming | |
| # These files will also be hardlinked to your existing media, so you won't incur additional storage space usage |
To start using the Jellyfin API, authorization is probably the first thing you'll need to do. Jellyfin's authorization options can be a bit confusing because there are a lot of deprecated options.
Generally there are three ways to authenticate: no authorization, user authorization with an access token or authorization with an API key. The first way is easy, just do nothing. But most often you'll need to use either the access token or API key.
There are multiple methods for transmitting authorization values, however, some are outdated and scheduled to be removed.
It's recommend to use the Authorization header. If header auth isn't an option, the token may be sent through the ApiKey query parameter. Sending secure data in a query parameter is unsafe as the changes of it leaking (via logs, copy-paste actions or by other means) are high. Only use this method as a last resort.
| import os | |
| import re | |
| # Insert the path where you keep your fast resume files here. | |
| # Make a backup first!!! | |
| torrentsDir = r'/torrents/' | |
| # Insert paths to be replaced here. Dictionary key is current path. Dictionary value is new path | |
| # If left empty, the script will only detect paths |
id - id of the player app, com.webos.app.mediadiscovery for webOS 6+, com.webos.app.photovideo for webOS 3.x-5.x, com.webos.app.smartshare for webOS 1.0-2.xfullPath - url of the video filefileName - name of the video displayed in player. Filename is remembered by the player to continue playback from exit timestampfrom a web app
webOS.service.request("luna://com.webos.applicationManager", {
method: "launch",
| #!/bin/bash | |
| # this script goes to /etc/NetworkManager/dispatcher.d/ | |
| IF=$1 | |
| STATUS=$2 | |
| case "$2" in | |
| up) | |
| if [ "$CONNECTION_ID" == "WIFIonICE" ] |
| # Creation Date: November 3, 2018 | |
| :local Version "2.0" | |
| :local LASTUPDATE "05/10/2019" | |
| # Tested with RouterOS 6.43.4 | |
| # | |
| # Mikrotik script to implement QoS on internet connections. | |
| # The script makes use of Address Lists, Firewall rules (Mangle) for connection tagging, and Queue Trees. | |
| # The script will remove applied rules from previous runs before applying. | |
| # |
| #!/bin/bash | |
| # Sometimes you need to move your existing git repository | |
| # to a new remote repository (/new remote origin). | |
| # Here are a simple and quick steps that does exactly this. | |
| # | |
| # Let's assume we call "old repo" the repository you wish | |
| # to move, and "new repo" the one you wish to move to. | |
| # | |
| ### Step 1. Make sure you have a local copy of all "old repo" | |
| ### branches and tags. |