Tagged Questions
The watch tag has no wiki summary.
36
votes
14answers
17k views
How do I watch a file for changes using Python?
I have a log file being written by another process which I want to watch for changes. Each time a change occurrs I'd like to read the new data in to do some processing on it.
What's the best way to ...
12
votes
3answers
5k views
Watch for object properties changes in JavaScript
I just read Mozilla's documentation for the watch() method. It looks very useful.
However, I can't find something similar for Safari. Neither Internet Explorer.
How do you manage portability across ...
12
votes
1answer
13k views
Watching variables in SSIS during debug
I have a project in SSIS and I've added an Execute SQL Task which sends its result out to a variable. I wanted to confirm the value because I was worried that it would try to write it out as a ...
11
votes
1answer
3k views
Where is the expression window in Xcode 4?
How can I add an expression to watch in Xcode 4?
This should be very obvious, but it is not. It does not seem to be down any menu or available on a contextual click. It would be nice if I could ...
6
votes
3answers
2k views
Is there a command like “watch” or “inotifywait” on the Mac?
I want to watch a folder on my Mac (Snow Leopard) and then execute a script (giving it the filename of what was just moved into a folder (as a parameter... x.sh "filename")).
I have a script all ...
5
votes
3answers
641 views
Visual Studio expression containing a term named “by” cannot be evaluated in the watch window
Consider my C++ code below:
int _tmain(int argc, _TCHAR* argv[])
{
int by = 10;
printf("%d\n", by);
int bx = 20;
printf("%d\n", (by + bx));
return 0;
}
which works fine. The ...
5
votes
6answers
812 views
Java: Watching a directory to move large files
I have been writing a program that watches a directory and when files are created in it, it changes the name and moves them to a new directory. In my first implementation I used Java's Watch Service ...
4
votes
3answers
429 views
Colors with unix command “watch”?
Some commands that I use display colors, but when I use them with watch the colors disappears:
watch -n 1 node file.js
Is it possible to have the colors back on somehow?
3
votes
2answers
71 views
gnu watch: justify on the lower left of the terminal
I want to apply a watch command on a mysql query every N seconds, but would like to have the results on the bottom left of the terminal instead of the top left:
watch -n 120 "mysql_query" | column ...
3
votes
2answers
64 views
Can't find constructor on type; works in Watch
This is the code I use:
Type type = /* retrieved Type */
object arg = /* something that evaluates to null */
MyClass obj = (MyClass)Activator.CreateInstance(type, arg);
I get a crash, that given ...
3
votes
1answer
271 views
IE Developer Toolbar BHO and Developer Tools Watch feature not allowing me to add in debug mode (Using IE 8)
I am using IE 8, and the "IE Developer Toolbar BHO" is not working correctly, specifically it won't allow me to add anything to the "Watch" feature, in debug mode. Where it says "Click to add..." in ...
3
votes
1answer
100 views
Search ability within Watch in debugging?
Just wondering if there is the ability to search while in watch? Instead of going through a million tree nodes, if I could simply search for the result and then it opens up the tree accordingly?
...
3
votes
3answers
615 views
Problem with debug watch in Visual Studio with yield return enumerator methods
I have a method which returns an IEnumerable<> which it builds up using the yield return syntax:
namespace Validation
{
public class UserValidator
{
public ...
3
votes
2answers
358 views
How can I make the watch command interpret vt100 sequences?
Consider this simple example (which displays in red):
echo -e "\033[31mHello World\033[0m"
It displays on the terminal correctly in red. Now consider:
watch echo -e "\033[31mHello World\033[0m"
It ...
3
votes
6answers
732 views
How to continuously update VS2008 Watch Window (without stopping execution)?
In Adobe Director, there is a watch window that updates while my application runs. For example, if I have a game application and am watching an instance of a ball object, I can see all of its values ...
3
votes
3answers
5k views
How can I use “watch” GDB?
I tried to watch the change of the "int a" by the command "watch a". However, the program does not stop, when it changes to 12. Why?
/* FILE: test.c */
#include <stdio.h>
#include ...
2
votes
2answers
51 views
Do I need to wait for a callback on a call to WATCH in Redis (in node.js)?
I'm using node-redis. In code like this:
var store = require('redis').createClient();
store.watch('some:key');
store.get('some:key', function (err, results) {
var multi = store.multi();
// ...
2
votes
1answer
147 views
Visual Studio: Dataset and DataTable Visualizer not working in watch window
I have just installed visual studio 2005 service pack 1 on a Windows 7 64 bit machine. Everything appears to work fine and I am able to run my project without any errors. However, when I am in debug ...
2
votes
1answer
234 views
.less CSS watch feature only works locally?
According to http://fadeyev.net/2010/06/19/lessjs-will-obsolete-css/ I should be able to set up a "watch" feature for less.
I mainly work directly on remote servers. Either through opening up file ...
2
votes
1answer
201 views
Node.js listen to MongoDB change
is there a way that node.js listen to change in a particular data in a collection of MongoDB? and if there is change, then fire an event in node.js?
2
votes
1answer
134 views
viewing buffer contents in a debug watch window
Is there a way to enter expression in debug watch window to see a portion of a buffer having only a pointer to it? i.e first 200 elements of it.
2
votes
2answers
363 views
2
votes
4answers
610 views
How can I auto compile my HAML files into HTML files in a tiny project that doesn't run on RoR?
I have only today started playing with compass and haml. While I am quite familiar with the way sass works and I get the idea of what compass is for sass and how to use it, I've hit a little bit of a ...
2
votes
1answer
171 views
Watching a property for changes
I need a function similar to gobject.io_add_watch but for a variable. For example it needs to watch the variable stop initialized to stop = False and when stop is changed to True it must call a ...
2
votes
3answers
1k views
javascript property change event
I need to fire an event every time a property is updated/changed in order to keep dom elements in sync with the property values on the model (Im using john resig's simple inheritance ...
2
votes
1answer
576 views
Why isn't Pyinotify able to watch a dir?
I would like Pyinotify to watch a templates directory, which has subfolders, but I'm getting this error:
DIRECTORY /home/project/templates
[Pyinotify ERROR] add_watch: cannot watch ...
2
votes
4answers
258 views
In Visual Studio 2008 using C# how do I set a watch on a property?
In Visual Studio 2008, I am using C# if that matters, how do I set a watch on a property so I see whenever the value changes during execution?
2
votes
3answers
168 views
Is there an ANT task for watching a directory for changes?
It sounds a little far fetched to me, but is there an ANT task for watching a directory for changes and then running a particular ANT class when the directory changes?
2
votes
2answers
142 views
How to see variable in calling function in visual studio?
Does anyone know how to watch a variable in calling function.
For example: C#:
void fn a()
{
int myVar=9;
b();
}
b()
{
Throw new Exception();
}
How can I watch myVar when I get the exception in ...
2
votes
7answers
1k views
invoking functions while debugging with Visual Studio 2005?
Here's something I know is probably possible but I've never managed to do
In VS2005(C++), While debugging, to be able to invoke a function from the code which I'm debugging.
This feature is sometimes ...
1
vote
2answers
72 views
Monitor directory and then run PHP script
I want to monitor a directory on my server for additions (or file update), and when something is added, run a php script.
I saw that there is watch, but I'm not sure exactly how to use it.
I know ...
1
vote
1answer
49 views
How do I watch a variable in real-time when debugging on Eclipse?
I'm trying to watch a variable change in Eclipse's debug while my program run. But I can only find how to watch a variable when I have a breakpoint set, which pauses the program. I wanna watch the ...
1
vote
1answer
86 views
javascript debugging: Is there a way to break on a change of variable value?
Similar to other questions here, like this one.
Is there a way to break on the change of a variable value in any javascript debugger? (like IE Developer tools, Visual Studio, or Firebug?)
I guess ...
1
vote
1answer
89 views
log4net doesn't watch my app.config
I configured my log4net to watch on changes made to the app.config file.
[assembly: log4net.Config.XmlConfigurator(Watch = true)]
when i run my app and change things in the config file, these ...
1
vote
4answers
99 views
Is there a smarter alternative to “watch make”?
I ran into this useful tip that if you're working on files a lot and you want them to build automatically you run:
watch make
And it re-runs make every couple seconds and things get built.
However ...
1
vote
1answer
367 views
Xcode 4 / gdb drive me crazy - How simply watch object properties?
I am very lost in Xcode 4. Watching a simple variable is a nightmare. I do not figure out how to just "watch a variable value". It was easier in Xcode 3...
I have the following piece of code:
if ...
1
vote
2answers
161 views
Incorrect watch values in Visual Studio 2010 Professional
I'm having a really bizarre problem wherein the watch window values for some variables don't seem to match their "real world" values. The debugger just appears to be off in space. Here's the tiniest ...
1
vote
3answers
113 views
How do I add `watch' command to a shell script?
I have a script that greps and awks and counts for ip addresses with multiple http status codes. It doesn't really matter what the script is though, because my goal is as follows:
I want to invoke ...
1
vote
2answers
120 views
Shell script that watches for changes to specific files then cats them
I have a series of files that I need to 'cat' whenever a one of the files gets updated. For example, say we have fileA.txt, fileB.txt, and fileC.txt. When fileA.txt is modified and the file is saved ...
1
vote
1answer
42 views
Use Object.watch() on an “independent” variable?
Perhaps I'm missing something major, but is there a way to use Object.watch() on variables that exist independent of objects?
I'm a bit of a js noob, and couldn't find any kind of global object that ...
1
vote
3answers
181 views
VS2010: Watching variables is not possible?
I use VS2010 as my vb.net compiler but sometimes I cannot watch a local variable while debugging.
Actually, when I add my local variable to watch window, it says that :
'sm' is not declared. It may ...
1
vote
1answer
220 views
how to achieve linux's inotify-tools shell methods on osx
To monitor a file in linux, I can use inotify-tools like this
#!/bin/bash
# with inotify-tools installed, watch for modification of file passed as first param
while inotifywait -e modify $1; do
...
1
vote
4answers
52 views
vs2010 watch window : print out some member to parent node
first of all, see the screenshot please.
this is a watch window of vs 2010.
i want to some sub member of structure/class move up into parent's value field for easier debugging. (in C#)
is it ...
1
vote
1answer
220 views
Is there a Windows command line equivalent to Linux “Watch” command? [closed]
I am wondering if in windows' command line there is any option to run a specific command every X seconds, and see the results constantly updated (and not scrolling on and on).
In Linux, the "watch" ...
1
vote
8answers
287 views
How do I “run until this variable changes” when debugging?
When debugging my C#, I often want to know when a variable's value changes and then investigate the state of the program.
Currently, I do it like this:
Watch-list the offending variable.
Physically ...
1
vote
1answer
67 views
Crazy idea? Program itself tells GDB to watch variable for changes
Why would I need this?
The location of a datum keeps changing because input data varies too much, so other than printing it, sleeping for 30 seconds so I can manually enter it into GDB, then ...
1
vote
1answer
90 views
Watch for newly created files from command line
I was wondering if there is any way e.g. program or code, that can monitor for new files created within a folder or not?
1
vote
1answer
200 views
Is there any Mac text editor with tail or watch files change feature?
Ideally I wanted to use this in TextMate but I didn't find any feature besides the Show Web Preview which is nice for the fact I can set the interval to update the page, but definitely doesn't work ...
1
vote
2answers
1k views
No symbol “color” in current context. GDB
I am trying to debug code using gdb, but when I try to watch my variable color it say this
No symbol "color" in current context.
The variable is a int and is clearly in the scope. the code is as ...
1
vote
1answer
179 views
Entity framework : Watch changes saved on my objects
For my project, I have to log all changes made on my objects, through the entity framework. This consists just to register which fields have been edited on which table at which time.
Roughly, put ...