Skip to content

Instantly share code, notes, and snippets.

View pablodz's full-sized avatar
🚀
9.99x Engineer

Pablo pablodz

🚀
9.99x Engineer
View GitHub Profile
@pablodz
pablodz / config
Created September 30, 2022 03:41 — forked from busterc/config
[Fix Slow BitBucket] remove IPv6 from ssh/git for bitbucket.org #git #bitbucket #ssh
# https://bitbucket.org/site/master/issues/8809/cloning-and-pushing-excruciatingly-slow#comment-34263833
Host bitbucket.org
AddressFamily inet
@pablodz
pablodz / install-jitsi-desktop.bash
Created June 9, 2022 15:07 — forked from joker-x/install-jitsi-desktop.bash
Install jitsi-desktop 2.10.5550-1 on Ubuntu 20.04 or 22.04
#!/bin/bash
# Install jitsi-desktop 2.10.5550-1 on Ubuntu 20.04 or 22.04:
# ----------------------------------------------------------
# Add missing dependencies and force to run with openjdk-8
[ "$(id -u)" -ne 0 ] && echo "This script must be run as root" && exit 1
function installDependencies() {
apt update
package main
import (
"net"
"log"
"io"
"fmt"
)
func main() {