0
votes
0answers
51 views
How to block website from reading my IP? [closed]
I want to watch videos on a website but I can only access my country's version, whenever I type in say CA instead of IL, i get redirected to IL.
How can I surpass that?
0
votes
2answers
45 views
How to edit a watch expression in visual studio 2008 with the keyboard?
In visual studio 2008, when the focus is on a watch expression in the watch window, how can I edit this expression without double-clicking the mouse?
In visual C++ 6, it was the o …
0
votes
1answer
43 views
Watch Date in Eclipse for Java Application
I have been trying to add to the Watch window a Java Date object (java.util.Date). Sometimes, when i hover over a Date in the source editor view, it shows the Date value in a reada …
0
votes
2answers
34 views
How to understand if a request made to WCF?
Is there any event which allows me to get informed when a client accesses any of the listening WCF service methods ?
0
votes
1answer
53 views
Show CPU Registers in VS2008 watch window
Is it possible to add CPU registers (RAX, EAX, flags, etc etc) with a specific syntax in a watch window so they are displayed like regular variables and printed in base-10 (or hex …
2
votes
6answers
318 views
How to continuously update VS2008 Watch Window (without stopping execution)?
Hello,
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, …
1
vote
1answer
60 views
jQuery: Watching for nodevalue change
I want to watch for the nodeValue change of an element that's edited with contenteditable. Basically, I want to run a function on change of the nodevalue.
I found this post:
http: …
1
vote
2answers
74 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 ha …
0
votes
2answers
87 views
Watch a web page for changes
I googled and couldn't find any could that would compare a webpage to a previous version.
In this case the page I'm trying to watch is link text. There are services that can watc …
0
votes
1answer
13 views
Evaluate Expression in RAD Studio 2007’s Watch
I know that most of you might have noticed now. When you try to evaluate an expression using watch on RAD Studio 2007, it does not evaluate.
For example, if I had a vector, I coul …
1
vote
2answers
132 views
Loop SQlite3 database continuously, when query found run script for first 3
I have a SQlite database gets populated when ever someone adds a filename and dir to it, then I want the script to read the newest 3 entries (done with the "LIMIT 3") then I want t …
1
vote
4answers
288 views
Design of the watch variable (debug) window
I have implemented a script language which supports
creation and usage of .NET objects.
To make easy to use I want to implement a user interface
for looking up variables in memory …
2
votes
4answers
284 views
JavaScript - Watch for object properties changes
I just read Mozilla's documentation for the watch() method. It looks very useful.
However, I can't find something similar for Safari. Neither IE.
Do you use this method? How do y …
1
vote
0answers
37 views
Is there a paging version of `watch`? [closed]
Under a UNIX shell, how can I get a similar effect to the watch command, but with paging so that I can scroll around in the output if it takes up more than one screen?
In other wo …
2
votes
3answers
542 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>
…
