Skip to content

Instantly share code, notes, and snippets.

@Bluscream
Bluscream / .gitignore
Last active May 11, 2017 18:29 — forked from shtrih/EmbedAV.plugin.js
Plugin for BetterDiscord. Creates `<video>` or `<audio>` for links. Screenshot in comments
!EmbedAV.plugin.js
*.json
*.js
!EmbedAV.plugin.js
@Bluscream
Bluscream / docs.js
Created May 21, 2017 23:04 — forked from paulredmond/docs.js
Generate Atom snippet documentation from a package's CSON files
/**
* Convert cson snippets into a Markdown document for reference
*/
const cson = require('cson');
const glob = require ('glob');
const path = require('path');
const fs = require('fs');
const _ = require('lodash');
function Snippet(title, code, prefix, fileName, lang) {
@Bluscream
Bluscream / notraces.py
Created June 28, 2017 03:58
No Traces Cog for appu1232/Discord-Selfbot
import discord, asyncio
from cogs.utils.checks import *
class notraces:
def __init__(self, bot):
self.bot = bot
self.active = False
self.delete_after = 30
config = load_config()
@Bluscream
Bluscream / umatrix.json
Last active October 11, 2018 17:39
umatrix rules
{
"app": "uMatrix",
"version": "1.3.14",
"when": 1539279522200,
"settings": {
"alwaysDetachLogger": false,
"autoUpdate": true,
"clearBrowserCache": true,
"clearBrowserCacheAfter": 60,
"cloudStorageEnabled": false,
@Bluscream
Bluscream / gist:35a96eac0d8dc2007b38414bb930a662
Last active December 4, 2017 13:37 — forked from nikolaplejic/gist:3654637
How to copy/paste your password in PayPal's change password form

PayPal blocks copy/paste actions in their "change password" form, citing some irrelevant security issues as the reason. That's a load of crap, and they know it -- disabling copy/paste makes it a lot harder to use a decent password generator and a lot easier to screw up your pwd when retyping, especially if it's a long one (as it should be!).

So, here's the quick'n'dirty way to use an externally generated password in your PayPal account:

@Bluscream
Bluscream / badges.json
Last active April 5, 2025 03:18
Badges
{
"Custom Badges Outdated!": {
"name": "Update your CustomBadges script for new badges!",
"description": "https://github.com/Bluscream/pyTSon_plugins/releases/tag/CustomBadges",
"filename": "custombadges_outdated"}
}
@Bluscream
Bluscream / column.js
Last active February 20, 2018 04:31
get colum content
function copyToClipboard(text) {
if (window.clipboardData) { // Internet Explorer
window.clipboardData.setData("Text", text);
} else {
unsafeWindow.netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
const clipboardHelper = Components.classes["@mozilla.org/widget/clipboardhelper;1"].getService(Components.interfaces.nsIClipboardHelper);
clipboardHelper.copyString(text);
}
}
function copyTextToClipboard(text) {
@Bluscream
Bluscream / TS Clear Cache.xml
Last active December 17, 2018 06:56
Teamspeak Clear Cache
<?xml version="1.0" encoding="UTF-16"?>
<Task version="1.4" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
<RegistrationInfo>
<Date>2018-03-03T07:39:24.4323954</Date>
<Author>BETTY-PC\blusc</Author>
<URI>\TS Clear Cache</URI>
</RegistrationInfo>
<Triggers>
<LogonTrigger>
<Repetition>
@Bluscream
Bluscream / channelinfo.tpl
Created March 15, 2018 07:33
teamspeak-dark-extended-info-tpls
<!--
CHANNEL_CLIENTS_COUNT
CHANNEL_CODEC
CHANNEL_CODEC_BITRATE
CHANNEL_DESCRIPTION
CHANNEL_FLAGS
CHANNEL_ICON
CHANNEL_ICON_SCALED
CHANNEL_ID
CHANNEL_MAXCLIENTS
@Bluscream
Bluscream / style.user.css
Last active July 30, 2019 21:33
LxBTSC teamspeak-dark
body{
color:white !important;
font-size:14px !important;
font-family: 'Segoe UI', 'Segoe UI Symbol', 'Helvetica Neue',Helvetica,sans-serif !important;
}
body,.tweet-container,.generic-og-embed {
background-color:#2F3136 !important;
}
.embed-container {
background-color: rgba(146, 146, 146, 0.42) !important;