Skip to content

Instantly share code, notes, and snippets.

View minsik-ai's full-sized avatar
๐Ÿ 
Working from home

Minsik minsik-ai

๐Ÿ 
Working from home
View GitHub Profile
@minsik-ai
minsik-ai / The Technical Interview Cheat Sheet.md
Last active May 24, 2017 18:25 — forked from tsiege/The Technical Interview Cheat Sheet.md
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

Studying for a Tech Interview Sucks, so Here's a Cheat Sheet to Help

This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.

Data Structure Basics

Array

Definition:

  • Stores data elements based on an sequential, most commonly 0 based, index.
  • Based on tuples from set theory.
@minsik-ai
minsik-ai / Jetbrains IDE Essential Shortcuts.md
Last active February 18, 2021 04:50
Essential Shortcuts for Jetbrains IDEs, including IntelliJ IDEA, Android Studio & others.

Jetbrains IDE Essential Shortcuts

This is a list of Jetbrains IDE shortcuts I use everyday.

Comments welcome! Tell me your favorites.

Navigating Between Windows

Change Focus to Window

@minsik-ai
minsik-ai / programming-in-scala-class&objects.md
Created December 20, 2016 16:19
Programming in Scala์˜ ํ•œ๊ธ€ ์š”์•ฝ Chapter4. https://github.com/trent-92/Programming-in-Scala

Programming in Scala

Chapter 4

ํด๋ž˜์Šค ๋ฐ ๋ฉค๋ฒ„

**ํด๋ž˜์Šค(Class)**๋Š” ๋‹ค์Œ๊ณผ ๊ฐ™์ด ์ƒ์„ฑํ•  ์ˆ˜ ์žˆ๋‹ค.

class ChecksumAccumulator {
@minsik-ai
minsik-ai / programming-in-scala-secondsteps.md
Created December 11, 2016 16:16
Programming in Scala์˜ ํ•œ๊ธ€ ์š”์•ฝ Chapter3. https://github.com/trent-92/Programming-in-Scala

Programming in Scala

Chapter 3

๋ฐฐ์—ด ์ดˆ๊ธฐํ™”

๊ฐ์ฒด๋ฅผ ์ธ์Šคํ„ด์Šคํ™”(์ƒ์„ฑ)ํ• ๋•Œ, ๊ฐ’๊ณผ ํƒ€์ž…์„ ํŒŒ๋ผ๋ฏธํ„ฐ๋กœ ๋„˜๊ธธ ์ˆ˜ ์žˆ๋‹ค. ์ด๋ฅผ ์ธ์Šคํ„ด์Šค๋ฅผ **ํŒŒ๋ผ๋ฏธํ„ฐํ™”(parameterization)**ํ•œ๋‹ค๊ณ  ํ•œ๋‹ค. ๋‹ค์Œ ์ฝ”๋“œ๋Š” "12345"๋ผ๋Š” ๊ฐ’์œผ๋กœ ์ƒˆ๋กœ์šด java.math.BigInteger ์ธ์Šคํ„ด์Šค๋ฅผ ํŒŒ๋ผ๋ฏธํ„ฐํ™” ํ•œ ๊ฒƒ์ด๋‹ค.

val big = new java.math.BigInteger("12345")
@minsik-ai
minsik-ai / programming-in-scala-intro.md
Created December 11, 2016 03:32
Programming in Scala์˜ ํ•œ๊ธ€ ์š”์•ฝ ~Chapter2. https://github.com/trent-92/Programming-in-Scala

Programming in Scala

Chapter 1

์™œ ์Šค์นผ๋ผ์ธ๊ฐ€?

  • ํ˜ธํ™˜์„ฑ
  • ๊ฐ„๊ฒฐ์„ฑ
  • ๊ณ ์ˆ˜์ค€ ์ถ”์ƒํ™”
  • ๊ณ ๊ธ‰ ์ •์  ํƒ€์ดํ•‘
@minsik-ai
minsik-ai / README.md
Created November 22, 2016 06:39 — forked from hofmannsven/README.md
My simply Git Cheatsheet