Skip to content

Instantly share code, notes, and snippets.

View whosoonhwang's full-sized avatar
🎯
Focusing

Whosoon Sean Hwang whosoonhwang

🎯
Focusing
View GitHub Profile
@whosoonhwang
whosoonhwang / writing.md
Created June 9, 2022 08:58 — forked from longfin/writing.md
엔지니어를 위한 글쓰기

이 글은 Heinrich Hartmann 님이 작성하신 글을 한국어로 번역한 것입니다. 원문은 https://www.heinrichhartmann.com/posts/writing/ 에서 확인하실 수 있습니다.


글쓰기는 큰 조직에서 영향력을 발휘하는 데 중요합니다. 경력 있는 소프트웨어 엔지니어로서의 글쓰기는 직무 범위를 확장하고 경력을 발전시키기 위해 획득해야 하는 가장 중요한 기술입니다.

글쓰기는 어렵습니다. 많은 소프트웨어 엔지니어들이 글쓰기와 씨름하죠. 저도 개인적으로 문학에 대한 관심이 없기 때문에 글쓰기가 자연스럽지 않았습니다.

@whosoonhwang
whosoonhwang / AmountDiscount.java
Last active July 15, 2019 10:02
코드스피치 s83 2차 과제
package reservation;
abstract public class AmountDiscount implements DiscountPolicy.AMOUNT, DiscountCondition {
private final Money amount;
AmountDiscount(Money amount) {
this.amount = amount;
}
@Override
@whosoonhwang
whosoonhwang / src_Main.java
Created July 4, 2019 07:06
코드스피치 s83 1차 과제
import codespitz.*;
public class Main {
public static void main(String[] args) {
final Theater theater = new Theater();
final TicketOffice ticketOffice = new TicketOffice(theater, 0L);
final Movie codespitzMovie = new Movie("codespitz", 50000L);
final Movie aiMovie = new Movie("ai", 10000L);