Skip to content

Instantly share code, notes, and snippets.

@Chematronix
Chematronix / fb_accept_friends.js
Last active January 14, 2023 00:16 — forked from thealphadollar/fb_accept_friends.js
Script To Accept All Facebook Friend Requests
// Open Facebook, log in, and go to https://www.facebook.com/friends/requests/.
// Please open the developer console of your browser in the Tools menu, pressing F12 or such.
// Copy the entire script into the console and hit enter.
// Do not close or refresh the browser tab unless you want the script to stop abruptly.
// If the script does not work, you may need to allow same site scripting https://stackoverflow.com/a/50902950
Facebook = {
config: {
confirmText: "Confirm",
actionDelay: 2000,

Metta como el Sol

Goldstein habla de siempre interpretar el dharma como una instrucción. Vincent leyó un tuit de Kenneth… y lo hizo una práctica:

Irradia buena voluntad en todas direcciones, como el Sol.

Instrucciones básicas:

Marco: ______ cómo el Sol

@Chematronix
Chematronix / Alt-Tab on Wheels (with Mouse RClick + Wheel).ahk
Last active January 9, 2020 00:52
Switch between running programs with the flick of a finger: press down the Right Mouse Button and turn the mouse wheel.
; ---------------------------------------------------- ;
; Alt-Tab on Wheels (with Mouse RClick + Wheel) ;
; ---------------------------------------------------- ;
; Switch between running programs with the flick of a
; finger: press down the Right Mouse Button and turn
; the mouse wheel.
;
; Install https://www.autohotkey.com/ (Windows only) to run.
; To auto-start, copy the script or a shortcut to your
; Start Menu\Programs\Startup directory
@Chematronix
Chematronix / TabsOnWheels - Switch Tabs with Mouse Wheel.ahk
Last active April 20, 2024 15:50
TabsOnWheels: Switch browser (or other program's) tabs with your mouse wheel when hovering over the tab bar (and optionally address bar). Press Middle/Wheel Mouse Click to switch tabs from anywhere in the program.
; ---------------------------------------------------- ;
; TabsOnWheels ;
; ---------------------------------------------------- ;
; Switch browser (or other program's) tabs with your mouse wheel when hovering over the tab bar (and optionally address bar).
; Press Middle/Wheel Mouse Click to switch tabs from anywhere in the program.
; If the target window is inactive when starting to scroll, it will be activated.
;
; Install https://www.autohotkey.com/ (Windows only) to run.
; To auto-start, copy the script or a shortcut to your
; Start Menu\Programs\Startup directory
@Chematronix
Chematronix / Disable_Youtube_Autoplay.user.js
Last active January 9, 2021 18:48 — forked from Yonezpt/YT RMV-AP-UN.user.js
Removes the autoplay up next feature
// ==UserScript==
// @version 02--2017.09.12
// @name Disable autoplay next in Youtube
// @description Turns off autoplay next video in Youtube after a few (WAIT_SECS) seconds when you first (re)load a page. You can toggle it back on anytime, if you want to go jukebox mode, and it will stay on as long as you don't reload the page.
// @match *://www.youtube.com/*
// @run-at document-idle
// @noframes
// ==/UserScript==
(function () {
'use strict';