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
// ->|--|<- (Narrow) | |
javascript:w = document._w || 1100; w = w - 100; document.body.style.width = w + "px"; document._w = w; | |
// <-|--|-> (Widen) | |
javascript:w = document._w || 900; w = w + 100; document.body.style.width = w + "px"; document._w = w; |
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
*$CapsLock:: | |
Send {LControl down} | |
Sleep 300 | |
Send {LControl up} |
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
/* | |
* Available context bindings: | |
* COLUMNS List<DataColumn> | |
* ROWS Iterable<DataRow> | |
* OUT { append() } | |
* FORMATTER { format(row, col); formatValue(Object, col) } | |
* TRANSPOSED Boolean | |
* plus ALL_COLUMNS, TABLE, DIALECT | |
* | |
* where: |
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 org.davidwatkins73.rx.playpen; | |
import rx.Observable; | |
import java.util.ArrayList; | |
import java.util.List; | |
public class RxBatchDemo { | |
public static void main(String[] args) { |