Skip to content

Instantly share code, notes, and snippets.

View davidfrechette's full-sized avatar

David Frechette davidfrechette

View GitHub Profile
# IMPORTS
import pandas as pd
import math
import os.path
import time
from bitmex import bitmex
from binance.client import Client
from datetime import timedelta, datetime
from dateutil import parser
from tqdm import tqdm_notebook #(Optional, used for progress-bars)
@riandyrn
riandyrn / INSTALL_TSUNG_1.7.0_UBUNTU_16.04_AWS.md
Last active May 8, 2020 15:07
[Install Tsung 1.7.0 on Ubuntu 16.04 - AWS]

Install Tsung 1.7.0

> sudo apt-get update
> sudo apt-get install erlang -y
> sudo apt-get install make -y
> sudo apt-get install gcc erlang-dev erlang-eunit -y
> wget http://tsung.erlang-projects.org/dist/tsung-1.7.0.tar.gz
> tar -xvzf tsung-1.7.0.tar.gz
> cd tsung-1.7.0
@ewancook
ewancook / arb.go
Last active June 10, 2019 19:00
triangular arbitrage profitability calculator (poloniex)
package main
import (
"encoding/json"
"flag"
"fmt"
"math"
"net/http"
"strconv"
"time"
@noelboss
noelboss / git-deployment.md
Last active June 12, 2024 00:28
Simple automated GIT Deployment using Hooks

Simple automated GIT Deployment using GIT Hooks

Here are the simple steps needed to create a deployment from your local GIT repository to a server based on this in-depth tutorial.

How it works

You are developing in a working-copy on your local machine, lets say on the master branch. Most of the time, people would push code to a remote server like github.com or gitlab.com and pull or export it to a production server. Or you use a service like deepl.io to act upon a Web-Hook that's triggered that service.