Skip to content

Instantly share code, notes, and snippets.

View ohahohah's full-sized avatar
🐢
slow slow quick quick slow

SiyoungOh ohahohah

🐢
slow slow quick quick slow
View GitHub Profile

FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.


Effective Engineer - Notes

What's an Effective Engineer?

@perhapsspy
perhapsspy / django-test-easy-and-fast.md
Last active May 20, 2022 05:06
Django에서 Test 쉽고 빠르게 하기

쉽게 이해하면 좋을 스프링 프레임워크


'스프링 프레임워크Spring Framework'.

@roachhd
roachhd / README.md
Last active July 4, 2024 03:12
EMOJI cheatsheet 😛😳😗😓🙉😸🙈🙊😽💀💢💥✨💏👫👄👃👀👛👛🗼🔮🔮🎄🎅👻

EMOJI CHEAT SHEET

Emoji emoticons listed on this page are supported on Campfire, GitHub, Basecamp, Redbooth, Trac, Flowdock, Sprint.ly, Kandan, Textbox.io, Kippt, Redmine, JabbR, Trello, Hall, plug.dj, Qiita, Zendesk, Ruby China, Grove, Idobata, NodeBB Forums, Slack, Streamup, OrganisedMinds, Hackpad, Cryptbin, Kato, Reportedly, Cheerful Ghost, IRCCloud, Dashcube, MyVideoGameList, Subrosa, Sococo, Quip, And Bang, Bonusly, Discourse, Ello, and Twemoji Awesome. However some of the emoji codes are not super easy to remember, so here is a little cheat sheet. ✈ Got flash enabled? Click the emoji code and it will be copied to your clipboard.

People

:bowtie: 😄

@adambray
adambray / pair_programming_exercises.md
Last active October 21, 2021 14:03
Pair Programming Exercises

Number to Ordinal

See full kata at codewars

Finish the function numberToOrdinal, which should take a number and return it as a string with the correct ordinal indicator suffix (in English). That is:

  • numberToOrdinal(1) ==> '1st'
  • numberToOrdinal(2) ==> '2nd'
  • numberToOrdinal(3) ==> '3rd'
  • numberToOrdinal(4) ==> '4th'
@arawn
arawn / springmvc.md
Last active September 5, 2018 00:52
Spring MVC 를 활용한 웹 개발 실무

Spring MVC 를 활용한 웹 개발 실무

http://skpla.net/springmvc 로 접속하시면 이 페이지가 나옵니다.

학습 목표

  • Spring MVC를 사용해 웹 프로젝트를 개발할 수 있다.
  • Spring MVC가 구축한 다양한 전략을 배우고 사용할 수 있다.
  • Java및 스프링을 활용해서 데이터베이스와 연동할 수 있다.