I hereby claim:
- I am roxasshadow on github.
- I am roxasshadow (https://keybase.io/roxasshadow) on keybase.
- I have a public key ASBchmtDtkLLAudVuU0yme0tsjTC7v_Cq8cQUXBRBZ57jQo
To claim this, I am signing this object:
| // ==UserScript== | |
| // @name pixiv-gallery-hq | |
| // @namespace pixiv-gallery-hq | |
| // @description Make pixiv galleries optimized for hires screens | |
| // @include https://www.pixiv.net/member_illust.php?id=* | |
| // @version 1 | |
| // @grant none | |
| // ==/UserScript== | |
| $('._thumbnail').each((i, e_) => { |
| require 'octokit' | |
| username = '' | |
| password = '' | |
| org_name = 'honeypotio' | |
| board_name = 'The Agile Bear' | |
| column_name = 'Live/Done' | |
| client = Octokit::Client.new(login: username, password: password) | |
| user = client.user |
| Moved => https://github.com/RoxasShadow/usurper |
| while :; do | |
| currentOwner=$(lsof | grep -i VDC | awk -F '[^[:alnum:]]' '{print $NR}') | |
| if [[ "$currentOwner" == "" && "$previousOwner" != "" && "$currentOwner" != "$previousOwner" ]]; then | |
| previousOwner="" | |
| osascript -e "display notification \"Camera deactivated\" with title \"Apple Camera\"" | |
| elif [ "$previousOwner" != "$currentOwner" ]; then | |
| previousOwner=$currentOwner | |
| osascript -e "display notification \"Camera activated by $currentOwner\" with title \"Apple Camera\"" | |
| fi |
I hereby claim:
To claim this, I am signing this object:
| // ==UserScript== | |
| // @name Twimg gallery opener | |
| // @namespace https://gist.github.com/RoxasShadow/4111c4ad781613069928 | |
| // @description Add an "Open images" link inside the gear to the left of the "Following" button in the tweet modal to open the uncompressed version of each image. | |
| // @include https://twitter.com/* | |
| // @author Roxas Shadow | |
| // @version 3 | |
| // @grant none | |
| // ==/UserScript== |
| require 'uptimerobot' | |
| require 'droplet_kit' | |
| require 'rufus-scheduler' | |
| include UptimeRobot::Monitor | |
| UP_TOKEN = '' | |
| DO_TOKEN = '' | |
| DROPLET_ID = 0 |
| require 'pp' | |
| require 'parslet' | |
| require 'parslet/convenience' | |
| module Nonhocapito | |
| class Parslet::Parser | |
| def self.basic_rule(key, input = nil, &block) | |
| block ||= -> { match[input].repeat } |
| extern crate hyper; | |
| extern crate rustc_serialize; | |
| use std::io::Read; | |
| use std::env; | |
| use hyper::Client; | |
| use hyper::header::Connection; | |
| use rustc_serialize::json::Json; |