Skip to content

Instantly share code, notes, and snippets.

View timgrossmann's full-sized avatar
🌱
Evolve

Tim Großmann timgrossmann

🌱
Evolve
View GitHub Profile
@breuerfelix
breuerfelix / chromedriver-updater.py
Last active September 22, 2018 14:27
routine which updates chromedriver-py package on its own
# constants
CHROME_DL_URL = 'https://chromedriver.storage.googleapis.com'
CHROME_URL = 'http://chromedriver.chromium.org/downloads'
REPO_PATH = './GitHub/chromedriver-py/'
VERSION_FILE = './GitHub/chromedriver-py/version.txt'
DOWNLOAD_DIR = './'
CURRENT_VERSION = []
UPDATE_SCRIPT = './update_chromedriver.sh'
# chromedriver versions for downloading only
@Mehran
Mehran / instapy-easy.sh
Last active December 18, 2018 13:54
instapy-easy.sh
#!/bin/bash
### Author ###
# By : Mehran Goudarzi
# Update : 2018-11-12
# Description : Automation Installer (Ubuntu 18.0 & Ubuntu 16.0)
# Version : 1.2
###############
echo -e "[*] General dependencies..."
apt-get update
apt-get -y upgrade
@markwhitaker
markwhitaker / MimeTypes.java
Last active August 17, 2021 10:21
Standard MIME type constants ready to use in a Java project. Now a library: see https://github.com/markwhitaker/MimeTypes.Java
public final class MimeTypes
{
public static final class Application
{
public static final String ATOM_XML = "application/atom+xml";
public static final String ATOMCAT_XML = "application/atomcat+xml";
public static final String ECMASCRIPT = "application/ecmascript";
public static final String JAVA_ARCHIVE = "application/java-archive";
public static final String JAVASCRIPT = "application/javascript";
public static final String JSON = "application/json";
@joyrexus
joyrexus / README.md
Last active February 24, 2024 15:16
collapsible markdown

collapsible markdown?

CLICK ME

yes, even hidden code blocks!

print("hello world!")