-i - ignore errors
-c - continue
-t - use video title as file name
--extract-audio - extract audio track
| Basic loading. | |
| To be done on ServerInit. This means things will load multiple times on the client. | |
| Benifits: | |
| Allows us to just nuke the custom recipes every server init | |
| Allows us to have save leve overrides. | |
| Primes us for syncing recipe types/contents S->C {Not gunna happen in 1.12, but I expect Mojang to work twards this in 1.13+} | |
| Cons: | |
| Increases single player server load time. No known stats at the moment but shouldn't be TO bad | |
| Loading Process: |
| import re | |
| def tracking_link_html(tracking_number): | |
| regex_handlers = [ | |
| (r'\b(1Z ?[0-9A-Z]{3} ?[0-9A-Z]{3} ?[0-9A-Z]{2} ?[0-9A-Z]{4} ?[0-9A-Z]{3} ?[0-9A-Z]|[\dT]\d\d\d ?\d\d\d\d ?\d\d\d)\b', ups_link), | |
| (r'(\b96\d{20}\b)|(\b\d{15}\b)|(\b\d{12}\b)', fedex_link), | |
| (r'\b((98\d\d\d\d\d?\d\d\d\d|98\d\d) ?\d\d\d\d ?\d\d\d\d( ?\d\d\d)?)\b', fedex_link), | |
| (r'^[0-9]{12}$', fedex_link), | |
| (r'^[0-9]{10}$', dhl_link) |
Using yt-dlp (thank you @ayyucedemirbas!)
You must have a Vimeo account, do not sign in via Google or anything else, yt-dlp asks for your email address and password to log in.
You must install the yt-dlp via the command below (for MacOS):
| // ==UserScript== | |
| // @name el ebin bitchute downloader (cemerson update) | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description no homo | |
| // @author jeff@i2p.rocks (cemerson 20190516 update) | |
| // @match https://www.bitchute.com/video/* | |
| // @grant none | |
| // ==/UserScript== |
| package net.lmvdz.delirium.model; | |
| import net.minecraft.client.model.Model; | |
| import net.minecraft.client.model.ModelPart; | |
| import net.minecraft.client.render.RenderLayer; | |
| import net.minecraft.client.render.VertexConsumer; | |
| import net.minecraft.client.util.math.MatrixStack; | |
| import net.minecraft.util.Identifier; | |
| import java.util.function.Function; |
See https://github.com/comp500/fabric-serverside-mods for the latest mod list!
| #!/usr/bin/env bash | |
| set -e | |
| # Resigns an iOS app with a given provisioning profile, distribution certificate, and, optionally, a new bundle identifier. | |
| # This script expects to be invoked with at least three arguments. | |
| # $1 is expected to be the path of the .ipa to be resigned | |
| # $2 is expected to be the path of the .mobileprovision to resign $1 with | |
| # $3 is expected to be the name of the distribution certificate in the Keychain to resign $1 with | |
| # $4 is optional. If included, this will be the new bundle identifier of the resigned app. If not included, the original bundle identifier will be used. |
| __all__ = ["get_st_async", "get_st"] | |
| """ | |
| # Async: | |
| download_link = await get_st_async('https://streamtape.com/v/b89re9b8er94b8/Demo_Video_1.mp4') | |
| # Sync: | |
| download_link = get_st('https://streamtape.com/v/b89re9b8er94b8/Demo_Video_1.mp4') | |
| """ | |
| import asyncio |