This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This is unaceptable. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Please not discourse again | |
// @namespace Violentmonkey Scripts | |
// @match *://*/* | |
// @grant none | |
// @version 1.0 | |
// @author - | |
// @description 2/5/2025, 2:35:16 AM | |
// ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @license MIT | |
// @copyright Copyright (c) 2019, Romain Lebesle <[email protected]> (https://thoughtsunificator.me) | |
// @namespace https://thoughtsunificator.me | |
// @name Duckduckgo Search Results Filter | |
// @author Romain Lebesle <[email protected]> (https://thoughtsunificator.me) | |
// @homepageURL https://thoughtsunificator.me/ | |
// @supportURL https://thoughtsunificator.me/ | |
// @version 1.3 | |
// @description Duckduckgo Blacklist Results |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @license MIT | |
// @copyright Copyright (c) 2019, Romain Lebesle <[email protected]> (https://thoughtsunificator.me) | |
// @namespace https://thoughtsunificator.me | |
// @name Block ads on Youtube | |
// @author Romain Lebesle <[email protected]> (https://thoughtsunificator.me) | |
// @supportURL https://thoughtsunificator.me/ | |
// @version 1.2 | |
// @description Block ads on Youtube | |
// @run-at document-start |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @license MIT | |
// @copyright Copyright (c) 2019, Romain Lebesle <[email protected]> (https://thoughtsunificator.me) | |
// @namespace https://thoughtsunificator.me | |
// @name Google Search Results Filter | |
// @author Romain Lebesle <[email protected]> (https://thoughtsunificator.me) | |
// @homepageURL https://thoughtsunificator.me/ | |
// @supportURL https://thoughtsunificator.me/ | |
// @version 1.0 | |
// @description Google Blacklist Results |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 3.21.1 | |
FROM alpine@sha256:b97e2a89d0b9e4011bb88c02ddf01c544b8c781acf1f4d559e7c8f12f1047ac3 | |
RUN apk add --update \ | |
python3=3.12.8-r1 \ | |
py3-pip=24.3.1-r0 \ | |
&& rm -rf /var/cache/apk/* | |
RUN pip install --break-system-packages plexapi==4.16.1 websocket-client==1.8.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 3.21.1 | |
FROM alpine@sha256:b97e2a89d0b9e4011bb88c02ddf01c544b8c781acf1f4d559e7c8f12f1047ac3 | |
ARG SAMBA_USER=cloud | |
ARG SAMBA_PASSWORD="r7YOFnt/m49lROpYiGSAqJhkJAgoymV0F8Rnq1aZOCI=" | |
RUN apk add --update \ | |
samba-common-tools=4.20.6-r1 \ | |
samba-client=4.20.6-r1 \ | |
samba-server=4.20.6-r1 \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir -p /etc/opt/chrome/policies/managed | |
cat > /etc/opt/chrome/policies/managed/disable-print-preview.json <<EOF | |
{ | |
"DisablePrintPreview": true | |
} | |
EOF |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Based on https://gist.github.com/BrianGilbert/1ad7e3931406f485a86a35aefb0aa1b1 */ | |
#main-window:has(#mainPopupSet:hover) #sidebar-box, | |
#main-window:has(#appcontent:hover) #sidebar-box { | |
width: 0!important; | |
min-width: 0!important; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let { XPIDatabase } = ChromeUtils.import('resource://gre/modules/addons/XPIDatabase.jsm', {}); | |
XPIDatabase.isDisabledLegacy = (addon) => false; | |
XPIDatabase.mustSign = (aType) => false; |
NewerOlder