VERALTET, BITTE HIER GUCKEN: https://github.com/bundesAPI/tagesschau-api
API-URL: https://www.tagesschau.de/api2
#!/bin/bash | |
# | |
# Dieses Skript sichert die Namen der installierten Pakete (auch die aus dem AUR) in einer Liste, die Pacman.conf und die mirrorlist, damit du | |
# alle nach einer Neuinstallation einfach wiederherstellen kannst! | |
# | |
# Du benötigst: | |
# Pacman-Paketverwaltung | |
# libnotify | |
# tar | |
# angepasste Variablen für externe Festplatte. |
#!/bin/bash | |
# adds arch repo to pacman.conf | |
# released under the GPLv3 | |
# root check begin | |
try_sudo=1 | |
if [[ $1 = --no-sudo ]] | |
then | |
try_sudo=0 | |
shift |
SEK Sweden kronor | |
ATS Austria shilling | |
AUD Australian dollar | |
BEF Belgien franc | |
BRL Brazilien real | |
CAD Canada dollar | |
CHF Switzerland francs | |
CNY China yuan renminbi | |
CYP Cyprus pound | |
CZK Czech Republic koruna |
-- Put this in the same folder as the Brawlbot v2 and run it. It will only be a dry run and show everything that'll be migrated. | |
-- There NEEDN'T be any new data (with a -) in redis! This is IMPORTANT! | |
-- Run this on your NEW Redis Server that your bot will use obvisouly | |
local config = require('config') | |
local redis = (loadfile './otouto/redis.lua')() | |
-- local redis = (loadfile './miku/redis.lua')() -- Uncomment for Mikubot v2 | |
local dry_run = true -- change to false for the real deal | |
if dry_run then |
API-URL: https://www.tagesschau.de/api2
<targets selectable="true"></targets> |
# Byte-compiled / optimized / DLL files / pip | |
__pycache__/ | |
*.py[cod] | |
*$py.class | |
src/ | |
# IDE | |
.idea/ | |
*.txt |
// ==UserScript== | |
// @name EmuParadise Download Workaround | |
// @version 1.1.2.1 | |
// @description Replaces the download button link with a working one. Now without jQuery! | |
// @author Eptun, Brawl | |
// @match https://www.emuparadise.me/*/*/* | |
// @downloadURL https://gist.github.com/Brawl345/96103746f8ef5cce17b0bc38f3e104f1/raw/emuparadise-download-workaround.user.js | |
// @updateURL https://gist.github.com/Brawl345/96103746f8ef5cce17b0bc38f3e104f1/raw/emuparadise-download-workaround.user.js | |
// @supportURL https://gist.github.com/Brawl345/96103746f8ef5cce17b0bc38f3e104f1#comments | |
// @grant none |
// Thanks to https://phiilu.medium.com/password-protect-your-vercel-site-with-cloudflare-workers-a0070357a005 | |
// See: https://brawl.vivaldi.net/?p=208 | |
const CREDENTIALS_REGEXP = /^ *[Bb][Aa][Ss][Ii][Cc] +([\w+./~-]+=*) *$/; | |
const USER_PASS_REGEXP = /^([^:]*):(.*)$/; | |
class Credentials { | |
constructor(name, pass) { | |
this.name = name; |