Skip to content

Instantly share code, notes, and snippets.

@rwilkes
rwilkes / InoreaderRowHighlight.js
Created September 14, 2017 02:06
Inoreader Highlight Mouseover Row UsereScript
// ==UserScript==
// @name Inoreader - Highlights row light blue when mouse over in Article Pane
// @namespace https://openuserjs.org/scripts/jg5050/Inoreader_-_Highlights_row_light_blue_when_mouse_over_in_Article_Pane
// @description Change background to light blue when hovering with the mouse over headers in the article pane
// @downloadURL https://github.com/jimmygoings50/Userscripts/blob/master/Inoreader_-_Highlights_Row_Light_Blue_on_Mouseover.user.js
// @updateURL https://github.com/jimmygoings50/Userscripts/blob/master/Inoreader_-_Highlights_Row_Light_Blue_on_Mouseover.user.js
// @author jg5050
// @version 1.0
// @domain www.inoreader.com
// @domain inoreader.com
@rwilkes
rwilkes / VKAdminUserScript.js
Created September 14, 2017 02:04
VK Admin
// ==UserScript==
// @name VK Admin
// @grant none
// @require https://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js
// @include https://new.vk.com/*
// ==/UserScript==
//
jQuery(function($){
@rwilkes
rwilkes / GCacheBackUser.js
Created September 14, 2017 01:53
Google Cache UserScript
// ==UserScript==
// @name google cache comeback
// @namespace trespassersW
// @description Brings back links to cached pages in the Google search results
// @include http://www.google.*
// @include https://www.google.*
// @include http://webcache.googleusercontent.*
// @include https://webcache.googleusercontent.*
// /homepageURL http://userscripts.org/scripts/show/156216
// /updateURL https://userscripts.org/scripts/source/156216.meta.js
@rwilkes
rwilkes / FlyVK.js
Last active September 14, 2017 01:46
UsersScript for new VK.com API
// ==UserScript==
// @name FlyVK
// @description new.vk.com
// @include *://vk.com/*
// @include *://*.vk.com/*
// @include *://*.vk.me/*
// @include *://*.vk.cc/*
// @include *://*.userapi.com/*
// @version 1.6
// @grant GM_setValue
// ==UserScript==
// @name FlyVK
// @description new.vk.com
// @include *://vk.com/*
// @include *://*.vk.com/*
// @include *://*.vk.me/*
// @include *://*.vk.cc/*
// @include *://*.userapi.com/*
// @version 1.6
// @grant GM_setValue
@rwilkes
rwilkes / Get-SqlBlob.ps1
Created August 17, 2017 04:29
Simple POSH script to connect to SQL server and stream some table BLOBS a buffer to be reconstituted as proper files!
Function Select-TableBlob {
param(
[string]$connectionString="Initial Catalog=Anaqua;Data Source=HFX.anaqua.local;Trusted_Connection=True;",
[string]$sqlQuery="SELECT OriginalFile, ThumbNailBlob, ThumbNailBlob FROM FileInformation WHERE ((ThumbNailBlob IS NOT NULL) and (substring(convert(varchar(max),convert(varbinary(max),ThumbNailBlob)), 0, 3) like 'BM'))",
[string]$tableName,
[string]$blobColumn,
[string]$destination=(Get-Location | Split-Path),
[int]$blobLimit=10
)
[System.Data.SqlClient.SQLConnection]$connection = New-Object System.Data.SqlClient.SQLConnection
@rwilkes
rwilkes / 500px.user.js
Created August 16, 2017 13:27 — forked from oldcai/500px.user.js
Enable copy 500px images and image links by right click at the image
// ==UserScript==
// @name copy 500px images
// @namespace http://www.oldcai.com/
// @version 0.1
// @description copy 500px images
// @author You
// @match https://500px.com/photo/*
// @grant none
// ==/UserScript==
@rwilkes
rwilkes / 500px.user.js
Created August 16, 2017 13:27 — forked from homleen/500px.user.js
Show 500px photo url.
// ==UserScript==
// @match http://500px.com/photo/*
// ==/Userscript==
'use strict';
(function(){
var imgPlaceHolder = document.querySelector('.nude_placeholder');
var imgUrl = imgPlaceHolder.nextSibling.src;
// ==UserScript==
// @name 500px graber
// @namespace http://500px.com/
// @description grab photo exif info
// @include http://500px.com/*
// @copyright 2012+, You
// ==/UserScript==
// a function that loads jQuery and calls a callback function when jQuery has finished loading
function addJQuery(callback) {
<#
.NOTES
-------------------------------------
Name: Export-MediaFileDetails.ps1
Version: 3.0a - 01/15/2017
Author: Randy E. Turner
Email: [email protected]
-------------------------------------
.SYNOPSIS