Skip to content

Instantly share code, notes, and snippets.

View ParthBarot-BoTreeConsulting's full-sized avatar

Parth Barot ParthBarot-BoTreeConsulting

View GitHub Profile
@ParthBarot-BoTreeConsulting
ParthBarot-BoTreeConsulting / ruby_python_golang.md
Last active August 31, 2017 12:06
Ruby Vs Python Vs Golang

Ruby version

#Recursive version which we will write mostly!
def fibonacciVal(n)
  if n == 0
    return 0
  elsif n == 1
    return 1
  else
@ParthBarot-BoTreeConsulting
ParthBarot-BoTreeConsulting / 1.first_framework_code.py
Last active September 25, 2017 07:49
Python client for CryptoCompare
class Client:
def coin_list(self):
return False
def coin_snapshot_full_by_id(self, coin_id):
return False
def coin_snapshot(self, fsym, tsym):
return False