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
| blueprint: | |
| name: Hoe Automation | |
| description: Control hose schedule | |
| domain: automation | |
| input: | |
| hoses: |
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
| use std::collections::HashSet; | |
| use std::sync::{Arc, Mutex}; | |
| use file_rotate::compression::Compression; | |
| use file_rotate::suffix::{AppendTimestamp, DateFrom, FileLimit}; | |
| use file_rotate::{ContentLimit, FileRotate}; | |
| use lazy_static::lazy_static; | |
| use slog::Drain; | |
| use crate::config::LoggingConfig; |
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
| /* Switch comments around on DDoS. */ | |
| @import 'https://static.v4c.wtf/v4c-script/release/v4c-script.css?5dec18'; | |
| @import 'https://fonts.googleapis.com/css?family=Lato'; | |
| @import 'https://use.fontawesome.com/releases/v5.2.0/css/all.css'; | |
| #lights{ | |
| background-image: url('https://cdn.discordapp.com/attachments/471165110493380618/521373086855987216/aYRR7ZI.png'); | |
| height:33px; | |
| width:100%; | |
| background-repeat:repeat-x; |
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 PlayRust+ | |
| // @namespace fuzo.us | |
| // @include http://playrust.io/map/* | |
| // @version 1 | |
| // @grant none | |
| // ==/UserScript== | |
| (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 AyySync.latest | |
| // @namespace http://fuzo.us/ | |
| // @version 1.2 | |
| // @description try to take over the world! | |
| // @author enzi | |
| // @match http://cytu.be/r/* | |
| // @match https://cytu.be/r/* | |
| // @grant none | |
| // ==/UserScript== |
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 AyySync | |
| // @namespace http://fuzo.us/ | |
| // @version 1.34 | |
| // @description try to take over the world! | |
| // @author enzi | |
| // @match http://cytu.be/r/* | |
| // @match https://cytu.be/r/* | |
| // @grant none | |
| // ==/UserScript== |
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 AyySync | |
| // @namespace http://fuzo.us/ | |
| // @version 0.2 | |
| // @description try to take over the world! | |
| // @author enzi | |
| // @match http://cytu.be/r/* | |
| // @match https://cytu.be/r/* | |
| // @grant none | |
| // ==/UserScript== |
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
| local SERVICE = {} | |
| SERVICE.Name = "CyTube" | |
| SERVICE.IsTimed = false | |
| SERVICE.ValidExtensions = { '', 'html', 'htm', 'xhtml', 'dhtml', 'php', 'asp', 'aspx' } | |
| local UrlPattern = "http://cytu.be/r/%s" | |
| function SERVICE:Match( url ) |
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
| (function($) { | |
| var initjQuery = jQuery.fn.init; | |
| $.fn.init = function(s, c, r) { | |
| if ($.type(s) === "object" && "toElement" in s) { | |
| return s.toElement(); | |
| } else { | |
| return new initjQuery(s,c,r); | |
| } | |
| }; |