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/python3 | |
from termcolor import colored | |
import os | |
import random | |
import sys | |
import time | |
def black_or_white(cell): | |
if cell > 0: |
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
#!/usr/bin/env python | |
import argparse | |
from ftplib import FTP | |
host = 'HOSTNAME' | |
user = 'USERNAME' | |
passwd = 'PASSWORD' | |
parser = argparse.ArgumentParser( | |
description='Put a file to the FTP server.') |
NewerOlder