Skip to content

Instantly share code, notes, and snippets.

@dollabi11z
dollabi11z / NordVPN-Server-IP-List.txt
Created February 5, 2022 02:53 — forked from JamoCA/NordVPN-Server-IP-List.txt
NordVPN Server IP List; 2,590 IPs; 2020-02-04T15:31:55Z
103.120.66.35
103.120.66.51
103.227.255.101
103.60.9.27
103.60.9.75
103.62.49.193
103.62.49.195
103.62.49.198
103.62.49.203
103.62.49.205
# clone repos
git clone https://github.com/kiwiirc/kiwiirc.git ~/kiwiirc/kiwiirc
git clone https://github.com/kiwiirc/webircgateway.git ~/kiwiirc/webircgateway
git clone https://github.com/kiwiirc/plugin-fileuploader.git ~/kiwiirc/plugin-fileuploader
# make destination directories
mkdir -p ~/kiwiirc/run/plugins
mkdir -p ~/kiwiirc/run/www
# setup fileupload as plugin
@dollabi11z
dollabi11z / gimmeproxy.php
Created February 20, 2020 03:10 — forked from 256cats/gimmeproxy.php
gimmeproxy.com example
<?php
function getProxy() {
$data = json_decode(file_get_contents('http://gimmeproxy.com/api/getProxy'), 1);
if(isset($data['error'])) { // there are no proxies left for this user-id and timeout
echo $data['error']."\n";
}
return isset($data['error']) ? false : $data['curl']; //gimmeproxy returns 'curl' field that is CURLOPT_PROXY-ready string, see curl_setopt($curl, CURLOPT_PROXY, $proxy);
}
/**
@dollabi11z
dollabi11z / proxy-scraper.sh
Created February 16, 2020 05:08 — forked from KyxRecon/proxy-scraper.sh
Parallel Proxy Scraper & Checker Tool /
#!/bin/bash
# HR Proxy Scraper Script
# Rebuilded By Kyxrec0n
# Demo video : youtube.com/watch?v=iXCeR_XsP6o
# USAGE: ./proxy-scraper.sh <ARGUMENT> <OPTIONS>
# ARGUMENTS:
# Proxy Checker - Single Proxy Check
# -s <IP>:<PORT>
#
# Proxy Checker - List Scan:
@dollabi11z
dollabi11z / chatangobot.txt
Created August 8, 2019 04:52 — forked from Kakkoiikun/chatangobot.txt
Chatango Bot Tutorial
How to make a chatango bot --> Made by Kakkoiikun
-------------------------------------------------------
Updates:
-> Updated the ch.py link and changed 3.6.0 to 3.6.5
------------------------------------------------------------------
Preparations:
1. Download ch.py at https://pastebin.com/81msujvx
2. Install Python 3.6.5 at https://www.python.org/downloads/release/python-365/
@dollabi11z
dollabi11z / Changelog_start.php.txt
Created July 21, 2019 01:52 — forked from MaleXachi/Changelog_start.php.txt
This is Start.php for lightIRC. You can use your own domain instead of lightIRC, if people use iframes to your server for their chats. If you want to add more options, just post a comment! Please, click on star, if you like this!
How To Use:
Create folder: start
Download lightIRC: http://lightirc.com/download.html
Put all files in start folder
Put index.php in start folder
Remove index.html
Do not forgot to set ur own default settings:
@dollabi11z
dollabi11z / Javascript Snippets lightIRC.js
Created July 21, 2019 01:47 — forked from MaleXachi/Javascript Snippets lightIRC.js
Use some lightIRC javascript snippets for your own. Don't forgot to set true on loopClientCommands or loopServerCommands, depends what you use.
// #1 - Javascript snippet to let users join allowed channels only - See: http://redmine.lightirc.com/issues/647
function onClientCommand(command) {
var raw = command.split(' ');
var chanArray = ['#test', '#test1', '#test2'];
if (raw[0] == 'JOIN' && raw[1].charAt(0) == '#') {
if (chanArray.indexOf(raw[1]) < 0) {
alert('Sorry, this channel isn\'t allowed');
command = '';
}
@dollabi11z
dollabi11z / playlistVideoLinks.js
Created June 15, 2019 08:32 — forked from georgechalhoub/playlistVideoLinks.js
Retrieve the url(s) of the currently playing video of a playlist in JWPlayer 7
@dollabi11z
dollabi11z / playlistVideoLinks-min.js
Created June 15, 2019 08:32 — forked from georgechalhoub/playlistVideoLinks-min.js
Retrieve the url(s) of the currently playing video of a playlist in JWPlayer 7.
@dollabi11z
dollabi11z / .bashrc 6-8-2019
Created June 12, 2019 00:14 — forked from ageis/.bashrc 02-25-2020
@ageis's ~/.bashrc 🖥️ with numerous useful functions, aliases and one-liners. ⚠️ NOTE: many paths in sourced scripts and environment variables are specific to my system, but if you dig in I hope you'll find something you can use!
#!/bin/bash
#~/.bashrc: executed by bash(1) for non-login shells.
# kevin gallagher (@ageis) <kevingallagher@gmail.com>
export MYUID=$(id -u)
export USER="$(id -un)"
if [[ "$TILIX_ID" ]] || [[ "$VTE_VERSION" ]]; then
source /etc/profile.d/vte.sh
fi