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
| # save as ~/.screenrc | |
| startup_message off | |
| caption always "%{=u .r} %-w%<%{=ub .Y}%n %t%{=u .r}%+w " | |
| hardstatus alwaysignore | |
| hardstatus alwayslastline "%{= .K} [%l]%<%=%{= .Y}$USER%{= .R}@%H %=%{= .m} %Y/%m/%d%{= .M} %0c " | |
| defutf8 on | |
| #caption always "%{= wk} %{= KY} [%n]%t @ %H %{-} %= %{= KR} %l %{-} | %{= KG} %Y-%m-%d %{-} " | |
| #hardstatus alwayslastline " %-Lw%{= Bw}%n%f %t%{-}%+Lw %=| %0c:%s " | |
| defscrollback 20480 |
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
| ### Baysian estimate simulation of the "German tank problem" | |
| ### Coded by everdark, since 2013-01-30 | |
| ## Simple simulation | |
| set.seed(12345) | |
| j <- 1000 | |
| range <- c(14:50) |
NewerOlder