Skip to content

Instantly share code, notes, and snippets.

View AniruddhaHumane's full-sized avatar
:electron:
Curious

Aniruddha Humane AniruddhaHumane

:electron:
Curious
View GitHub Profile
@AniruddhaHumane
AniruddhaHumane / cpx.sh
Last active October 4, 2023 06:36
CPX - Advanced linux cp command with progress and time!
#!/bin/bash
# cpx command is extremely useful in copying thousands of files and track the progress
# just do cpx source destination and you are good to go!
# Convert seconds to DD:HH:MM:SS format
convert_to_human_readable() {
local total_seconds=$1
local days=$((total_seconds/86400))
@AniruddhaHumane
AniruddhaHumane / NetflixAutoSkipper.js
Last active June 11, 2023 08:37
AutoSkip Intros and outros on Netflix
// You can copy and paste this in the console window of netflix to automatically skip intros and outros :)
function clickButton(dataUia) {
const button = document.querySelector(`[data-uia="${dataUia}"]`);
if (button) {
button.click();
}
}
function checkForButtons() {