- 한국어 번역(초벌): nacyot
- 같이 읽으면 좋은 문서들
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
| /** Chapter 01 **/ | |
| /* | |
| 문제에 오역이 좀 있다. 아래에서 문제 자체를 검색해서 확인해 볼 것. | |
| Java 7 이상에서 실행할 것. | |
| https://www.google.co.kr/search?client=ubuntu&channel=fs&q=scala+for+the+impatient+exercise&ie=utf-8&oe=utf-8&gws_rd=cr&redir_esc=&ei=oqvrUb-1B6LwiQfjk4GQBg | |
| Scala Doc : http://www.scala-lang.org/api/current/index.html | |
| */ |
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
| [ | |
| { "keys": ["super+shift+w"], "command": "close_all" }, | |
| { "keys": ["super+shift+s"], "command": "save_all" }, | |
| { "keys": ["alt+up"], "command": "swap_line_up" }, | |
| { "keys": ["alt+down"], "command": "swap_line_down" }, | |
| { "keys": ["super+alt+j"], "command": "join_lines" }, | |
| { "keys": ["super+alt+down"], "command": "duplicate_line" }, | |
| { "keys": ["shift+super+r"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} }, |
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
| /* | |
| * Copyright (C) 2014 skyfish.jy@gmail.com | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
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
| #!/usr/bin/env zsh | |
| # refs: https://gist.github.com/nolanlawson/8694399 : bash-version | |
| loading() { | |
| local count=30 | |
| if [ $# -eq 1 ]; then | |
| count=$1 | |
| fi | |
| # INT をtrapして最後の出力を消す |
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
| @Parcel(implementations = { CountryRealmProxy.class }, | |
| value = Parcel.Serialization.FIELD, | |
| analyze = { Country.class }) | |
| public class Country extends RealmObject { | |
| @ParcelPropertyConverter(RealmListParcelConverter.class) | |
| public RealmList<RealmString> languages; | |
| } | |
| public class RealmListParcelConverter | |
| implements TypeRangeParcelConverter<RealmList<? extends RealmObject>, |