Skip to content

Instantly share code, notes, and snippets.

@fbartho
fbartho / 0. Synology RAID Expansion-Resync Performance.md
Last active April 24, 2025 04:55
Walkthrough of what I did to increase performance on my Synology NAS box during an expansion, and afterwards.

Performance on Synology RAIDs

(especially while expanding)

Warning: The exact commands may not match for your particular linux OS / Synology(NAS) device. I had to customize the commands after exploring my particular system's setup.

If you're new to linux, or this is a new piece of hardware / a new synology device, jump down to the section called "Inspecting a setup"

Contents

@blacktwin
blacktwin / delete_watched_TV.py
Created April 10, 2017 14:02
From a list of TV shows, check if users in a list has watched shows episodes. If all users in list have watched an episode of listed show, then delete episode
"""
From a list of TV shows, check if users in a list has watched shows episodes.
If all users in list have watched an episode of listed show, then delete episode.
"""
import requests
import sys
import os
@GMMan
GMMan / groupees-bundles.md
Last active May 24, 2019 17:16
List of Groupees Bundles and Contents (June 23, 2017)

List of Groupees Bundles and Contents


Twin Sister + Max

Start: 2010-12-17 5:00:00 PM
End: 2010-12-19 5:00:00 PM
Link: https://groupees.com/1
1745.38 total sales

@noromanba
noromanba / kokubunizer.user.js
Created December 7, 2012 21:58 — forked from udzura/kokubun.user.js
kokubunize aka NDKify for UserScript
// ==UserScript==
// @name kokubunizer
// @namespace https://flavors.me/noromanba
// @description kokubunize aka NDKify for UserScript
// @include https://www.facebook.com/*
// @downloadURL https://raw.github.com/gist/4236851/kokubunizer.user.js
// @installURL https://raw.github.com/gist/4236851/kokubunizer.user.js
// @version 2012.12.8.3
// @license WTFPL http://sam.zoy.org/wtfpl/ (Do What The Fuck You Want To Public License)
// @contributor udzura https://gist.github.com/4212643
@BrockA
BrockA / waitForKeyElements.js
Created May 7, 2012 04:21
A utility function, for Greasemonkey scripts, that detects and handles AJAXed content.
/*--- waitForKeyElements(): A utility function, for Greasemonkey scripts,
that detects and handles AJAXed content.
Usage example:
waitForKeyElements (
"div.comments"
, commentCallbackFunction
);