This file contains 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
/** | |
* Simple Scala Circular Buffer. | |
* | |
* @author Aidan Church ([email protected]) | |
* @url http://www.achurch.me | |
* | |
*/ | |
class circularBuffer(size:Int){ | |
val maxSize = size; |
This file contains 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
/** | |
* Simple Scala Circular Buffer. | |
* | |
* @author Aidan Church ([email protected]) | |
* @url http://www.achurch.me | |
* | |
*/ | |
class circularBuffer(size:Int){ | |
val maxSize = size; |
This file contains 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
background no | |
use_xft yes | |
xftfont Sans:size=9 | |
update_interval 1.0 | |
total_run_times 0 | |
own_window yes | |
own_window_transparent yes | |
own_window_class Conky | |
own_window_type desktop | |
double_buffer yes |