Tagged Questions

Monitor is component for Monitoring. It is the act of looking on the processes or systems for performance, supervision and surveillance.

learn more… | top users | synonyms

66
votes
48answers
13k views

What's your ideal multiple-monitor setup for programming?

Jeff Atwood is often expounding the benefits of triple monitor setups for developers, and I have to say I agree with him. However, we are about to take on a good number of new developers and are ...
25
votes
11answers
2k views

How do I convince my boss to buy nice big monitors for the developers?

What's the best way to convince management that buying nice big monitors for developer workstations is worthwhile? (Whether big monitors actually are worthwhile is totally irrelevant, I'd like to ...
20
votes
9answers
11k views

write HTTP Proxy in Java

How would I go about creating an HTTP Proxy in Java for use recording and playing back HTTP Sessions? This would be for entirely legitimate performance monitoring purposes. Are there any classes in ...
19
votes
6answers
2k views

Can anyone explain thread monitors and wait?

Someone at work just asked for the reasoning behind having to wrap a wait inside a synchronized. Honestly I can't see the reasoning. I understand what the javadocs say--that the thread needs to be ...
18
votes
3answers
850 views

Does Monitor.Wait ensure that fields are re-read?

It is generally accepted (I believe!) that a lock will force any values from fields to be reloaded (essentially acting as a memory-barrier or fence - my terminology in this area gets a bit loose, I'm ...
16
votes
15answers
3k views

Actual Productivity Gains from Multiple Monitors

I see a lot of posts from people talking about how they cannot possibly live without two, three or 13 1/2 monitors but does anybody have an actual metrics or statistics which I could use as ...
14
votes
1answer
4k views

CPU temperature monitoring C#

For a programming project I would like to access the temperature readings from my CPU and GPUs. I will be using C#. From various forums I get the impression that there is specific information and ...
11
votes
10answers
7k views

Visual Studio and dual/multiple monitors: how do I get optimized use out of my monitors?

Ultramon is a great program for dual monitors (stretching screen across monitors), but I was wondering if there is any way do to something in Visual Studio like have one tab of code open on one ...
10
votes
13answers
3k views

Advice on buying a LCD monitor for development [closed]

I still use a 19" CRT monitor for my development (both at home and work), but now I'm looking for a wide-screen LCD monitor as my next purchase. As much as I look into it, I can't really find one ...
9
votes
1answer
213 views

What is a class monitor in D?

D2.0 classes have a __monitor class property that "gives access to the class object's monitor" (documentation). I searched around a bit and did not find any information except for this bit of detail. ...
8
votes
1answer
510 views

How to turn off a monitor using VB.NET code

How do I turn off a monitor using VB.NET code? OK, actually I found the C# solution. But I need the VB.NET solution. I have tried an online C# to VB.NET converter, but the converter is complaining ...
8
votes
3answers
322 views

How heavy are Java Monitors?

Say I have an array of thousands of objects, and a small number of threads that might access each of the objects. I want to protect the access to one of the objects methods. Easiest way would be to ...
8
votes
7answers
4k views

Good Programming Monitor: Actual Display Dimensions vs Diagonal “Marketing” Size?

I am thinking about adding a third monitor to my coding station. I currently run 1600x1200 on a dell 20.1", which is ok, but I am thinking to move to something that will do 1920x1200. I'm doing the ...
8
votes
8answers
923 views

Developing for multiple monitors

We are currently working on a new version of our main application. one thing that I really wish to work on is providing support for multiple monitors. Increasingly, our target users are adding ...
7
votes
1answer
268 views

What important difference exists between Monitor.TryEnter(object) And Monitor.TryEnter(object, ref bool)?

It seems that these code snippets ought to behave identically: 1: Monitor.TryEnter(object) if (Monitor.TryEnter(lockObject)) { try { DoSomething(); } finally { ...
7
votes
2answers
2k views

How to get the CPU Temperature info from Bios using c#?

How to get the CPU Temperature info from Bios using c# I gave a try to the code in http://stackoverflow.com/questions/2923984/cpu-temperature-monitoring-c But no luck. 'enumerator.Current' threw an ...
7
votes
5answers
4k views

How do I get Monitor resolution in Python?

What is the simplest way to get monitor resolution (Preferably in a tuple)?
7
votes
5answers
370 views

How to use JavaScript to measure how bright a users monitor is?

I've noticed that the brightness of computer monitors drastically varies between computers. As such, this changes the look of web pages greatly. Is there a way to use JavaScript to automatically ...
7
votes
1answer
3k views

c# How to get the events when the screen/display goes to power OFF or ON?

Hi I have been searching but I can't find the answer. How do I know when the screen is going off or on. Not the SystemEvents.PowerModeChanged . I dont know how to retrieve the display/screen EVENTS ...
7
votes
6answers
665 views

Preventing Screen burn

I've written a helpdesk monitor application that is designed to sit on a big plasma screen in a support department, the application has 5 views that it revolves around, the content of most of those ...
6
votes
2answers
406 views

Is it possible to put a single monitor to sleep using WinAPI/C#?

By using the Windows API it is possible to put the monitors into sleep mode: [DllImport("user32.dll")] static extern IntPtr SendMessage(IntPtr hWnd, uint Msg, IntPtr wParam, IntPtr lParam); and ...
6
votes
4answers
532 views

How can I force display detection in Windows?

I often boot my Windows 7 PC with the attached KVM switch focused on another computer. When I switch to the booted PC, the display resolution is wrong (and the second attached monitor is not ...
6
votes
3answers
2k views

c# Launch an application and send it to second monitor?

is there any way to start/lunch a program through Process in another screen? some one asked that here but there was no answer note: it is not a form in my app, I'm asking about running an external ...
6
votes
1answer
649 views

When to use lock vs MemoryBarrier in .NET

In .NET the lock keyword is syntactic sugar around Monitor.Enter and Monitor.Exit, so you could say that this code lock(locker) { // Do something } is the same as Monitor.Enter(locker); try { ...
6
votes
3answers
889 views

Dbus: is there such a thing as a “Dbus sniffer”?

Is there such a thing as a "Dbus sniffer" ? I would like to "sniff" all (or part) of the messages transiting on Dbus.
6
votes
5answers
11k views

How can I monitor the active thread count of a process (jvm) on linux?

I would like to monitor the number of threads used by a specific jvm process on linux. Is there an easy way to get this information without impacting the performance of the jvm process. More ...
5
votes
3answers
82 views

How to know how much time cost by “synchronized” code, in Java?

I've a Java application, which is not fast enough as I expected. I've done a lot of researches of how to improve it, but not lucky. Now I'm reviewing the code, and found there are a lot of ...
5
votes
3answers
97 views

How can .NET threads be waiting on a syncblk which is not owned by any thread?

I have a crash dump from my app showing a bunch of threads waiting on a syncblk, and the syncblk shows that it has no owning thread. How is that possible? I'm trying to reproduce the symptom in a ...
5
votes
2answers
655 views

Lock (Monitor) internal implementation in .NET

For mastering of some technology you have to know how it's made at one abstraction level lower. In case of multithreading programming, it will be good to know about synchronization primitives. Here is ...
5
votes
1answer
526 views

How to make a simple clipboard monitor in python

I was wondering how to make a simple Clipboard Monitor in python, for GUI I'm using PyGTK. I found gtk.clipboard class and all that but I couldn't find any solution to get the "signals" to trigger the ...
5
votes
1answer
504 views

Multiple monitor window management utilities

I have multiple monitors. I use these utilities to help with window management: UltraMon - a taskbar on each monitor Taskix - click and drag to reorder taskbar buttons GridMove - middle-click and ...
5
votes
17answers
5k views

Is using a widescreen monitor in portrait orientation more effective for coding?

In the very near future my development setup will be upgraded and part of the deal will be dual monitors (yay!) At least one of the monitors, possibly both, will be widescreen. I've heard of ...
5
votes
3answers
3k views

Re-assign/override hotkey (Win + L) to lock windows

Is it possible to re-assign the Win + L hotkey to another executable/shortcut? Use-case - I would like to switch off the monitor of my laptop as soon as it is locked. I know of a executable which can ...
5
votes
1answer
7k views

How do you monitor file access and changes on a file server by user name?

I was asked to find a way to monitor changes (modification, renaming, deletion, moving) of files in specific folders on the company's shared file server (simple windows shared directory). I wrote a ...
4
votes
2answers
97 views

Will Java's synchronization update the complete cache, or only the object I synchronized on?

If I access an object inside of a synchronized method or synchronized block, are all object in that accessed element also synchronized? Imagine there's an object Queue having a synchronized add() ...
4
votes
2answers
74 views

How to see what monitor is a thread waiting for via API?

We have a junit test runner which timeout if one test is hanging. Now I want create a thread dump via API. I know I can request the stacktraces via Thread.getAllStackTraces(). But the thread dump on ...
4
votes
1answer
211 views

Detecting if the monitor is powered off

I have a kiosk type application and I need to be notified if the LCD TV is powered off so I can chastise someone. I'm running Ubuntu 10.10 with nVidia video cards and the nVidia drivers. The TVs are ...
4
votes
1answer
2k views

Memory Monitor in xCode 4 - iPhone

Hy, Does anyone know how I can monitor the memory used on my iPhone in xCode 4? I need a tool like the Activity Monitor on previuos versions of xCode. Or any other analysis tools? Thank you, ...
4
votes
2answers
459 views

Javascript memory monitor? [closed]

Possible Duplicate: Javascript memory profiler Hi, I like to know what variables take how much memory in Javascript. Is it even possible to do it?
4
votes
5answers
1k views

Monitor vs lock

When is it appropriate to use either the Monitor class or the lock keyword for thread safety in C#? EDIT: It seems from the answers so far that lock is short hand for a series of calls to the Monitor ...
4
votes
2answers
308 views

Listening for MessageBox and Dialog results in my application

I have a "ControlMonitor" class which is designed to listen to the events that occur on a form. The way it works is, I pass the form that I want to monitor into an instance of this class, and then the ...
4
votes
3answers
155 views

emacs lisp code to add files for monitoring

I'm new to emacs lisp programming. I'm a developer and programming in c on daily basis. I would like to use tags for code browsing with emacs. However, size of my project very big and cant afford to ...
4
votes
2answers
462 views

Java threads waiting to lock object that isn't (visibly) locked

Normally when I ask for a thread dump, the symptoms of a poorly performing system are easily explained; i.e. normally I would be able to see that a number of threads are clearly waiting on a monitor ...
4
votes
3answers
174 views

What happens to a Thread that fails to acquire a lock?

What happens to a Thread that fails to acquire a lock (non-spin)? It goes to the BLOCKED state. How does it gets executed again? Lock lck = new ReentrantLock(); lck.lock() try { } finally { ...
4
votes
3answers
543 views

How do you turn on and off a monitor from within a Java application?

How do you turn on and off a monitor from within a Java application? In case you're wondering why, this is a kiosk style application where it would be great to turn off the monitors at night. Yes you ...
4
votes
1answer
211 views

C#: Force Monitors Into Standby Mode

So, say you're sitting in your bed and you want to turn off your monitors after watching a movie? You have to get up, and turn them off, or put the computer to sleep or something. I want to know what ...
4
votes
3answers
293 views

What is the best practice for form and dialog placement on single and multi-monitor systems?

I'm having a sort out of my (Delphi) applications and I been visiting the floating form size and location persistence which seems to be increasingly important with larger screen real-estate and ...
4
votes
2answers
779 views

Enable secondary monitor programmatically

I want to be able to enable my secondary monitor with C# in Windows Vista. Here is what I do: SafeNativeMethods.EnumDisplayDevices(null, (uint)id, ref d, (uint)0); ... ...
4
votes
6answers
131 views

Any good tools for ensuring sites are live?

I'm looking for some recommendations for website tools to ensure that deployed sites are always live and available. Ideally, I'd like to have a decent reporting / messaging mechanism from it to report ...
4
votes
4answers
555 views

Is this is a bug in .net Monitor/lock statement or does MessageBox.Show behaves differently?

Imagine you have two buttons on the win form. What do you think should be the behavior when user presses the "button 1" with the below code? Should it display all 5 message box in one go, or one by ...

1 2 3 4 5 8