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
public static class Phoneword | |
{ | |
/// <summary> | |
/// Translates a phonenumber that might contain phoneword letters to the corresponding number | |
/// NOTE: Expects a valid phone number | |
/// </summary> | |
/// <param name="c">The character to translate to the corresponding number</param> | |
/// <returns>String with the translated phonenumber</returns> | |
public static string Translate(string rawPhoneNumber) | |
{ |
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
/* | |
* DESCRIPTION | |
* This script will go through all the subscription buttons on the YouTube page you execute it on, and subscribes to the ones that | |
* you're not subscribed to yet. | |
* A random delay is added to each subscription request, this is due to the fact that YouTube starts blocking subscriptions after | |
* a certain number of consecutive requests. Randomising the delays should trick the detection into thinking it's a valid user doing | |
* the requests. | |
* | |
* HOW TO USE | |
* Navigate to the page containing the channels you would like to subscribe to. (The subscribe button should be visible!) |
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
# | |
# This script copies the children of a given directory to the specified destination directory | |
# | |
# Created by FUNExtreme (Robin Maenhaut <[email protected]>) | |
# Script Parameters | |
Param( | |
[string]$srcDir, # The directory to copy the children from | |
[string]$destDir, # The directory to recreate the folder and file structure to |
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
public class GlobalVersionedPrefixProvider : DefaultDirectRouteProvider | |
{ | |
/// <summary> | |
/// Global prefix, usually "api" to be prepended to the full versioned prefix | |
/// </summary> | |
private readonly string _prefix; | |
public GlobalVersionedPrefixProvider(string prefix) | |
{ | |
_prefix = prefix; |