Skip to content

Instantly share code, notes, and snippets.

View theblackwidower's full-sized avatar
💭
Back from the dead

T "Scarlet" Duke Perry theblackwidower

💭
Back from the dead
View GitHub Profile
@theblackwidower
theblackwidower / PTT-Toggle.ahk
Created April 25, 2020 11:29
AHK PTT Toggle for Discord
/*
********************************************************************************
* PTT Toggle - Used to convert push-to-talk functions into a toggle.
* Copyright (C) 2020 T Duke Perry
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
@theblackwidower
theblackwidower / androidBuild.sh
Last active May 26, 2021 13:07
A quick and easy Linux build script for Android applications
#!/bin/bash
#https://developer.android.com/studio/#command-tools
wget https://dl.google.com/android/repository/commandlinetools-linux-7302050_latest.zip -O sdk-tools-linux.zip
unzip sdk-tools-linux.zip -d android-sdk/
rm -f sdk-tools-linux.zip
echo 'sdk.dir=android-sdk/' > local.properties
mkdir ~/.android/
touch ~/.android/repositories.cfg
@theblackwidower
theblackwidower / strings.xml
Last active May 24, 2020 16:34
Translator Template for KanaQuiz
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">The Kana Quiz</string>
<string name="selection_title">Question Selection</string>
<string name="reference_title">Quick Reference</string>
<string name="options_title">Options</string>
<string name="about_title">About</string>
<string name="score_label">Score</string>
<string name="answer_hint_touch">Answer Here, Then Tap &#8216;Go&#8217;</string>
<string name="answer_hint_hardware">Answer Here, Then Press &#8216;Enter&#8217;</string>