- 한 슬라이드 내에서 스크롤 지원
- Asciidoc 지원
- 프린트, PDF변환 자연스럽게 됨.
- Markdown, Asciidoc을 쓸 때 명시적으로 페이지 구분자를 넣을 수 없음.
- H2 태그 기준으로만 페이지 전환
| int count = 3; // main count1; | |
| int count2 = 3; // main count2; | |
| int count3 = 3; // main count3; | |
| int count4 = 3; // main count4; | |
| int causeCategoryCount = 3; // main count1; |
| I hope this edition captures my continued enthusiasm for the platform and helps make your use of the platform and its new features more effective and enjoyable. |
| sudo tcplay -c -d /dev/loop0 -a whirlpool -b AES-256-XTS | |
| sudo mkfs.ext4 /dev/mapper/source.tc | |
| losetup /dev/loop0 source.tc | |
| tcplay -m source.tc -d /dev/loop0 | |
| mount /dev/mapper/source.tc /mnt/source/ |
String 클래스를 "+"로 반복해서 더하는 연산을 어떤 경우에 컴파일러에서 자동으로 최적화해주는지 알고 있다면 보다 융퉁성 있게 쓸 수가 있습니다.
몇년전에 javaservice.net에서의 String vs StringBuffer에 대한 논의에서도 이 이야기가 오고 갔었고, 그를 통해 제가 알게 되었던 바는 다음과 같습니다.
String buffers are used by the compiler to implement the binary string concatenation operator . For example, the code:
| #!/bin/bash | |
| echo xinput map-to-output for Multi-Touch-V3004 | |
| input_id=`xinput | grep Multi-Touch-V3004 | awk '{print substr($5,4,length($5)-3)}'` | |
| echo Input device id: $input_id | |
| output_id=$1 | |
| if [[ -z $output_id ]]; then | |
| output_id=2 | |
| fi |
| import static com.sun.btrace.BTraceUtils.*; | |
| import com.sun.btrace.BTraceUtils.Aggregations; | |
| import com.sun.btrace.BTraceUtils.Sys; | |
| import com.sun.btrace.aggregation.Aggregation; | |
| import com.sun.btrace.aggregation.AggregationFunction; | |
| import com.sun.btrace.annotations.BTrace; | |
| import com.sun.btrace.annotations.Duration; | |
| import com.sun.btrace.annotations.Kind; | |
| import com.sun.btrace.annotations.Location; |
| import static org.apache.commons.lang.StringUtils.* | |
| class SqlMap { | |
| public static String buildSelectSql(User user) { | |
| StringBuilder sql = new StringBuilder(); | |
| sql.append(""" | |
| SELECT name, address | |
| FROM user | |
| WHERE 1=1 |
| import org.apache.commons.lang.StringUtils | |
| class SqlMap { | |
| public static String buildSelectSql(User user) { | |
| StringBuilder sql = new StringBuilder(); | |
| sql.append(""" | |
| SELECT name, address | |
| FROM user | |
| WHERE 1=1 |