This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:a34308ed70bc1b881c453f2a15f6a8e5140e963b]
| // ==UserScript== | |
| // @name Wordfrick | |
| // @namespace https://www.chosenfewsoftware.com | |
| // @version 1.0 | |
| // @description Screw up any text on any webpage with the click of your mouse | |
| // @author Yodadude2003 | |
| // @match *://*/* | |
| // @grant none | |
| // @require https://code.jquery.com/jquery-3.4.1.min.js | |
| // ==/UserScript== |
This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:a34308ed70bc1b881c453f2a15f6a8e5140e963b]
| @echo off | |
| setlocal ENABLEEXTENSIONS | |
| set KEY_NAME=HKLM\SOFTWARE\Android Studio | |
| set VALUE_NAME=Path | |
| set STUDIO_PATH= | |
| FOR /F "tokens=2*" %%A IN ('REG.exe query "%KEY_NAME%" /v "%VALUE_NAME%"') DO (set STUDIO_PATH=%%B) | |
| if "%STUDIO_PATH%" == "" ( | |
| echo Android Studio not installed, please download Android Studio 3.5.3 from https://developer.android.com/studio |
| // Patched version for modern platforms by Ian Santin. See line 466 for details. | |
| // This code is NOT MINE. All rights are reserved by the original XBAND team at Catapult Entertainment. | |
| /* | |
| * Convert a NewsPages file to its eventual binary representation. | |
| * | |
| * The individual news pages are deposited in separate files, since that's | |
| * how they'll be compressed. | |
| */ | |
| #include <stdio.h> |
| using FFMediaToolkit.Audio; | |
| using FFMediaToolkit.Decoding; | |
| using FFMediaToolkit.Encoding; | |
| using FFMediaToolkit.Graphics; | |
| // File paths, grab from anywhere like command-line args, config file, etc. | |
| string inputVideoFilePath = "video-mute.m4v"; | |
| string inputAudioFilePath = "audio.mp3"; | |
| string outputMediaFilePath = "video-dubbed.mp4"; |
Often, the scope of a project in source form grows as it develops as an idea. As a response, larger projects are often refactored into smaller submodules, some of which may be reused across other codebases as time goes on. To support this use-case, the author has developed a procedure to convert subdirectories of a given codebase directly into submodules, while also preserving all change history for those files. The procedure is outlined in the sections that follow.
Before making any of the destructive changes, described next, one must create a clean clone of the source repository. This repository is the one that contains the subdirectory that you want to isolate into a submodule:
# $source_repo_url is the URL of the source Git repository
git clone $source_repo_url