Skip to content

Instantly share code, notes, and snippets.

View Blad3Mak3r's full-sized avatar
:octocat:

Juan Luis Caro Blad3Mak3r

:octocat:
View GitHub Profile
@Blad3Mak3r
Blad3Mak3r / Animal.kt
Created March 16, 2022 17:54
Redisson Codec for Kotlin JSON Serialization
@Serializable
data class Animal(
val id: Long,
val name: String
)
@GeneralSadaf
GeneralSadaf / List of Discord voice activities.md
Last active June 20, 2024 15:45
IDs of Discord voice activities.

Activities no longer require boosts to unlock. Activities except Watch Together are locked behind Nitro. Kept boost levels for prosperity.

Stable versions

Application ID Application name Boost level Max participants
755600276941176913 YouTube Together(Old) 0 Unlimited
880218394199220334 Watch Together(New) 0 Unlimited
755827207812677713 Poker Night 1 25
773336526917861400 Betrayal.io 0 Unlimited
814288819477020702 Fishington.io 0 Unlimited
832012774040141894 Chess In The Park 1 Unlimited
@Blad3Mak3r
Blad3Mak3r / tunnelbroker.md
Last active November 11, 2022 00:23
HE ipv6 Tunnelbroker configuration for Debian 11

TunnelBroker-Debian11

Configure /etc/network/interfaces

auto he-ipv6
iface he-ipv6 inet6 v4tunnel
        address   2001:470:xxxx::2
        netmask   48
        endpoint  xxx.xxx.xxx.xxx
 local xxx.xxx.xxx.xxx
@jmdobry
jmdobry / Instructions.md
Last active August 31, 2021 18:21
Nginx reverse-proxy for RethinkDB Admin UI

Start your rethinkdb instance with this flag: --bind all (or bind=all in the configuration file for your instance)

Block external access to the web UI with these two commands: sudo iptables -A INPUT -i eth0 -p tcp --dport 8080 -j DROP sudo iptables -I INPUT -i eth0 -s 127.0.0.1 -p tcp --dport 8080 -j ACCEPT

Install nginx: sudo apt-get install nginx