This file contains 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
const Discord = require("discord.js"); | |
const fs = require('fs'); | |
const client = new Discord.Client(); | |
const config = require('./auth.json'); | |
// make a new stream for each time someone starts to talk | |
function generateOutputFile(channel, member) { | |
// use IDs instead of username cause some people have stupid emojis in their name |
This file contains 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
.autogit |
This file contains 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
import os, sys, tqdm, requests | |
URL = "https://file-examples.com/wp-content/uploads/2017/11/file_example_MP3_700KB.mp3" | |
r = requests.get(URL, stream=True) | |
# tqdm Progress Bar Magic | |
total_size = int(r.headers.get('content-length',0)) | |
block_size = 1024 | |
t=tqdm(total=total_size, unit='iB', unit_scale=True) |
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
(in this case we download ubuntu 16.04)
This file contains 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
Hello |
This file contains 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
@echo off | |
title Activate Microsoft Office 2016 ALL versions for FREE!&cls&echo ============================================================================&echo #Project: Activating Microsoft software products for FREE without software&echo ============================================================================&echo.&echo #Supported products:&echo - Microsoft Office Standard 2016&echo - Microsoft Office Professional Plus 2016&echo.&echo.&(if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")&(if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")&(for /f %%x in ('dir /b ..\root\Licenses16\proplusvl_kms*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)&(for /f %%x in ('dir /b ..\root\Licenses16\proplusvl_mak*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)&echo.&echo ============================================================================&ech |
This file contains 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
pkg upgrade -y | |
pkg install git -y | |
pkg install python -y | |
pip install cython | |
pkg install libxml2 libxslt -y | |
pkg install -y python ndk-sysroot clang make libjpeg-turbo -y | |
pkg install clang -y | |
pip install lxml | |
pip install --pre uiautomator2 |
This file contains 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
import uiautomator2 as u2 | |
def main(): | |
u = u2.connect('0.0.0.0') | |
print(u.info) | |
u.app_start('com.android.chrome') | |
if __name__ == '__main__': | |
main() |
This file contains 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
Here is a list of Blynk Servers that you can use for testing | |
## ---------- Server Details ----------- | |
Blynk Server : blynkserver.learngence.org | |
Forum : openiot.learngence.org | |
Port (App) : 9443 | |
Port (nodeMCU) : 8080 | |
Status : Alive | |
Energy : 1000000 | |
Email : al****[email protected] |
OlderNewer