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 youtube_dl | |
def extract_url(yt_url): | |
ydl = youtube_dl.YoutubeDL({'outtmpl': '%(id)s%(ext)s', 'quiet':True,}) | |
video = "" | |
with ydl: | |
result = ydl.extract_info \ | |
(yt_url, | |
download=False) #We just want to extract the info |
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
#!/bin/sh | |
brew install rbenv/tap/[email protected] | |
brew install [email protected] | |
OPENSSL_1_0_DIR=$(brew --prefix rbenv/tap/[email protected]) | |
alias bison="/usr/local/opt/[email protected]/bin/bison" | |
export CPPFLAGS=-I${OPENSSL_1_0_DIR}/include | |
export LDFLAGS=-L${OPENSSL_1_0_DIR}/lib |
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
FROM azul/zulu-openjdk:8u222 | |
# Default payara ports to expose | |
# 4848: admin console | |
# 9009: debug port (JPDA) | |
# 8080: http | |
# 8181: https | |
EXPOSE 4848 9009 8080 8181 | |
# Payara version (5.183+) |
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
while true ; do /usr/local/bin/nc -l -p 5000 -e 'echo -e "HTTP/1.1 200 OK\n\n $(cat /var/tmp/example.txt)"' ; done |
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
$ brew install [email protected] | |
$ bundle config build.libv8 --with-system-v8 | |
$ bundle config build.therubyracer --with-v8-dir=$(brew --prefix [email protected]) | |
$ bundle install |
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
pg_upgrade -b /usr/local/Cellar/postgresql@10/10.6_1/bin -B /usr/local/Cellar/postgresql/11.1_1/bin -d /usr/local/var/postgres.0/ -D /usr/local/var/postgres |
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
brew install mysql | |
brew unlink mysql | |
brew install mysql-connector-c | |
sed -i -e 's/libs="$libs -l "/libs="$libs -lmysqlclient -lssl -lcrypto"/g' /usr/local/bin/mysql_config | |
pip install MySQL-python | |
brew unlink mysql-connector-c | |
brew link --overwrite mysql |
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
set nocp | |
set nocompatible | |
set nu | |
syntax enable | |
set autoindent | |
set expandtab | |
set tabstop=4 | |
set shiftwidth=4 | |
set list | |
set list listchars= |
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 | |
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "my_project.settings") | |
import django | |
django.setup() |
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
CFLAGS="-I/usr/local/opt/openssl/include" LDFLAGS="-L/usr/local/opt/openssl/lib" UWSGI_PROFILE_OVERRIDE=ssl=true pip install mysqlclient |
NewerOlder