Skip to content

Instantly share code, notes, and snippets.

@puzzlepeaches
puzzlepeaches / user.js
Last active October 9, 2021 14:29 — forked from AetherEternity/user.js
Silent firefox
// Mozilla User Preferences
// To change a preference value, you can either:
// - modify it via the UI (e.g. via about:config in the browser); or
// - set it within a user.js file in your profile (create it if it doesn't exist).
//
// Profile folder location on different systems:
// Windows: C:\Users\<username>\AppData\Roaming\Mozilla\Firefox\Profiles\xxxxxxxx.default
// Mac OS X: Users/<username>/Library/Application Support/Firefox/Profiles/xxxxxxxx.default
// Linux: /home/<username>/.mozilla/firefox/xxxxxxxx.default
.git/HEAD
.git/config
.git/index
.git/logs/HEAD
/.DS_Store
/.appveyor.yml
/.arcconfig
/.arcrc
/.aws/credentials
/.babelrc
@puzzlepeaches
puzzlepeaches / install.sh
Last active November 12, 2019 18:03
install
#!/bin/bash
echo 'Updating and upgrading. This may take a bin'
apt update && apt autoremove -y
echo 'Installing golang'
wget -q -O - https://raw.githubusercontent.com/canha/golang-tools-install-script/master/goinstall.sh | bash
echo 'Dont worry about it'
source ~/.bashrc
@puzzlepeaches
puzzlepeaches / dark.md
Created July 17, 2018 00:04 — forked from a7madgamal/dark.md
Dark mode for Slack on MacOS
  1. Close slack
  2. Open this file /Applications/Slack.app/Contents/Resources/app.asar.unpacked/src/static/ssb-interop.js
  3. Append this to it
document.addEventListener('DOMContentLoaded', function() {
 $.ajax({
   url: 'https://cdn.rawgit.com/laCour/slack-night-mode/master/css/raw/black.css',
   success: function(css) {
 $("").appendTo('head').html(css);