Skip to content

Instantly share code, notes, and snippets.

@caulinez
caulinez / ArbBot.java
Created May 31, 2018 05:17
Gemini Sample Connection in Java using Closeable HTTP
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.dotcomculture.arbbot;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.client.methods.HttpPost;
@caulinez
caulinez / Coinut.py
Last active May 27, 2018 06:31
Coinut_Connection
import hmac
import hashlib
import json
import uuid
import random
import time
import requests
import logging
def get_logger():
@caulinez
caulinez / Gemini_Connection
Last active May 27, 2018 06:32
For Python 3.X
import requests
import base64
import hmac
import hashlib
from hashlib import sha384
from io import BytesIO
import time
import json
def connect():