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
import discord | |
import urllib.request | |
import cv2 | |
import numpy as np | |
client = discord.Client() | |
@client.event | |
async def on_ready(): | |
print('Logged in as {0.user}'.format(client)) |
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
#!/bin/sh | |
repo=$1 | |
output=$2 | |
if [ -z $1 ] || [ -z $2 ]; then | |
echo | |
echo Usage: debmirror [repo url] [output] | |
echo + Example usage: "'debmirror https://repo.packix.com ~/packix'" | |
echo |