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
# | |
# Bhautik Joshi [email protected] 2019 | |
# render to fullscreen quad with modernGL | |
# passes vertex position via vert_pos from the vertex | |
# shader to the fragment_shader; is normalized to [0,1] | |
# with (0,0) in the bottom-left corner | |
# | |
import moderngl | |
import numpy as np |
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
# | |
# Written for python | |
# pip install tweepy pillow | |
# | |
import tweepy | |
from PIL import Image, ImageFilter | |
import glob, os, sys, time | |
SLEEPTIME = 3 #in seconds |
OlderNewer