1
Apr
2026

NVIDIA 590 works only with Turing+

01 Apr 2026

The workaround

sudo nano /etc/pacman.conf

IgnorePkg = nvidia-open-dkms nvidia-utils nvidia-settings lib32-nvidia-utils
4
Apr
2025

SQLCipher DataGrip

04 Apr 2025
  1. copy your DataSource from SQLite to SQLCipher

  2. add the JDBC Driver Download and add the following driver:

   sqlite-jdbc-3.31.1.jar
  1. go to the Advanced tab and set the cipher to sqlcipher

  2. use the following connection string:

17
May
2024

mSBC Airpods 3

17 May 2024

I recommend to use for this Pipewire. On pulseaudio not tested this method.

Add new file

sudo subl /etc/wireplumber/wireplumber.conf.d/50-bluez.conf

With

monitor.bluez.properties = {
    bluez5.enable-msbc = true
}
16
May
2024

Arch Sound Hires

16 May 2024

Choose on OS installation pipewire

 sudo pacman -S mpd
 yay -s cantata

Choose for current user mode in Cantata

Install flatpak tidal-hifi

11
Mar
2024

Downgrade Plasma 6.0.1 to Plasma 5.2.7

11 Mar 2024

Plasma 6.0.1 is too laggy

That is guide how to downgrade:

sudo nano /etc/pacman.conf

#[core]
#Include = /etc/pacman.d/mirrorlist


#[extra]
#Include = /etc/pacman.d/mirrorlist
10
Jan
2024

GCP autostart

10 Jan 2024

Kubectl

subl subl /home/USER/.config/systemd/user/kubectl.service

[Unit]
Description=Kubectl Port Forward

[Service]
Type=simple
ExecStart=/home/USER/Autostart/kubectl_port_forward.sh
Restart=on-failure
RestartSec=5
4
Sep
2023

Artix impressions

04 Sep 2023
  1. Openrc is sux because mpd and etc. Resolving by systemctl
  2. After upgrade - Chrome update problem in build
  3. After upgrade syslog-ng failing on boot
21
Mar
2023

Network - Connect two projects

21 Mar 2023

First

version: "3.5"
services:
  proxy:
    image: hello-world
    ports:
      - "80:80"
    networks:
      - proxynet

networks:
25
Nov
2022

run_scaled linux

25 Nov 2022

apt install xpra xvfb

git clone https://github.com/kaueraal/run_scaled.git

cd run_scaled/
cp run_scaled /usr/local/bin
chmod +x /usr/local/bin

run_scaled <yourapp>
4
Oct
2022

zsh

04 Oct 2022

install

sudo apt install zsh 

make default shell zsh:

chsh -s $(which zsh)

oh my zsh:

sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"