Skip to content

Instantly share code, notes, and snippets.

View Cyan101's full-sized avatar
💭
Looking for work/projects!

Cyan Cyan101

💭
Looking for work/projects!
  • Perth, Australia
View GitHub Profile
@TheSunCat
TheSunCat / DisblockOrigin.theme.css
Last active April 11, 2024 10:29
Hide all Nitro & Boost upsells in Discord!
/**
* @name Disblock Origin
* @author TheSunCat and contributors
* @description Hide all Nitro & Boost upsells on Discord!
* @source https://gist.github.com/TheSunCat/58fedaa19d6154ef3e4b2b676c286906
*/
/* ------------------ */
/* Hide Nitro upsells */
/* ------------------ */
@jonathanpmartins
jonathanpmartins / install-libsodium.sh
Last active July 28, 2019 03:14
Install Libsodium on Ubuntu 14.04.3 LTS Trusty
#!/bin/bash
sudo add-apt-repository ppa:chris-lea/libsodium;
sudo echo "deb http://ppa.launchpad.net/chris-lea/libsodium/ubuntu trusty main" >> /etc/apt/sources.list;
sudo echo "deb-src http://ppa.launchpad.net/chris-lea/libsodium/ubuntu trusty main" >> /etc/apt/sources.list;
sudo apt-get update && sudo apt-get install libsodium-dev;