http://bl.ocks.org/ouroborus/raw/bdf99d881c2c9409933da74fedbb24a9/
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
# LCore.exe (Logitech's tool for configuring and customizing their devices) has a pretty bad memory leak. | |
# This script kills LCore when it starts using more that 256MB, cleans up the task tray, then restarts LCore. | |
# It uses the same command line used to initially start LCore. | |
# Set LCore to start when Windows starts. | |
# (If you need to start it manually, include the /minimized argument: LCore.exe /minimized ) | |
# Save this file to %USERPROFILE%\command\reset-LCore.ps1 | |
# Create a Task Scheduler item with triggers for: | |
# every hour after logon, and | |
# every hour after created or modified. |
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 anti-blockAdBlock | |
// @include http://www.wired.com/* | |
// @include https://www.wired.com/* | |
// @grant none | |
// ==/UserScript== | |
window.addEventListener('load', function(event){ | |
var $ = jQuery, | |
$target = $('section.post-container'); |
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 Hide "Suggested post" on Facebook | |
// @include https://www.facebook.com/* | |
// @grant none | |
// ==/UserScript== | |
(function(){ | |
var watcher = function(){ | |
var target=document.querySelector('div#stream_pagelet>div[id^="topnews_main_stream_"]>div[id^="feed_stream_"]'); | |
if(target) { | |
var mangle=function(){ |
NewerOlder