Skip to content

Instantly share code, notes, and snippets.

View rarchk's full-sized avatar

Ronak Kogta rarchk

View GitHub Profile
@rarchk
rarchk / duckinterfaces.py
Created February 22, 2017 17:07
Python tutorial in gist
class hello():
def __len__(self):
return 0;
def __repr__(self):
return ('hello()');
def __add__(self):
return ("Addition can happen");
@rarchk
rarchk / functions.go
Last active February 22, 2017 17:06
Go Tutorial in gist
package main
import "fmt";
// Defining a sample type in go lang
type twoInt struct{
start int64;
end int8;
}
// foo funtion with inputs and return type defined in first line;
@rarchk
rarchk / GitForDropboxUsers.md
Created September 22, 2015 21:37 — forked from magicseth/GitForDropboxUsers.md
git for dropbox users: Don't be afraid!

git is awesome

We use git at Bump for all sorts of things. Recently, we've started converting our designers and product managers. You can think about git like Dropbox: it takes files on your computer, puts them in the cloud, and lets other people work on them too. But it has some pretty rocking advantages:

Collaboration

Like Dropbox, git lets multiple people work on the same files at the same time. This is great when many people are working on a document together, or a group of people are creating assets for a website. Everyone can be contributing to the same folder and files, without fear of overwriting eachother's work, something Dropbox can scew up.

Time Machine