Skip to content

Instantly share code, notes, and snippets.

View Vusys's full-sized avatar

Bryan Vusys

View GitHub Profile
// ==UserScript==
// @name Wikipedia Vector
// @author Vusys
// @match *://*.wikipedia.org/*
// @exclude *://*.wikipedia.org/
// @grant none
// @license MIT
// ==/UserScript==
(function() {
@Vusys
Vusys / oldishnewlaraveldocs.userstyle.css
Last active August 20, 2019 21:02
Oldish New Laravel Docs
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');
body {
font-family: 'Open Sans', sans-serif;
color: #525252;
}
a, h2{
transition: none !important;
}
//...
public function register()
{
$this->app->singleton('command.migrate.fresh', function () {
return new FreshCommand();
});
}
//...
<?php
/*
Plugin Name: No GDPR Tools
Plugin URI: https://vuii.co.uk
Description: No GDPR Tools
Author: Bryan Channon
Version: 0.1
Author URI: https://vuii.co.uk
*/
// ==UserScript==
// @name Wikia Monobook
// @include *.wikia.com/*
// @grant none
// ==/UserScript==
(function() {
var loc = window.location.toString();
if(loc.indexOf('useskin=monobook') === -1){
location.replace(loc + (loc.indexOf('?') === -1 ? '?useskin=monobook' : '&useskin=monobook' ) );
// ==UserScript==
// @name Twitter No Edge
// @namespace Vusys
// @include https://twitter.com/
// @version 1
// @grant none
// ==/UserScript==
document.addEventListener("DOMContentLoaded", function(event) {
@Vusys
Vusys / doNotUpdateSpotify.sh
Created February 6, 2017 08:22 — forked from AllanLRH/doNotUpdateSpotify.sh
Disable Spotify autoupdate on Mac OS X (testet on Yosemite).
# This script prevents Spotifys Autoupdating on OS X (testet on Yosemite)
# Based on this tutorial:
# http://supraliminal.net/blog/2013/4/21/how-to-revert-back-to-the-older-better-spotify-client
#
# This script must be run as root:
# sudo sh doNotUpdateSpotify.sh
#
FILE="/tmp/out.$$"
if [ "$(id -u)" != "0" ]; then
@Vusys
Vusys / flair_dl.php
Last active December 31, 2016 16:54
<?php
$user = "xxxx";
$hash = "xxxx";
$url = "https://www.reddit.com/r/wow/api/flairlist.json";
$next = null;
$fp = fopen('./flair_list.csv', 'w');
$has_next = true;

Keybase proof

I hereby claim:

  • I am vusys on github.
  • I am vusys (https://keybase.io/vusys) on keybase.
  • I have a public key ASAVJ-XOnMDFzdN5G1dWRR7CIMvmvIfCZLBZjd987eaE3Qo

To claim this, I am signing this object:

// ==UserScript==
// @name RedditLog Linker
// @namespace vusys
// @include http://redditlog.com/snapshot*
// @version 1
// @grant none
// @require http://codeorigin.jquery.com/jquery-2.0.3.min.js
// ==/UserScript==
$(function() {