I hereby claim:
- I am frytoli on github.
- I am frytoli (https://keybase.io/frytoli) on keybase.
- I have a public key whose fingerprint is 5CB7 87AF DB52 7109 08C4 6AEE 0436 1037 07B0 9A33
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python3 | |
''' | |
Download all videos in a playlist from YouTube, record metadata in a CSV file, and split all videos into frame images. | |
''' | |
from pytube import Playlist | |
import random | |
import time | |
import csv |
#!/usr/bin/env python | |
import pymysql.cursors | |
import datetime | |
import decimal | |
import json | |
import os | |
class mysql_explorer(): | |
def __init__(self, user, password, host='127.0.0.1'): |
#!/usr/bin/env python | |
''' | |
Requirements: | |
google-api-python-client==1.12.8 (https://github.com/google/earthengine-api/issues/160) | |
earthengine-api==0.1.255 | |
requests | |
''' | |
import requests |
/* | |
Quick Java class to compare files within the same directory. | |
* Public method "compare" takes in a String path to a directory and String path to an output csv file (i.e. obj.compare(String "./files", String "out.csv");) | |
* Files (excluding . files) are retrieved from the given directory, evaluated/compared in parallel, and the results are written to a csv file | |
* Results for each file include: file name, file MIME type, sha256 checksum of file, and similarity comparison (between 0.0 and 1.0) to all other files in the directory | |
* CSV header rows include: file_name, mime_type, sha256_checksum, and names of all files in the directory... | |
One Warning: When testing comparing original text files to copies created via Mac's Finder application (i.e. right click, duplicate) and edited slightly (at the end of the | |
file) in a text editor, the copied file was observed to be missing the very first byte. This means that every byte at index i in the copied file is equal to | |
https://neo4j.com/docs/getting-started/current/cypher-intro/
CREATE (olivia:Person { name:"Olivia", age:26 })
CREATE (arlo:Dog { name:"Arlo", age:4 } )
CREATE (carly:Person {name:"Carly", age:27 } )
CREATE (leroy:Dog { name:"Leroy", age:3 })
CREATE (madeline:Person { name:"Madeline", age:24 })
#!/usr/bin/env python3 | |
from selenium.webdriver.firefox.options import Options | |
from pyvirtualdisplay import Display | |
from configparser import ConfigParser | |
from stem.control import Controller | |
from selenium import webdriver | |
from datetime import datetime | |
from bs4 import BeautifulSoup | |
from stem import Signal |