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
git clone git://github.com/carpedm20/korail2.git | |
cd korail2 | |
python setup.py install |
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
var server = require('webserver').create(); | |
var service = server.listen(18080, function (request, response) { | |
var params = parseQueryString(request.url); | |
render(params.address, params.output); | |
response.statusCode = 200; | |
response.write("<html><body>"); | |
response.write("<p>" + params.output + " writed! </p>"); |
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
import static java.nio.file.StandardWatchEventKinds.*; | |
import java.io.IOException; | |
import java.net.URL; | |
import java.nio.file.FileSystems; | |
import java.nio.file.FileVisitResult; | |
import java.nio.file.Files; | |
import java.nio.file.Path; | |
import java.nio.file.Paths; | |
import java.nio.file.SimpleFileVisitor; |
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
package problems; | |
import static java.util.Arrays.*; | |
import java.util.Collections; | |
import java.util.List; | |
import java.util.Scanner; | |
import java.util.function.Consumer; | |
/** |
- Richard 성숙도 모델 (임정묵)
- 단위 테스트 활용 방법: JUnit 참조 가이드(Unit Testing Best Practices: JUnit Reference Guide) (최한뫼)
- 기술 부채 (박성철)
- 설계지구력 가설 (박성철)
- 자바에서 람다식이 필요한 이유 1 (오현석)
- [자바에서 람다식이 필요한 이유 2](http://jinson.tistory.com/entry/%ED%95%9C%EA%B8%80%ED%99%94-%ED%94%84%EB%A1%9C%EC%A0%9D%ED%8A%B8-5-%EB%9E%8C%EB%8B%A4%EA%B0%80-%E
- Android Studio Beta
- L developer preview & New Android devices
- IDE Enhancements
- Gradle build System : support multipl APKs
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
spring: | |
view: | |
prefix: /WEB-INF/view/ | |
suffix: .jsp | |
server: | |
tomcat: | |
uri-encoding : UTF-8 |
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
<util:constant id="clob" static-field="java.sql.Types.CLOB"/> | |
<bean id="repository" class="org.springframework.batch.core.repository.support.JobRepositoryFactoryBean"" p:clobType-ref="clob"/> | |