Displaying 3 results from an estimated 3 matches for "blanklin".
Did you mean:
blankline
2011 Apr 15
1
Sweave and Slides (Beamer)
...d together in desperation a
couple of weeks ago and in the middle of the night, so I don't doubt
that it can be improved.
<<paragraphs,echo=FALSE>>=
## Something for breaking up long output into "paragraphs".
paragraphs <- function(x) {
text <- capture.output(x)
blanklines <- (1:length(text))[text == ""]
if (blanklines[1] != 1) blanklines <- c(-1,blanklines)
parstarts <- blanklines + 1
parends <- c(blanklines[-1] - 1, length(text))
npar <- length(parstarts)
res <- list()
for (i in 1:npar) res <- c(res, list(text[parstarts[...
1998 Dec 11
2
notifying users
hello,
Is there a good way of notifying all users that , say the server is
going to be shut down? kinda like for a regular terminal session but
through some kind of windows messaging?
thanks in advance.
Robert
2004 Aug 16
0
Howto setup SLES 9 w/Samba 3.04 in a Domain & SSL SWAT
...stunnel/swat.csr
-signkey /etc/stunnel/swat.key -out /etc/stunnel/swat.crt
4. Prepare certificate for stunnel. According to samba / stunnel
documentation says that a blank line is needed between private key and
certificate and another blank line at the end of the file
echo "" > ~/blankline.txt
cat /etc/stunnel/swat.key ~/blankline.txt /etc/stunnel/swat.crt
~/blankline.txt > /etc/stunnel/swat.pem
5. Set the file permissions so no one but root has access to the file
chmod 700 /etc/stunnel/swat.pem
6. Configure STUNNEL to start at boot
vim /etc/stunnel/swat.conf
copy th...