Skip to content

Instantly share code, notes, and snippets.

View pranjaltech's full-sized avatar

Pranjal Singh pranjaltech

View GitHub Profile
@pranjaltech
pranjaltech / find_click.js
Last active March 11, 2022 07:36
[Open all links] Open links specified by a jQuery path.
// CONFIG
search_criteria = '.lista2t .lista a[onmouseover]'
blacklist = [];
startFromIndex = 0
//
i_start = startFromIndex
i_stop = $(search_criteria).length
@pranjaltech
pranjaltech / Makefile
Last active January 31, 2021 05:30 — forked from alwynallan/Makefile
Hardware PWM Controller for the Raspberry Pi 4 Case Fan
CC = gcc
RM = rm -f
CFLAGS = -Wall
LIBS = -lbcm2835
TARGET = pi_fan_hwpwm
all: $(TARGET)