The always enthusiastic and knowledgeable mr. @jasaltvik shared with our team an article on writing (good) Git commit messages: How to Write a Git Commit Message. This excellent article explains why good Git commit messages are important, and explains what constitutes a good commit message. I wholeheartedly agree with what @cbeams writes in his article. (Have you read it yet? If not, go read it now. I'll wait.) It's sensible stuff. So I decided to start following the
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This optional code is used to register a service worker. | |
| // register() is not called by default. | |
| // This lets the app load faster on subsequent visits in production, and gives | |
| // it offline capabilities. However, it also means that developers (and users) | |
| // will only see deployed updates on subsequent visits to a page, after all the | |
| // existing tabs open on the page have been closed, since previously cached | |
| // resources are updated in the background. | |
| // To learn more about the benefits of this model and instructions on how to |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| 초성 중성 종성 분리 하기 | |
| 유니코드 한글은 0xAC00 으로부터 | |
| 초성 19개, 중상21개, 종성28개로 이루어지고 | |
| 이들을 조합한 11,172개의 문자를 갖는다. | |
| 한글코드의 값 = ((초성 * 21) + 중성) * 28 + 종성 + 0xAC00 | |
| (0xAC00은 'ㄱ'의 코드값) | |