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
#!/usr/bin/env python3 | |
""" Word Animation with Python """ | |
import sys | |
import time | |
import subprocess | |
string = sys.argv[1] | |
string_copy = "" |
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
<div align="center" class="sol"> | |
<div class="tit-pl"> | |
<h3><a class="tit-h3" href="#">The Solar Scroller</a></h3> | |
<p>Planet Diameter 1 pixel = 1.000 km</p> | |
<p>Planet Distance to Sun : 1 pixel = 10.000 km</p> | |
<div class="planet" id="sun"></div> | |
</div> | |
<!-- Planets --> | |
<div class="planet" id="mercury" title="Mercury | 57.91 Million Km"></div> |
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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <ctype.h> | |
#include <windows.h> | |
#define DELAY 30 | |
void showTitleScreen(); | |
void showMenuScreen(int high, int current, int low); | |
void gamePlayScreen(int *high, int *low); |
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
#!/usr/bin/env python | |
import os | |
import numpy as np | |
import cv2 | |
import matplotlib.pyplot as plt | |
def canny_detector(image, weak=None, strong=None): |
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
# _____ _ _____ _ _ | |
# | _ |_ _| |_ ___| | |_|___ | |
# | | | | _| . | --| | | . | | |
# |__|__|___|_| |___|_____|_|_| _| | |
# |_| | |
# | |
# By Abhishta (github.com/abhishtagatya) | |
# pip install gTTs | |
# pip install moviepy |
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 | |
import logging | |
from telegram import __version__ as TG_VER | |
from jam import Jam | |
from jam.personnel import AutoPersonnel | |
from jam.persistence import SQLitePersistence | |
try: | |
from telegram import __version_info__ |