Skip to content

Instantly share code, notes, and snippets.

View cha0s's full-sized avatar
👌
Gettin' it

Ruben R cha0s

👌
Gettin' it
View GitHub Profile
2024-02-18T03:37:33.9304774Z Requested labels: ubuntu-latest
2024-02-18T03:37:33.9305073Z Job defined at: cha0s/flecks/.github/workflows/release-please.yml@refs/heads/master
2024-02-18T03:37:33.9305184Z Waiting for a runner to pick up this job...
2024-02-18T03:37:34.6233664Z Job is waiting for a hosted runner to come online.
2024-02-18T03:37:36.7720789Z Job is about to start running on the hosted runner: GitHub Actions 4 (hosted)
2024-02-18T03:37:38.8237267Z Current runner version: '2.313.0'
2024-02-18T03:37:38.8264340Z ##[group]Operating System
2024-02-18T03:37:38.8264988Z Ubuntu
2024-02-18T03:37:38.8265328Z 22.04.3
2024-02-18T03:37:38.8265758Z LTS
// ==UserScript==
// @name Fuck yummly
// @namespace yummly
// @include https://www.yummly.com/recipe/*
// @version 1
// @grant none
// ==/UserScript==
var loop = true, clicked = 0;
var reactId = null;
---- Minecraft Crash Report ----
WARNING: coremods are present:
Brandon's Core (BrandonsCore-1.10.2-2.1.4.92-universal.jar)
BookshelfLoadingPlugin (Bookshelf-1.10.2-1.4.3.338.jar)
CCLCorePlugin (CodeChickenLib-1.10.2-2.5.6.233-universal.jar)
IC2core (industrialcraft-2-2.6.142-ex110.jar)
TransformerLoader (OpenComputers-MC1.10.2-1.6.2.7.jar)
CoFH Loading Plugin (CoFHCore-1.10.2-4.1.0.155-universal.jar)
ChiselCorePlugin (Chisel-MC1.10.2-0.0.8.12.jar)
java.util.concurrent.ExecutionException: java.lang.NullPointerException
at java.util.concurrent.FutureTask.report(FutureTask.java:122) ~[?:1.8.0_72]
at java.util.concurrent.FutureTask.get(FutureTask.java:192) ~[?:1.8.0_72]
at net.minecraft.util.Util.func_181617_a(SourceFile:46) [h.class:?]
// ==UserScript==
// @name World's Laziest FB Cleaner
// @namespace gm.cha0s
// @description Checks if there's suggest post bullshit on your FB feed once a second. Nukes it with prejudice.
// @include https://www.facebook.com/
// @version 1
// @grant none
// ==/UserScript==
(function() {

Reddichat - Markdown - Expando - Image - Resizer

path = require 'path'

exports.pkgmanRegister = (registrar) ->

  registrar.registerHook 'shrubAngularDirective', -> [
    '$compile', '$window'
    ($compile, $window) ->
@cha0s
cha0s / video-containers.user.js
Last active June 13, 2017 09:57
Video containers
// ==UserScript==
// @name Video containers
// @namespace gm.cha0s
// @description Resize video containers
// @include http://www.promptfile.com/*
// @include http://www.movshare.net/video/*
// @include http://movpod.in/*
// @include http://vodlocker.com/*
// @include http://bestreams.net/*
// @include http://www.nowvideo.sx/video/*
@cha0s
cha0s / primewire-unshittification.user.js
Last active October 7, 2015 22:59
Primewire unshittification
// ==UserScript==
// @name Primewire unshittification
// @namespace gm.cha0s
// @include /^https?:\/\/www\.primewire.ag\/(watch|tv)/
// @version 1
// @grant none
// ==/UserScript==
(function() {
@cha0s
cha0s / gist:cc46894e3f1704812f66
Created February 12, 2015 21:54
Reddichat notifications (thanks milcom!)
javascript:(function() { var timeToDisplayNotifInSeconds = 5;var notificationRegistrar = function(){var notify = function(message, callback) {var notification = new Notification(message); callback(notification);};angular.element(document.body).injector().invoke(['$rootScope', 'shrub-socket', 'shrub-ui/notifications', 'shrub-user', function($rootScope, socket, notifications, user) { if (window.notifyMentions) { window.notifyMentions = false; notifications.add({text: 'Notifications for mentions disabled.'}); } else { window.notifyMentions = true; socket.on('reddichat.chat.message', function(message) {if(message.text.search(user.instance().name) > -1) {notify(message. from + ": " + message.text, function(notification){setTimeout(function(){notification.close();}, timeToDisplayNotifInSeconds * 1000);});} }); notifications.add({text: 'Notifications for mentions enabled.'}); } $rootScope.$digest(); }]);};var registerNotificationsIfPermitted = function(c
javascript:(function() {
var timeToDisplayNotifInSeconds = 5;
var notificationRegistrar = function(){
var notify = function(message, callback) {
var notification = new Notification(message);
callback(notification);
};