source $OPENRC_FILE
openstack volume create --size 200 --image "Ubuntu 22.04 LTS x64" devstack-boot-volume
openstack security group create devstack-sg
My discord was lagging increasingly during long calls on my Manjaro installation. I searched a bit on the Wiki but the fix shared there didn't work for. What worked for me is this answer on the Discord support forum, that I will detail a bit here. Start by moving to the right folder:
cd ~/.config/discord/<your_version>/modules/discord_desktop_core
Then, depending on whether you are a javascript developer or not, you may need to install the npm
package of your distribution.
On Arch/Manjaro, yay -S npm
will do. Once this is done, unpack the core.asar
file with
npx asar extract core.asar core
This file contains 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
Tested working 15 Jun 2020, irssi version 1.2.2 | |
(Update: still works October 2023!) | |
This is a TLDR version of https://blog.crunchprank.net/connecting-to-twitch-chat-via-irssi/ | |
Get your OAuth token (password) here: https://twitchapps.com/tmi/ | |
# Network setup: | |
/network add -nick YOUR_TWITCH_USERNAME Twitch |
I need a way to get a list of plugins so that I can use them with docker jenkins
in the format <plugin>: <version>
The jenkins CLI will allow us to interact with our jenkins server from the command line. We can get it with a simple curl call.
curl 'localhost:8080/jnlpJars/jenkins-cli.jar' > jenkins-cli.jar
This file contains 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
$ ffmpeg -i input.mp4 -vcodec h264 -acodec mp2 output.mp4 |