This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
cls | |
REM Define the options | |
setlocal enabledelayedexpansion | |
set i=0 | |
for %%a in ("Display IPv4 Protocol Configuration" "Display IPv6 Protocol Configuration" "Set IPv4 and IPv6 Packet TTL to 65" "Custom IPv4 and IPv6 Packet TTL" "Reset IPv4 and IPv6 Packet TTL" "Exit") do ( | |
set /a i+=1 | |
set "option[!i!]=%%~a" | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*============================================================================= | |
ReShade 5 effect file | |
github.com/martymcmodding | |
Author: Pascal Gilcher / Marty McFly | |
ReShade Motion Estimation Shader for dense 2D UV-space motion vectors | |
Based on ReShade Motion Estimation by Jakob Wapenhensch | |
(https://github.com/JakobPCoder/ReshadeMotionEstimation) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> | |
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | |
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"/> | |
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/> | |
<uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Aternos Anti Anti-adblock | |
// @namespace r0630hh1edcuum5397kimyc0ucwy2h3psn4c6r1u4j | |
// @version 0.1.23 | |
// @description Fuck anti-adblock from the free hosting minecraft servers Aternos.org. Parry this you filthy casual! | |
// @author Angry Developer against excessive ADs | |
// @source https://gist.github.com/DvilMuck/f2b14f3f65e8f22974d781277158f82a | |
// @supportURL https://gist.github.com/DvilMuck/f2b14f3f65e8f22974d781277158f82a | |
// @updateURL https://gist.github.com/DvilMuck/f2b14f3f65e8f22974d781277158f82a/raw/aternosAntiAntiadblock.user.js | |
// @downloadURL https://gist.github.com/DvilMuck/f2b14f3f65e8f22974d781277158f82a/raw/aternosAntiAntiadblock.user.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import sys | |
import pathlib | |
from urllib.parse import urlparse | |
from warcio.archiveiterator import ArchiveIterator | |
def save(url, stream): | |
uri = urlparse(url) |
All packages, except for Tini have been added to termux-root. To install them, simply pkg install root-repo && pkg install docker
. This will install the whole docker suite, left only Tini to be compiled manually.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo OFF | |
rem How to run a Python script in a given conda environment from a batch file. | |
rem It doesn't require: | |
rem - conda to be in the PATH | |
rem - cmd.exe to be initialized with conda init | |
rem Define here the path to your conda installation | |
set CONDAPATH=C:\ProgramData\Miniconda3 | |
rem Define here the name of the environment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// | |
// Install with Tampermonkey or Greasemonkey | |
// | |
// @name Aternos Anti AdBlock Blocker | |
// @version 1.0.5 | |
// @description Blocks the anti ad block message and removes all red ad banners | |
// @author ErdbeerbaerLP | |
// @match https://aternos.org/* | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import discord | |
from discord.ext import commands | |
from discord.ext.commands.cooldowns import BucketType | |
bot = commands.Bot(command_prefix = "your prefix here") | |
token = 'token goes here' | |
#on ready login message | |
@bot.event | |
async def on_ready(): |
NewerOlder