https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching
| const checkboxes = document.querySelectorAll('input[type=checkbox]'); | |
| let index = 0; | |
| (function uncheckNext() { if (index >= checkboxes.length) return; try { if (checkboxes[index].checked) { checkboxes[index].click(); console.log(`Unchecked checkbox at index ${index}`); } else { console.log(`Checkbox at index ${index} is already unchecked`); } index++; setTimeout(uncheckNext, 1000); } catch (error) { console.error('Error while unchecking checkbox:', error); setTimeout(uncheckNext, 5000); } })(); |
https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetchingThose patches are to convert GameBoy ROM to .pocket ROM. This allows you to play games from the SD Card on your Analogue Pocket.
Feature like RTC and Link cable seems to be unsupported by the Analogue Pocket in GB Studio mode.
GitHub: https://github.com/BestPig/LADX-Disassembly-Pocket
| import sys | |
| import os | |
| import zlib | |
| with open(sys.argv[1], "rb") as infile: | |
| indata = infile.read() | |
| magic = b"Playdate PDX\0\0\0\0" | |
| magic_new = b"Playdate PDZ\0\0\0\0" | |
| if not indata[0:len(magic)] in [magic, magic_new]: |
| Mute these words in your settings here: https://twitter.com/settings/muted_keywords | |
| ActivityTweet | |
| generic_activity_highlights | |
| generic_activity_momentsbreaking | |
| RankedOrganicTweet | |
| suggest_activity | |
| suggest_activity_feed | |
| suggest_activity_highlights | |
| suggest_activity_tweet |
| #! /usr/bin/env python3 | |
| """Fixing bluetooth stereo headphone/headset problem in debian distros. | |
| Workaround for bug: https://bugs.launchpad.net/ubuntu/+source/indicator-sound/+bug/1577197 | |
| Run it with python3.5 or higher after pairing/connecting the bluetooth stereo headphone. | |
| This will be only fixes the bluez5 problem mentioned above . | |
| Licence: Freeware |
As you know, Twitch has made a weird decision to mute VODs if it finds copyrighted content in videos.
Here's how to enjoy VODs without this annoying mute feature.
Rules -> Customize Rules...OnBeforeResponse method:| #!/usr/bin/ruby | |
| # Create display override file to force Mac OS X to use RGB mode for Display | |
| # see http://embdev.net/topic/284710 | |
| require 'base64' | |
| data=`ioreg -l -d0 -w 0 -r -c AppleDisplay` | |
| edids=data.scan(/IODisplayEDID.*?<([a-z0-9]+)>/i).flatten | |
| vendorids=data.scan(/DisplayVendorID.*?([0-9]+)/i).flatten |
| { | |
| "name": "Poput it up!", | |
| "version": "1.0", | |
| "description": "Open the link in a new popup window instead of new tab", | |
| "permissions": ["contextMenus", "tabs"], | |
| "background": { | |
| "scripts": ["menu.js"] | |
| }, | |
| "manifest_version": 2 | |
| } |