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 | |
# Source: https://github.com/c0decracker/video-splitter | |
import csv | |
import subprocess | |
import math | |
import json | |
import os | |
import shlex | |
from optparse import OptionParser |
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
# Chess bot | |
# Caution: This code is not optimized hence takes tremendous amount of time to run | |
# If you are looking for an open source chess engine, try stockfish or sunfish | |
# Code originally written by AnthonyASanchez | |
# Modified by Rutuparn Pawar (InputBlackBoxOutput) to implement parallel processing | |
import chess | |
import sys | |
import random |
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
// FizzBuzz using Arduino | |
// Author: @InputBlackBoxOutput | |
// Written on 20 Oct 2020 | |
// No additional components & connections required. | |
// Just connect your Arduino to your PC | |
#define BAUDRATE 9600 | |
#define LOOP_DELAY 700 |
NewerOlder