Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Instantly share code, notes, and snippets.

View pparaxan's full-sized avatar
:shipit:
I just talk with computers.

xan! pparaxan

:shipit:
I just talk with computers.
View GitHub Profile
@pparaxan
pparaxan / LICENSE
Created April 12, 2026 03:11
PX LICENSE
PX License
Version 1, 2 November 2025
Copyright (c) YEAR COPYRIGHT-HOLDER <user@domain.tld>
This License applies to this version or, at your option, any later version
published by pparaxan, PROVIDED that:
(a) You may elect to use any specific version of this license for any copy
of the Software you distribute or modify. This election may be changed
to adopt any later version, but may not be downgraded to an earlier version.
@pparaxan
pparaxan / README.md
Created April 12, 2026 03:09
How to disable WhatsApp's [Web] voice message chimes

Note

Just to be clear, this can work on any site, and this can block any audio file. But just for the sake of this gist—we'll be focusing on how to disable the sounds played when listening to a voice note.

The voice message chime is annoying—imagine listening to a voice note and you're doing something else, just for a loud ass sound to go down in your eardrums as it goes to play the next one.

You can go look and use the userscript if you want to, it's just that the .mp3 filename for both the "continuing" and the "finish" chimes has been changed since when this gist has been created. If you've imported the userscript and the chimes are still playing, continuing reading this gist to understand how to fetch and update the filename in the userscript.

Click Here!
@pparaxan
pparaxan / README.md
Created March 31, 2026 16:44
How to run Polytoria on Wayland-based compositors

It took me a while but I figured it out...

So, it turns out Polytoria can't run in native Wayland, and that you have to run it in the X11 backend. But, as you may of noticed—when lanching a game on the site, it'll say to open the game via xdg-open. This is because the game is trying to open itself via it's protocol handler—which is trying to open itself in Wayland. Yes—you could just flatpak --override but surprisingly that won't work, instead—you have to make your own custom .desktop file that opens the flatpak application via X11, here's how:

Note: nvim is the text editor I use, replace it with your text editor of choice.

  1. Make the com.polytoria.launcher.desktop file in ~/.local/share/applications/
@pparaxan
pparaxan / README.md
Last active March 3, 2026 22:33
How to [unlock/root/flash a GSI] for your LG Stylo 6.

last updated 29/7/25

^ NOTE: LG has shutdown their servers that hosted the firmware, making it very difficult to locate a firmware file for your specific model. However, some members in The Bootloader Locksmiths Discord server may have it still on their computer, which in that case, ask.


ATTEMPT THIS AT YOUR OWN RISK, PLEASE READ THE DAMN FULL TUTORIAL BEFORE YOU START. I AM NOT RESPONSIBLE FOR ANY BRICKED DEVICES! THIS PROCESS IS NOT FOR THE INEXPERIENCED.

Download these stuff first

@pparaxan
pparaxan / README.md
Last active July 29, 2025 23:03
How to make your microphone & desktop audio be one [output] source

Create a new shell script (.sh) with any name you prefer.

Insert the following
#!/bin/bash
pactl load-module module-null-sink sink_name=microphone_and_desktop_audio
pactl load-module module-loopback source=<your_default_sink>.monitor sink=microphone_and_desktop_audio
pactl load-module module-loopback source= sink=microphone_and_desktop_audio
@pparaxan
pparaxan / Application-Audio-To-Virtual-Microphone.md
Created August 8, 2024 07:22
Convert Application Audio to [Virtual] Microphone Input

Create a new shell script (.sh) with any name you prefer.

Insert the following (Click Me)
#!/bin/bash
pactl load-module module-null-sink sink_name="VirtualOutputFix" sink_properties="device.description='OutputFix(dont_use)'"
pactl load-module module-null-sink sink_name="VirtualInput" sink_properties="device.description='VirtualSource'"
pactl load-module module-remap-source master="VirtualInput.monitor" source_name="VirtualSource"
@pparaxan
pparaxan / Literal_Microphone_Connected_To_Aux.md
Created August 8, 2024 07:20
[Shure] Microphone Connected to Computer's aux port

You should have alsa-utils installed before continuing


Using your preferred text editor, open the file /etc/modprobe.d/alsa-base.conf.

Add the following line to the file:

Click Me :3 AMD