Skip to content

Instantly share code, notes, and snippets.

View GiorgioNatili's full-sized avatar

Giorgio Natili GiorgioNatili

View GitHub Profile
@GiorgioNatili
GiorgioNatili / gist:a0b09801ab5763f807848e5beb142c76
Last active December 17, 2016 00:03 — forked from dodyg/gist:5823184
Kotlin Programming Language Cheat Sheet Part 1

#Intro

Kotlin is a new programming language for the JVM. It produces Java bytecode, supports Android and generates JavaScript. The latest version of the language is Kotlin M5.3

Kotlin project website is at kotlin.jetbrains.org.

All the codes here can be copied and run on Kotlin online editor.

Let's get started.

@GiorgioNatili
GiorgioNatili / .gitconfig
Last active August 29, 2015 14:20 — forked from pksunkara/config
[user]
name = Pavan Kumar Sunkara
email = pavan.sss1991@gmail.com
[core]
editor = vim
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
excludesfile = ~/.gitignore
[sendemail]
smtpencryption = tls
smtpserver = smtp.gmail.com
@GiorgioNatili
GiorgioNatili / bst.js
Last active August 29, 2015 14:17 — forked from trevmex/bst.js
/*
* File: bst.js
*
* A pure JavaScript implementation of a binary search tree.
*
*/
/*
* Class: BST
*