Top "Watch" questions

Watch refers to observing the status of variables, files or directories for some or all possible actions such as additions, deletions or modifications.

How do I watch a file for changes?

I have a log file being written by another process which I want to watch for changes. Each time a …

python file pywin32 watch
Converting Milliseconds to Minutes and Seconds?

I have looked through previous questions, but none had the answer I was looking for. How do I convert milliseconds …

java time type-conversion stopwatch watch
How to deep watch an array in angularjs?

There is an array of objects in my scope, I want to watch all the values of each object. This …

angularjs watch
AngularJS : How to watch service variables?

I have a service, say: factory('aService', ['$rootScope', '$resource', function ($rootScope, $resource) { var service = { foo: [] }; return service; }]); And …

angularjs watch angular-services
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 …

sql sql-server-2005 debugging ssis watch
What is the Angular equivalent to an AngularJS $watch?

In AngularJS you were able to specify watchers to observe changes in scope variables using the $watch function of the $…

angularjs angular watch angular2-changedetection
OS X Bash, 'watch' command

I'm looking for the best way to duplicate the Linux 'watch' command on Mac OS X. I'd like to run …

macos bash automation watch
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 …

macos watch inotify
AngularJS : Clear $watch

I have a watch function in my AngularJS application. $scope.$watch('quartzCrystal', function () { ... } However, after some condition (in my example, …

javascript angularjs watch
AngularJS $watch window resize inside directive

I have revealing module pattern which looks like this: 'use strict'; angular.module('app', []) .directive('myDirective', ['SomeDep', function (SomeDep) { var …

angularjs resize window directive watch