Skip to content

Instantly share code, notes, and snippets.

@notpeelz
notpeelz / discord.js
Created November 5, 2020 16:50 — forked from silver-mixer/discord.js
Higher Discord volume control
(function() {
// The following utility function are taken from EnhancedDiscord, developed by
// joe27g <https://github.com/joe27g>, and licensed under an MIT License.
// All credit goes to joe27g for the breadth of the work regarding accessing
// webpack modules at runtime.
//
// ---
// MIT License
//
@notpeelz
notpeelz / default.nix
Created April 4, 2020 20:35 — forked from lightdiscord/default.nix
Rust and wasm with nixos
with import <nixpkgs> {
overlays = map (uri: import (fetchTarball uri)) [
https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz
];
};
stdenv.mkDerivation {
name = "rust-wasm";
buildInputs = [
cargo-web