Skip to content

Instantly share code, notes, and snippets.

View AwwCookies's full-sized avatar
🏠
Working from home

AwwCookies AwwCookies

🏠
Working from home
View GitHub Profile
@anderZubi
anderZubi / transmission_install.sh
Last active September 9, 2024 07:36
Script to install Transmission BitTorrent client in WD MyCloud NAS
#!/bin/bash
echo Backing up your sources.list...
cp /etc/apt/sources.list /etc/apt/sources.list.bak
echo Adding the sid repo to sources.list...
echo deb http://ftp.us.debian.org/debian/ sid main >> /etc/apt/sources.list
echo Updating the sid packages list...
apt-get update
@AwwCookies
AwwCookies / reap.pl
Last active December 21, 2015 05:08
Download all files on a website perl script
#!/usr/bin/perl -w
use strict;
use Getopt::Std;
use HTML::Entities;
my @download_files = ();
my $error_log = '';
my %opts;
my @extensions;
@LifeIsPain
LifeIsPain / whybanned.pl
Last active December 18, 2015 15:29
XChat script to determine and list why a user is unable to join or speak on a channel
# Name: whybanned.pl
# Version: 004
# Author: LifeIsPain < idontlikespam (at) orvp [dot] net >
# Date: 2013-07-12
# Description: Determine and list why a user is unable to join or speak on a channel
# License: zlib (text at end of file)
# Version History
# 001 2013-06-18 Initial Code
# 002 2013-06-18 Fix issue where only worked if in channel (increased priority)