Skip to content

Instantly share code, notes, and snippets.

View in28minutes's full-sized avatar
💭
I may be slow to respond.

in28minutes

💭
I may be slow to respond.
View GitHub Profile
@in28minutes
in28minutes / gist:b6d9e5737bf0a3c657188e36287eb6b7
Last active June 11, 2022 08:54 — 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.

@in28minutes
in28minutes / Quick Tips
Created July 11, 2017 04:31
Quick Tips on making use of all the videos created by in28minutes
# Understanding the Trends & What to learn next
# Good to Great Programmer
# Take Your Next Step to Senior Developer or Architect
# Jargon & Frameworks
# Tips
package com.junit.quick.start;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.fail;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;