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
// ==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(){ |
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
# 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. |
-
/reload [client]
- Reloads server and optionally client -
/reload_client
- Reloads client only -
/ftb_mode set <mode>
- Sets current mode -
/ftb_mode get
- Prints current mode -
/ftb_mode list
- Prints all available modes -
/edit_config [group] [entry] [value]
- Opens config Gui, if only 1st argument is given
Capacity (MRF) | Range¹ | Links² | |
---|---|---|---|
Basic Energy Relay Crystal | 4 | 32 | 8 |
Wyvern Energy Relay Crystal | 16 | 64 | 16 |
Draconic Energy Relay Crystal | 64 | 127 | 32 |
Basic Energy I/O Crystal | 4 | 32 | 2 |
Wyvern Energy I/O Crystal | 16 | 64 | 3 |
Draconic Energy I/O Crystal | 64 | 127 | 4 |
Basic Wireless Energy Crystal | 4 | 32 | 4 |
Wyvern Wireless Energy Crystal | 16 | 64 | 8 |
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
import requests | |
import json | |
from urlparse import urlparse | |
sip_domain = "SIP_DOMAIN.COM" | |
username = "USERNAME@SIP_DOMAIN.COM" # or: "NETBIOS_DOMAIN\\WINDOWS_USERNAME" | |
password = "YOUR_LYNC_PASSWORD" # or: "WINDOWS_PASSWORD" | |
def extractAuthURL(str): | |
start = str.find('MsRtcOAuth'); |
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
#!/usr/bin/python | |
from __future__ import print_function,division | |
from Crypto.Protocol.KDF import PBKDF2 | |
from Crypto.Cipher import AES | |
from base64 import decodestring,encodestring | |
from sys import stdout,stdin | |
from json import loads,dumps | |
from math import ceil | |
# fshack.py <Vault1.sav >Vault2.sav |
OlderNewer