similar to: Redirect/pipe output to less

Displaying 20 results from an estimated 10000 matches similar to: "Redirect/pipe output to less"

2012 Oct 09
2
plot.new() and grid functions in multipage pdfs
Hi, when using the grid package, I've come across this weird behaviour where a call to plot.new() will start a new page for a multi-page pdf, but then the margins will somehow behave strangely for all but the first page: here is some code: pdf("test.pdf"); plot.new(); grid.rect(gp = gpar(fill="blue")); plot.new(); grid.rect(gp = gpar(fill="blue")); dev.off()
2012 Feb 07
2
predict.naiveBayes() bug in e1071 package
Hi, I'm currently using the R package e1071 to train naive bayes classifiers and came across a bug: When the posterior probabilities of all classes are small, the result from the predict.naiveBayes function become NaNs. This is an issue with the treatment of the log-transformed probabilities inside the predict.naiveBayes function. Here is an example to demonstrate the problem (you might need
2012 Apr 24
1
returning functions inside lapply
This has been asked before, but I just cannot figure out why lapply should behave this way given that R uses lazy evalution. Even after reading (or at least trying to read) parts of the R language definition. > f <- function(x) {function() {x}} > a <- list(f(1), f(2), f(3)) > a[[1]]() # as expected [1] 1 > a[[2]]() # as expected [1] 2 > a[[3]]() # as expected [1] 3 > b
2004 Feb 06
4
more or less pager
R-users, (forgive my return adres) I've been breaking my head why R---which i find fabulous, by the way---does not pipe interactive output through a pager (more or less), like it does with help(), or like GNU Octave does with arrays with more than terminal height rows. Maybe it is my installation (Debian/GNU Linux). Maybe it is my configuration, but i don't think so because with
2007 Apr 19
1
How to redirect to other action when it is called using ajax
Hi all, I am using javascript to call an action with some parameters. In that action i decide on the basis of parameters either to render some text on that page or to re direct to some other page. But its seems that my redirect_to method is not working from that action. Can anybody tell me some way of redirecting to some other action when that action is called as a remote_function from
2007 Nov 18
6
Asterisk on Pcengines Alix board
Hi all, I have successfully compiled and installed Asterisk on an Alix board (AMD Geode 500 Mhz + 256 Mb RAM) on top of Voyage linux (a Debian variant). I'm using it at home for a month. I wondered how much it could be loaded, so I tested it with pbx-test: I could place up to 15 simultaneous SIP calls before it got no more responsive. All in all a good, stable and cheap solution for home
2010 Nov 07
2
Any good guides for installing Asterisk on Embedded systems like Alix boards?
Hi Everyone, Knowing that running Asterisk on an embedded board like the Alix2d3 requires some fine tuning. Do you know of any good guides out there that does this from beginning to end? Looking to run this in a small office environment. Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL:
2011 Oct 04
2
issue with tesparam
OS: Debian squeeze Samba: 3.5.6 # testparm --section-name=global -s 2>&1|grep ALIX returns nothing # grep ALIX /etc/samba/smb.conf netbios name = ALIX works -- Regards Harry Jede
2010 Mar 17
3
tinc throughput on alix machines
Hi, I've setup a wlan ap using a an alix 2d2 (AMD Geode LX 500 Mhz + AES Offload) and am now trying to encapsulate the wlan traffic into a vpn (tap bridge). Though even when disabling crypto and digest (there is a crypto engine onboard can be setup to handle tinc encryption), the best throughput I get is aroung 2,9 MByte per second (wget+http) (even if the client is run locally). The network
2018 May 21
3
Question on CentOS 7.5 clutter-1.0 pkgconfig missing
Hello - I seem to be missing a pkgconfig clutter-1.0 file on C7.5 Doing yum provides "*/clutter-1.0" does not provide anything for /usr/share/pkgconfig ? Am I missing something ? how can I get the pkgconfig for clutter ? My system has none even though I have all the clutter-devel packages installed. Thanks, Jerry
2012 Jun 18
2
How can I "declutter"/make a biplot less messy in R
I am doing a principle component analysis on a dataset with a lot of different variables and have constructed a biplot of the data. Unfortunately, as can be seen on the attached image, the biplot is very messy, cluttered, and hard to read. I have performed a few modifications including outlier removal from a few of the variables, which has made the plot better, however it still is too cluttered
2017 Jan 13
11
[Bug 99396] New: Crash in nouveau_dri.so when switching apps with alt-tab in Gnome
https://bugs.freedesktop.org/show_bug.cgi?id=99396 Bug ID: 99396 Summary: Crash in nouveau_dri.so when switching apps with alt-tab in Gnome Product: Mesa Version: git Hardware: Other OS: All Status: NEW Severity: normal Priority: medium Component: Drivers/DRI/nouveau
2010 Sep 15
5
Hide an image in show.html.erb
I have the following "show.html.erb" script, and I get as an output TWO images since I use a method to draw an image. How can I HIDE the RESOURCE image? Thanks. Here is the script: <canvas id="line" height="512" width="512"> </canvas> <p id="notice"><%= notice %></p> <p> <b> Name </b> <%=
2018 Mar 01
3
Fwd: Migrating server
Yes please for the notes. I re-ran the tests without the smbldap-tools. I installed phpldapadmin and am able to login to the apache page using the cn=admin, dn=mydomain and create entries. This kind of tells me that LDAP is working Then I run the pdbedit -Lv and it lists all the users. The following happens when I add the LDAP bits to smb.conf and restart samba.The issue seems to be with samba
2008 Jan 20
1
OpenSSH + GeodeLX + Linux + Cryptodev = Corrupted MAC on input.
Hello, I just set up Debian Lenny on a PCEngines ALIX. This board have a GeodeLX processor with hardware crypto accelerator, so I patched my kernel to get cryptodev support. Everything is fine when playin with openssl, but openssh just crash when a large amount of data is transfered. A small example: alix:~# scp 100meg.test localhost:/dev/null root at localhost's password: 100meg.test
2005 Jul 27
2
Redirecting Messages and Errors to a file
Hello all, I'm trying to setup a simple construct that will email me all errors, warnings, and output of a sample R script. My initial thought was to use sink() and tryCatch around the script such that at the end of the script any output would be mailed to me, i.e.: sinkFile <- tempfile() sink(sinkFile) tryCatch({ [R script]}, finally = { sink() if (length(readLines(sinkFile)))
2007 Jul 24
3
Redirecting print output
I see a rich set of graphic device functions to redirect that output. Are there commands to redirect text as well. I have a set of functions that execute many linear regression tests serially and I want to capture this in a file for printing. Thanks, Stan Hopkins [[alternative HTML version deleted]]
2018 Mar 02
1
Fwd: Migrating server
hai, im still on holiday but i did see some things a bit, also in addition about the smb.conf in classic mode dns forwarder is predecated, so i suggest avoiding the option. this part, you set ssl off but also set the ports to the ssl ports. ldap ssl = off ldap passwd sync = yes /etc/ldap/ldap.conf BASE dc=mydomain URI ldap://sam3dc.mydomain ldap://sam3dc.mydomain:666 use URI
2009 May 23
7
Intel Atom systems?
Any comments on CentOS 5 on Intel Atom CPUs? I need to build a couple of inexpensive systems that will be used primarily as gateway/firewall systems with OpenVPN, and need recommendations in reliable hardware platforms. These will need two NICs. Bill -- INTERNET: bill at celestial.com Bill Campbell; Celestial Software LLC URL: http://www.celestial.com/ PO Box 820; 6641 E. Mercer Way Voice:
2008 Jul 04
2
swfdec and clutter
hi, i started an experimental clutter-swf renderer project http://www.students.itu.edu.tr/~gumusuy/clutter-swf-0.1.0.tar.bz2 using swfdec-0.6 In fact this project is a part of bigger clutter media project. For less dependency i configured swfdec by ./configure --prefix=/usr --disable-maintainer-mode --disable-gtk --disable-mad --disable-ffmpeg --disable-gstreamer --disable-vivified