quiet

Where do you find quiet places to code?

I'm currently working at home, but it's not always an ideal environment for coding. Where do you go when you need a quiet place to work for several hours. ...

Upgrade installation results in duplicate entry for installed software (FindRelatedProducts not executed)

I try to perform a major upgrade with my MSI installer with a quiet installation. The installer already works well when using a normal installation with a full user interface. In this case the old product is uninstalled because FindRelatedProducts action (from the UI sequence in FolderForm) detects my previously installed version. When...

using --quiet argument in ant svntask

Is there a way to run an svn status command from ant without seeing the whole output? I'm currently using the following: <svn><status path="." revisionProperty="build.number" /></svn> Bottom line, i'm trying to quietly get the svn revision number and for some reason I can't use the "info" tag (I get "svn doesn't support nested info el...

What is the correct way to die with an error but without a stack trace in perl?

I am writing a perl script, and in the part where I am checking the options that the user supplied on the command line, I want to exit with an error explaining what was wrong with the options. In this case, there is no need for a stack trace to go along with this error message. So what is the best way to die with an error message but no ...

Can the print() command in R be quieted?

In R some functions can print information and return values, can the print be silenced? For example: print.and.return <- function() { print("foo") return("bar") } returns > print.and.return() [1] "foo" [1] "bar" > I can store the return like: > z <- print.and.return() [1] "foo" > z [1] "bar" > Can I suppress the print o...