Skip to content

Instantly share code, notes, and snippets.

@meoso
meoso / synology_zerotier.md
Created March 8, 2023 20:20 — forked from DraTeots/synology_zerotier.md
Sinology DS211j ZeroTier configuration
@meoso
meoso / config.md
Created April 8, 2019 15:33 — forked from 0XDE57/config.md
Firefox about:config privacy settings

ABOUT

about:config settings to harden the Firefox browser. Privacy and performance enhancements.
To change these settings type 'about:config' in the url bar. Then search the setting you would like to change and modify the value. Some settings may break certain websites from functioning and rendering normally. Some settings may also make firefox unstable.

I am not liable for any damages/loss of data.

Not all these changes are necessary and will be dependent upon your usage and hardware. Do some research on settings if you don't understand what they do. These settings are best combined with your standard privacy extensions (HTTPS Everywhere, NoScript/Request Policy, uBlock origin, agent spoofing, Privacy Badger etc), and all plugins set to "Ask To Activate".

@meoso
meoso / pulseaudio-bluetooth.conf
Created April 16, 2018 14:42 — forked from dlech/pulseaudio-bluetooth.conf
BlueZ 5 and PulseAudio on Debian jessie
<busconfig>
<policy user="pulse">
<allow send_destination="org.bluez"/>
</policy>
</busconfig>
@meoso
meoso / Delete Obsolete WSUS Updates.sql
Last active February 6, 2018 21:12 — forked from Chris-ZA/Delete Obsolete WSUS Updates.sql
Script to Delete Obsolete WSUS Updates
-- This script deletes all obsolete WSUS updates from a WSUS database.
-- For more information, visit http://thebashfuladmin.com/2016/05/13/workaround-for-wsus-sql-timeout-errors/
USE SUSDB
DECLARE @UpdateID INT
DECLARE @message varchar(1000)
PRINT 'Create table'
CREATE TABLE #ObsoleteUpdatesToCleanup (UpdateID INT)