Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
267 views

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 > ...
4
votes
1answer
182 views

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 ...
3
votes
1answer
101 views

import rpy quietly

My question is analogous to this one but in the context of importing R to Python via RPy. Specifically, when I run from rpy import * at the beginning of my python script, there is a chunk of ...
3
votes
3answers
549 views

Make ant quiet without the -q flag?

I have an ant buildfile that is often run from vastly different environments. By default, I'm looking for the same behavior as using: ant -q However, since some team member's configurations vary, ...
2
votes
0answers
105 views

Android AudioTrack object won't play quiet sine signal (below approx. 15 db)

I have a problem with playing generated sine audio signal, using an Android API AudioTrack object. Everything works great while the amplitude of the sine signal is above around 40 ( maximum possible ...
2
votes
1answer
79 views

detect quiet mode

I need to be able to detect quiet mode in my setup project's class library. Some of library's methods show dialog forms, and they won't be visible if the setup is running in quiet mode. So I need to ...
2
votes
8answers
208 views

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.
1
vote
2answers
540 views

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 ...
0
votes
1answer
292 views

why cant vcredist_x86.exe installed quietly?

I need to install vcredist_x86.exe(Microsoft Visual C++ 2010 Redistributable Package) quietly. I entered "vcredist_x86.exe /q" on cmd.exe. However, vcredist_x86 don't installed successfully. I used ...
0
votes
1answer
506 views

Setting silent mode at a specific date and time

I'd like to set the ringer mode to silent for specific events in the future. It should only happen if a checkbox in the preferences is checked. I know that I have to update the manifest for the ...
0
votes
1answer
346 views

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" ...