Skip to content

Instantly share code, notes, and snippets.

View ivopetiz's full-sized avatar
:shipit:

Ivo Petiz ivopetiz

:shipit:
View GitHub Profile
@ivopetiz
ivopetiz / data2csv.go
Created June 9, 2018 22:43
Saves data from Bittrex markets to csv.
package main
import (
"os"
//"fmt"
"log"
"time"
"strings"
"strconv"
@ivopetiz
ivopetiz / .bashrc
Created May 5, 2018 09:04
My bashrc
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
@ivopetiz
ivopetiz / tictactoe.py
Last active May 5, 2018 09:05
Tictactoe game written in Python
import random
import time
win_combos = [[1,2,3],
[4,5,6],
[7,8,9],
[1,5,9],
[3,5,7],
[1,4,7],
[2,5,8],