(Bottle install) Raid shadow legends launcher won't launch game anymore after steam was installed.
fix: set environment variable to :
MESA_VK_DEVICE_SELECT_FORCE_DEFAULT_DEVICE=1
using other methods does not work for my specific setup.
| # build : docker build -f Dockerfile -t sdcpp:vulkan-static-default . | |
| # run : docker run --user 1000:1000 - --rm -it sdcpp:vulkan-static-default | |
| # mount and export binary with shell : | |
| # docker run --rm -v ./drive:/drive --user 1000:1000 -it sdcpp:vulkan-static-default /bin/bash | |
| ARG UBUNTU_VERSION=25.10 | |
| ARG VULKAN_SDK_VERSION=1.4.328.1 | |
| ARG VULKAN_SDK_URL="" | |
| FROM ubuntu:$UBUNTU_VERSION as build |
(Bottle install) Raid shadow legends launcher won't launch game anymore after steam was installed.
fix: set environment variable to :
MESA_VK_DEVICE_SELECT_FORCE_DEFAULT_DEVICE=1
using other methods does not work for my specific setup.
| # run clone once | |
| clone: | |
| git clone --depth 1 https://github.com/vladmandic/sdnext | |
| # webui to start the program, I'm using Arc card for SD work and igpu for usual desktop, ipex detects the DGPU and uses it automatically | |
| webui: | |
| # add --listen for exposing to the network access | |
| cd sdnext && ./webui.sh --use-ipex --theme standard/light-teal --lowvram | |
The error message you are seeing (ssl.SSLError: [SSL: DECRYPTION_FAILED_OR_BAD_RECORD_MAC] decryption failed or bad record mac) is related to SSL and may not be specifically related to Python or pip. It's possible that the issue could be due to network conditions, SSL/TLS settings, or potentially hardware issues.
In the meantime, you might consider trying the following steps:
Update your pip, setuptools, and wheel. Outdated versions of these packages can sometimes cause issues. You can update them with the following commands:
pip install --upgrade pip setuptools wheel
| # This is what make vscode remote-ssh work | |
| apk add gcompat libstdc++ curl git |
In VSCode (2023)
Hit F1, "Preference: Open User Settings (JSON)
add:
"terminal.integrated.profiles.windows": {
"msys64 - bash": {
git fetch --prune && git branch -vv | grep ': gone]' | awk '{print $1}' | xargs git branch -d
| @page "/sample" | |
| /** | |
| Sample Razor page to demonstrate how to get the query string from the navigation manager | |
| */ | |
| // inject navigation manager | |
| @inject NavigationManager NavManager | |
| <div> | |
| <h3>Test</h3> | |
| <p>Query string: @ParamDictJson</p> |
| // dotnet add package Telegram.Bot | |
| using Telegram.Bot; | |
| using Telegram.Bot.Exceptions; | |
| using Telegram.Bot.Polling; | |
| using Telegram.Bot.Types; | |
| using Telegram.Bot.Types.Enums; | |
| var keyFromEnv = Environment.GetEnvironmentVariable("TELEGRAM_BOT_API_KEY"); | |
| if (keyFromEnv is null) |
| ``` | |
| #!/bin/sh | |
| for file in *.png | |
| do | |
| ffmpeg -i $file -vf scale=720:-1 "Small-$file.png" | |
| done |