active questions tagged notifications - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T18:34:58Zhttp://stackoverflow.com/feeds/tag/notificationshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1933107/how-do-you-listen-to-notifications-from-itunes-on-a-mac-using-the-nsdistributedn2How do you listen to notifications from iTunes on a Mac (Using the NSDistributedNotificationCenter)Issy2009-12-19T14:59:38Z2009-12-20T22:48:58Z
<p>Hello All,</p>
<p>Looking for help/tutorials/sample code of using python to listen to <a href="http://developer.apple.com/mac/library/DOCUMENTATION/Cocoa/Reference/Foundation/Classes/NSDistributedNotificationCenter%5FClass/Reference/Reference.html#//apple%5Fref/doc/uid/20000396-2831" rel="nofollow">distributed notifications</a> from applications on a mac. I know the <a href="http://pyobjc.sourceforge.net/" rel="nofollow">py-objc</a> lib is the bridge between python and mac/cocoa classes, and the Foundation library can be used to add observers, but looking for examples or tutorials on how to use this to monitor iTunes.</p>
http://stackoverflow.com/questions/1920667/execute-some-operation-after-the-thread-is-completed1Execute some operation after the thread is completedSadSido2009-12-17T10:03:58Z2009-12-18T09:00:14Z
<p>Greetings, everyone!</p>
<p>I have a class (say, "Switcher" ) that executes some very-very long operation and notifies its listener, that operation is complete. The operation is long, and I isolate actual switching into separate thread:</p>
<pre><code>class Switcher
{
public:
// this is what other users call:
void StartSwitching()
{
// another switch is initiated, I must terminate previous switching operation:
if ( m_Thread != NULL )
{
if ( WaitForThread(m_Thread, 3000) != OK )
{
TerminateThread(m_Thread);
}
}
// start new switching thread:
m_Thread = StartNewThread( ThreadProc );
}
// this is a thread procedure:
static void ThreadProc()
{
DoActualSwitching();
NotifyListener();
}
private:
Thread m_Thread;
};
</code></pre>
<p>The logic is rather simple - if user initiates new switching before the previous one is complete, I terminate previous switching (don't care of what happens inside "DoActualSwitching()") and start the new one. The problem is that sometimes, when terminating thread, I loose the "NotifyListener()" call.</p>
<p>I would like to introduce some improvements to ensure, that NotifyListener() is called every time, even if thread is terminated. Is there any pattern to do this? I can only think of another thread, that infinitely waits for the switcher and if the switcher is done (correctly or by termination), it can emit notification. But introducing another thread seems an overplay for me. Can you think of any other solution (p.s. the platform is win32)?</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/1906797/blackberry-read-profileindex-status-using-notificationmanager-and-consequence0Blackberry - read profileIndex status using NotificationManager and Consequence API Mintu Nandi2009-12-15T11:23:51Z2009-12-16T15:36:25Z
<p>Below link is not enough to get profile status....</p>
<p><a href="http://stackoverflow.com/questions/1892579/blackberry-get-list-of-profiles-and-active-profile-info">http://stackoverflow.com/questions/1892579/blackberry-get-list-of-profiles-and-active-profile-info</a></p>
<p>Is there any indirect way to get Profile status, programmatically?
I am trying to find the profileIndex but failed.
If anyone know anything about this problem solution pls pls share .</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1905226/blackberry-programmatically-create-new-exception-in-profile1BlackBerry - Programmatically create new exception in profile?Mintu Nandi2009-12-15T04:49:15Z2009-12-16T15:34:40Z
<p>Hi everyone!</p>
<p>Actually i trying <strong>how to read the profile status</strong> but i am not getting that.</p>
<p>....</p>
<p>If anyone have an idea how to create new exception in profile programmatically,</p>
<p>will really helpful for me.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1910449/observing-a-change-to-any-class-property-in-objective-c0Observing a Change to ANY Class Property in Objective-CLucasTizma2009-12-15T21:15:59Z2009-12-15T21:32:13Z
<p>Put simply, is there a way to receive a general notification when any property in an Objective-C class is changed? I know I can use KVO to monitor particular property changes, but I have the need to call a particular method whenever any <code>setProperty:</code> message is sent to my class. I want to be able to receive a generic notification without any concern about which property in particular was modified.</p>
<p>If it helps to clarify why I want to do this, I am making use of some fast table scrolling code found here: <a href="http://blog.atebits.com/2008/12/fast-scrolling-in-tweetie-with-uitableview/" rel="nofollow">http://blog.atebits.com/2008/12/fast-scrolling-in-tweetie-with-uitableview/</a></p>
<p>Part of the process of accomplishing this is that whenever a property in a table view cell is modified, <code>[ self setNeedsDisplay ]</code> needs to be called. I'd rather not have to override the setter methods for every property in my class just to make this call.</p>
http://stackoverflow.com/questions/1904468/sql-server-notifications-my-onchange-does-not-fire0SQL Server Notifications - My OnChange does not fire.Nick2009-12-15T00:20:57Z2009-12-15T00:49:38Z
<p>Hey eveyone..</p>
<p>I would like to make use of SQL Server notifications to capture insert events at my database within a winforms app. I am attempting to use the SQLDependency object. The MSDN articles make this seem pretty straight forward. So I have created a little example application to give it a try. The event only seems to fire as I enter my application the first time(MessageBox appears). Inserting data into the table does not raise the OnChange event it would seem. Can someone tell me what I'm missing? Thanks!</p>
<pre><code> public Main()
{
InitializeComponent();
var check = EnoughPermission();
SqlDependency.Stop(constr);
SqlDependency.Start(constr);
if(connection == null)
{
connection = new SqlConnection(constr);
}
if(command == null)
{
command = new SqlCommand("Select ID, ChatMessage FROM dbo.Chat",connection);
}
connection.Open();
command.Notification = null;
SqlDependency dependency = new SqlDependency(command);
dependency.OnChange += new OnChangeEventHandler(dependency_OnChange);
command.ExecuteReader();
}
private void dependency_OnChange(object sender, SqlNotificationEventArgs e)
{
MessageBox.Show("Change!");
}
</code></pre>
http://stackoverflow.com/questions/1892579/blackberry-get-list-of-profiles-and-active-profile-info1Blackberry - Get list of Profiles and active Profile infosrinivas-g2009-12-12T06:38:02Z2009-12-12T17:17:42Z
<p>Hi, I'm developing a Blackberry application, where I need to get the list of profiles from phone (for sound settings).</p>
<p>Is there any way for getting the profile info?</p>
http://stackoverflow.com/questions/1889642/automatic-emails-from-wordpress0Automatic emails from wordpresslamcro2009-12-11T17:35:49Z2009-12-11T17:40:23Z
<p>Is there any way to configurate my wordpress blog to send an email, to a group in Exchange, whenever there is a new post?
I would like my IT department to receive the new post, or a notification of it, whenever someone writes one.</p>
http://stackoverflow.com/questions/1887436/in-the-readdirectorychangesw-function-what-does-the-overlap-parameter-mean0In the ReadDirectoryChangesW Function what does the Overlap parameter mean?Dynite2009-12-11T11:25:37Z2009-12-11T15:40:35Z
<p>I understand the the ReadDirectoryChangesW Function uses a buffer to store the notifications, but what does overlap mean?</p>
<p>I presume there is protection to stop the notification you're reading from being over-written?</p>
http://stackoverflow.com/questions/1887891/what-is-the-reason-the-uikeyboardwillshownotification-called-once0What is the reason the UIKeyBoardWIllShowNotification called once ?hib2009-12-11T12:52:47Z2009-12-11T14:00:46Z
<p>Hello all,</p>
<p>I am using keyboard will show and hide notification for sliding the view to get the visible text view.</p>
<p>I have a tab bar application with six tabs.</p>
<p>In each view I am using the navigation controller.</p>
<p>In the detail view of each table view cell I am using the keyboard notifications.</p>
<p>So the problem is that the keyboard notifications work for the first time that I will use . on on the other tabs it won't work .</p>
<p>The code is as follows :</p>
<pre><code>[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardWasShown:)
name:UIKeyboardDidShowNotification
object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardWasHidden:)
name:UIKeyboardDidHideNotification
object:nil];
</code></pre>
<p><strong>and the methods</strong></p>
<pre><code>- (void)keyboardWasShown:(NSNotification *)aNotification {
if ( keyboardShown )
return;
NSDictionary *info = [aNotification userInfo];
NSValue *aValue = [info objectForKey:UIKeyboardBoundsUserInfoKey];
CGSize keyboardSize = [aValue CGRectValue].size;
NSTimeInterval animationDuration = 0.300000011920929;
CGRect frame = self.view.frame;
frame.origin.y -= keyboardSize.height-100;
frame.size.height += keyboardSize.height-100;
[UIView beginAnimations:@"ResizeForKeyboard" context:nil];
[UIView setAnimationDuration:animationDuration];
self.view.frame = frame;
[UIView commitAnimations];
viewMoved = YES;
keyboardShown = YES;
}
- (void)keyboardWasHidden:(NSNotification *)aNotification {
if ( viewMoved && tvAddreview) {
NSDictionary *info = [aNotification userInfo];
NSValue *aValue = [info objectForKey:UIKeyboardBoundsUserInfoKey];
CGSize keyboardSize = [aValue CGRectValue].size;
NSTimeInterval animationDuration = 0.300000011920929;
CGRect frame = self.view.frame;
frame.origin.y += keyboardSize.height-100;
frame.size.height -= keyboardSize.height-100;
[UIView beginAnimations:@"ResizeForKeyboard" context:nil];
[UIView setAnimationDuration:animationDuration];
self.view.frame = frame;
[UIView commitAnimations];
viewMoved = NO;
}
keyboardShown = NO;
}
</code></pre>
http://stackoverflow.com/questions/1872024/how-to-force-screen-update-for-list-view-from-non-ui-thread-iphone0How to force screen update for list view from non-UI thread (iPhone)JOM2009-12-09T06:39:49Z2009-12-09T07:32:06Z
<p>I have a <strong>background thread</strong> listening to network, using a <strong>callback</strong> to process and store data. When it's ready (UI) controller gets a sync <strong>Notification</strong>, requests data, updates list and refreshes screen ...except <strong>screen doesn't update</strong> - until user scrolls the screen!</p>
<pre><code>void aMessageArrivedCBack (const std::string text)
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSString *msg = [[[NSString alloc] initWithCString:(const char *)text.c_str() encoding:NSUTF8StringEncoding] autorelease];
[[AMessageStore sharedInstance] aStoreMessage:msg];
[pool drain];
[[NSNotificationCenter defaultCenter]
postNotificationName:NOTIF_MessageReceived object:nil];
}
</code></pre>
<p>Here's the (UI) controller routine for Notification handling, the problem area:</p>
<pre><code>- (void)aMessageWasReceived:(NSNotification*)aNotification
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
[self.msgListView reloadData];
[self.view setNeedsDisplay];
[pool drain];
}
</code></pre>
<p><strong>Question:</strong> how can I force screen update, when new message arrives? I have tried so many things I've lost count.. and just found out I'm trying same old things for fifth time. Still doesn't work.</p>
<p><strong>What I already tried:</strong></p>
<p><em>Note: "didn't work" below means that screen didn't update.</em></p>
<p>Data callback is running in non-UI thread, thus Notification is sent & received also in non-UI thread. Distributed notification are not available in iPhone OS, cannot use <strong>NSDistributedNotificationCenter</strong>.</p>
<p>[self.view <strong>setNeedsDisplay</strong>] and [self.msgListview setNeedsDisplay] don't work. Didn't really expect, not any more...</p>
<p>[self.msgListView <strong>performSelectorOnMainThread</strong>:@selector(setNeedsDisplay) withObject:nil waitUntilDone:NO]; really should work, it didn't. I couldn't find object to send it to, I recall. At least "self" didn't work: unrecognized selector sent to instance at 0x14036f0. Terminating app due to uncaught exception 'NSInvalidArgumentException'. Self.msgListView works, but doesn't update screen.</p>
<p>[self.msgListView <strong>reloadRowsAtIndexPaths</strong>:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationTop]; didn't work.</p>
<p>[self.msgListView <strong>insertRowsAtIndexPaths</strong>:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationTop]; didn't work</p>
<p>[self.msgListView <strong>visibleCells</strong>]; works ok, but what to do with it?</p>
<p>I am positive it's a small thing to fix, but I just can't find it.. Is there any ways to kick the (nice) UI thread or tableView for update? Could I call some <strong>_tableView didSelectRowAtIndexPath</strong> or anything? Can I do anything with <strong>appDelegate</strong>? How could I emulate "user scrolls the screen" event myself?</p>
http://stackoverflow.com/questions/1869742/firefox-addon-how-to-show-notification-bar-at-the-top-of-the-webpage0Firefox addon: How to show notification bar at the top of the webpage?Legend2009-12-08T20:50:43Z2009-12-08T21:19:04Z
<p>Can someone tell me how to popup a notification message inside a firefox addon like the one that Firefox displays to offer to store passwords? I am not talking about the alert boxes...</p>
http://stackoverflow.com/questions/1849070/send-facebook-notification-to-user-who-registered-on-my-site-via-facebook-connect0Send Facebook notification to user who registered on my site via facebook connect.tybro01032009-12-04T19:18:08Z2009-12-04T20:03:27Z
<p>Let me start by saying facebook's developer documentation sucks. Bad.</p>
<p>I'm using the facebooker plugin in rails to let users sign up through facebook connect. Now when certain things occur I want to send notifications to certain users through facebook. I heard some say that notifications must go from one user to another, but I've seen evidence otherwise. I signed up at the site <a href="http://www.meetingwave.com/" rel="nofollow">http://www.meetingwave.com/</a> through fb connect, and now they send me (annoyingly) daily notifications of new things on their site. Also, using the comments widget on my own site <a href="http://www.meetingwave.com/" rel="nofollow">www.tmatthew.net</a>, when an anonymous user leaves a comment I get notified of that as well.</p>
<p>So uh, how do you do that? I've been googling all week long and can't seem to find anything. It seems like I should be able to send a notification from my app to one of it's users.</p>
http://stackoverflow.com/questions/1834715/sending-a-summary-of-sql-server-agent-job-failures1Sending a summary of SQL Server Agent job failuresTraples2009-12-02T18:02:42Z2009-12-02T18:59:58Z
<p>SQL Server Agent allows you to create Notifications at the moment a Job succeeds or fails, but I'd like to create a regular notification that sends a summary of the events for those who are one step removed from server maintenance.</p>
<p>Is there a way to setup summary notifications that spell out which jobs failed over the last 24 hours?</p>
http://stackoverflow.com/questions/1049001/get-notification-when-nsoperationqueue-finishes-all-tasks1Get notification when NSOperationQueue finishes all tasksporneL2009-06-26T13:00:14Z2009-11-27T08:49:53Z
<p><code>NSOperationQueue</code> has <code>waitUntilAllOperationsAreFinished</code>, but I don't want to wait synchronously for it. I just want to hide progress indicator in UI when queue finishes.</p>
<p>What's the best way to accomplish this?</p>
<p>I can't send notifications from my <code>NSOperation</code>s, because I don't know which one is going to be last, and <code>[queue operations]</code> might not be empty yet (or worse - repopulated) when notification is received.</p>
http://stackoverflow.com/questions/1055530/nsnotificationcenter-selector-wont-work-with-its-nsnotification1NSNotificationCenter selector won't work with its NSNotificationJohn2009-06-28T19:05:32Z2009-11-24T21:55:42Z
<p>I'm working on a Cocoa project with some C in it (I know, objc contains C...) and am trying to understand <code>NSNotificationCenter</code>s. Here's the situation:</p>
<p>I have a struct declared as <code>typedef struct {/*code here*/} structName;</code></p>
<p>In my <code>- (id)init</code> method, I have</p>
<pre><code>[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(selName:) name:@"notName" object:nil];
</code></pre>
<p>I have a callback function:</p>
<pre><code>int callback(/*args*/) {
structName *f = ...
NSAutoreleasePool *autoreleasepool = [[NSAutoreleasePool alloc] init];
[[NSNotificationCenter defaultCenter] postNotificationName:@"notName" object:[[NSValue valueWithPointer:f] retain]];
[autoreleasepool release];
}
</code></pre>
<p>And then for my selector:</p>
<pre><code>- (void)selName:(NSNotification *)note
{
NSLog(@"here");
NSLog(@"note is %@", note);
}
</code></pre>
<p>Now, if I comment out that second <code>NSLog</code>, everything seems to work (i.e. "here" is printed). But if I leave it in, nothing about the <code>NSNotification</code> seems to work. But this seems to defeat the purpose of the object, userInfo, etc. of the <code>NSNotification</code>.</p>
<p>What am I doing wrong and how can I fix it so I can have access to my <code>structName f</code>?</p>
<p>@Nathan
Okay, so now I have</p>
<pre><code>NSDictionary *dict = [NSDictionary dictionaryWithObject:[NSValue valueWithPointer:f] forKey:@"fkey"];//f, not &f. I had a typo in the OP which I fixed.
[[NSNotificationCenter defaultCenter] postNotificationName:@"notName" object:nil userInfo:[dict retain]];
</code></pre>
<p>...but the problem remains. Any chance this has to do with the typo I fixed?</p>
<p>Edit:</p>
<p>The problem continues even with changing the two lines above to</p>
<pre><code>[[NSNotificationCenter defaultCenter] postNotificationName:@"notName" object:nil userInfo:[NSDictionary dictionaryWithObject:[NSData dataWithBytes:f length:sizeof(structName)] forKey:@"fkey"]];
</code></pre>
http://stackoverflow.com/questions/1782109/msn-messenger-growl-style-alerts-in-windows-c0MSN Messenger/Growl Style Alerts in Windows C++Adam Dempsey2009-11-23T09:46:33Z2009-11-24T00:56:53Z
<p>Does anyone know of any C++ Libraries which I can easily integrate in a project to allow me to show MSN Messenger/Outlook/Growl style toast popups?</p>
<p>Tried having a look and found lots of Visual Basic controls etc but nothing for C++ so far.</p>
http://stackoverflow.com/questions/1757021/problem-with-alert-email-in-tfs-and-power-tools0problem with alert email in TFS and power toolsAFatehi2009-11-18T16:00:11Z2009-11-20T18:02:57Z
<p>Hi
I have a problem with TFS and email notifications.
I can not receive any email from TFS server for work item tracking.
I correctly have configured web.config in ...\Web Services\Services in TFS server.
and I am useing power tools for alert.
but when I set an alert to notify me for an item,any event haven't happened yet.
I have checked event viewer in TFS server but didn't have any information,Error or warning for my alert(email).if I change emailNotificationFromAddress in web.config,after Team Foundation Core Web Service Application restart a warning happenes including this message: "TF53010: The following error has occurred in a Team Foundation component or extension:
Date (UTC): 11/18/2009 1:38:59 PM
Machine: TFS
Application Domain: /LM/W3SVC/1520656728/Root/Services-6-129030251360070129
Assembly: Microsoft.TeamFoundation.Server, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a; v2.0.50727
Process Details:
Process Name: w3wp
Process Id: 5676
Thread Id: 3292
Account name: RPK\TFSService</p>
<p>Detailed Message: TF50282: Could not connect to the following e-mail server: mail.rpk.ir
Error message: System.Net.Mail.SmtpException: Mailbox unavailable. The server response was: 5.7.1 Client does not have permissions to send as this sender
at System.Net.Mail.MailCommand.CheckResponse(SmtpStatusCode statusCode, String response)
at System.Net.Mail.MailCommand.Send(SmtpConnection conn, Byte[] command, String from)
at System.Net.Mail.SmtpTransport.SendMail(MailAddress sender, MailAddressCollection recipients, String deliveryNotify, SmtpFailedRecipientException& exception)
at System.Net.Mail.SmtpClient.Send(MailMessage message)
at Microsoft.TeamFoundation.Server.WebServiceNotification.SendOneEmail(Boolean plaintext, String to)</p>
<p>For more information, see Help and Support Center at <a href="http://go.microsoft.com/fwlink/events.asp" rel="nofollow">http://go.microsoft.com/fwlink/events.asp</a>."</p>
<p>and after that,It hadn't happened any event for any alerts!
please help me.</p>
http://stackoverflow.com/questions/1333871/how-to-notify-my-js-client-without-polling2How to notify my JS client without polling? unknown (yahoo)2009-08-26T10:55:23Z2009-11-20T16:40:02Z
<p><strong>Context:</strong>
From my javascript web UI, I launch a long-running (several minutes) operation that is conducted on the .NET2.0 backend. The call returns immediately with operation ID while the long-running operation run parallel. The operations are not CPU intensive, but conduct slow network calls. Once the operation is completed, I want to see the results in the web UI.</p>
<p><strong>Question:</strong> How can I notify the client when the job is done?</p>
<p><strong>Options I have considered:</strong></p>
<p><em>Option 1</em>: I launch the long-running operation asynchronously directly from JS and I expect the return value to be the endresult instead of an operation ID. My AJAX library takes care of everything, and life looks very easy and neat. The problem is that on the server side <strong>the thread is a ThreadPool thread which I now lock up for several minutes</strong>. You do not need too many long-running parallel requests to cause the ThreadPool to starve and bring the entire server to it knees even if there is sufficient processing power. </p>
<p><em>Option 2</em>: With the operation ID, I start to poll the server if the operation is completed. However, this is a denial of service attack against my own server. Furthermore, there must be fair ajax solution to it. This is not a unique problem. </p>
http://stackoverflow.com/questions/1757415/alert-management-system-in-java-to-support-alerts-from-cross-technology-applica1"Alert Management System" in Java to support alerts from cross-technology applicationsJagmal2009-11-18T16:51:23Z2009-11-20T14:02:22Z
<p>Where Alert Management System roughly fits into this definition: <em>"A system designed to screen events, build profiles associated with the events, and send alerts based upon the profiles and events"</em></p>
<p><strong>So, the current setup is like this</strong>: There are multiple applications built in different technologies (Java, .Net, Perl, Python, VB) and they do specific kind of task (e.g. data processing in perl/python, UI in java/.Net etc and some exist because of historical reasons). These applications are inter-dependent in many cases and there are users who want to get alerts from multiple applications when certain events of interest occur.</p>
<p>Now, the question is: Is anyone aware of any effort in this direction or do we need to do it all by ourselves? Basically, we don't want to re-invent the wheel to the extent possible.</p>
<p>And preference would be to have such a framework/system/library in Java because of how things are here. But, anything good in any other technology can be looked into as well.</p>
http://stackoverflow.com/questions/1764852/where-best-to-place-alert-notifications-on-a-website0Where best to place alert/notifications on a website?Rew2009-11-19T16:59:51Z2009-11-19T17:23:17Z
<p><strong>What do I mean by alert/notification?</strong></p>
<p>Example is an instant-messaging application, on the event when a user/friend comes online, you receive an alert that they are online - this alert is what I'm talking about.</p>
<p><strong>How is this done on the desktop?</strong></p>
<p>On desktop applications pop-up alerts/notifications appear bottom-right corner on Windows and top-right on MacOS X (for me anyway).</p>
<p><strong>What makes sense for websites?</strong></p>
<p>Say you're designing an IM tool that is website-based (used within a browser). Would you replicate the alert behaviour found in operating systems like Windows, or would you do something different.</p>
<p>My thoughts are that users are most focused on the area top-left* when browsing websites, so does it make sense to display an alert bottom-right? But at the same time users are used to alert behaviour based on how their OS works, does this really matter though?</p>
<p><strong><em>Where would you place alerts on a webpage?</em></strong></p>
<blockquote>
<p>*For the majority of web users (ignoring right-to-left languages for
now).</p>
<p>Note: This isn't strictly a
programming question, and if I could
afford it, I would hire a professional
UI designer to figure this stuff out
:-)</p>
</blockquote>
http://stackoverflow.com/questions/1759686/where-can-i-find-information-about-inotifier0Where can I find information about Inotifier ?Rachel2009-11-18T22:42:20Z2009-11-19T01:37:40Z
<p>I am looking for documentation/tutorial for Inotifier as I need to implement file notification logic in PHP. </p>
http://stackoverflow.com/questions/857154/freedesktop-org-notifications-in-java0freedesktop.org notifications in javalyle.lasheimok2009-05-13T10:16:35Z2009-11-17T21:02:01Z
<p>Hi all :)</p>
<p>there's a freedesktop.org notification system using DBUS. Looks simple enough, but I just can't figure out how to use it in Java.</p>
<p>Can someone please point to some sample code to display a simple message?</p>
<p>Thank you! :)</p>
http://stackoverflow.com/questions/1738864/google-code-email-notification0Google Code email notificationlurks2009-11-15T21:19:28Z2009-11-15T22:21:14Z
<p>I have a question with regards Google Code svn repositories.</p>
<p>Is there a way no be notified by email when someone on your team does a commit ?</p>
<p>I have been looking around, but I can't find the way to activate this option (if it exists).
Thanks for any help given.</p>
http://stackoverflow.com/questions/1737431/3-notifications-instead-of-one03 notifications instead of oneEimantas2009-11-15T12:33:36Z2009-11-15T21:51:07Z
<p>I'm developing simple MVC app in Cocoa/Objective-C. I have a strange issue (or misunderstanding) with notifications and KVO.</p>
<p>I have AppController object in MainMenu.xib, hence I implement <code>awakeFromNib</code> method where I register for <code>NSImageView</code> changing its <code>image</code> property. I add <code>self</code> as an observer in the following way:</p>
<pre><code>// options:3 equals to new/old passed values in changeDictionary
[backgroundImageView addObserver:self
forKeyPath:@"image"
options:3
context:NULL];
</code></pre>
<p>The <code>backgroundImageView</code> is an <code>IBOutlet</code> in <code>AppController</code> connected to <code>NSImageView</code>.</p>
<p>In standard <code>observeValueForKeyPath:ofObject:change:context</code> method I just log the received notification.</p>
<p>Problem is - when i change the <code>image</code> value of <code>NSImageView</code> I get 3 notifications instead of one. Can you help me with this? Maybe I'm overlooking something in options or in generally registering observer?</p>
<p><strong>UPDATE</strong>: <code>backgroundImageView</code> is the instance of <code>BackgroundImageView</code> class which is sublcass of <code>NSImageView</code>. I subclassed the latter one for handling drag and drop operations as drag destination. When <code>performDragOperation:</code> is called (the last 'state' of the dragging) it changes the value for <code>image</code> property with <code>setImage</code> between <code>willChangeValueForKey</code> and <code>didChangeValueForKey</code>.</p>
http://stackoverflow.com/questions/1719140/mediaplayer-is-it-possible-to-distinguish-finish-from-done-with-mymoviefinishe0Mediaplayer: Is it possible to distinguish finish from 'Done' with myMovieFinishedCallback?Purpletoucan2009-11-12T00:46:37Z2009-11-13T12:22:03Z
<p>I am using the MediaPlayer framework to play a movie on the iPhone. There is a notification:-</p>
<pre><code>myMovieFinishedCallback
</code></pre>
<p>to capture the end of play, but there doesn't appear to be any way to distinguish between the player coming to the end of the movie, and the user pressing 'Done' to terminate mid-play.</p>
<p>Is it possible to tell the condition of the finish?</p>
<p>I have managed to create a log of all notifications sent by the player, and I have seen this and some other notification candidates, which I believe are triggered by clicking 'Done', that might be useful:-</p>
<pre><code>NSConcreteNotification 0x45534d0
{name = AVController_TimeHasJumped; object = <AVController: 0x4525620>;
userInfo = {"AVController_Time" = 31.02737777777778;
}}
</code></pre>
<p>Having managed to view the notification however, I'm not sure how I can use the log information to fire the right handling in my app. Can anyone clarify how, having managed to view it, I can exploit NSNotification information and fire events based on notices passing through?</p>
<p>Thanks in advance for any hints in this area!!</p>
http://stackoverflow.com/questions/1717580/close-previous-jgrowl-notifications-before-showing-a-new-one0close previous jGrowl notifications before showing a new one.shaiss2009-11-11T19:45:07Z2009-11-11T20:54:11Z
<p>I have a simple app that executes <code>$.jGrowl("loading");</code>. Then the data is displayed <code>$.jGrowl("blah blah blah data goes here");</code> after crunching data which can take 1 -5 seconds.</p>
<p>I've seen a <a href="http://stackoverflow.com/questions/1327527/jgrowl-how-can-i-limit-my-interface-to-one-message-at-a-time">post</a> that mentions using the default.pool to only display one message at a time. The format I want is: </p>
<ul>
<li>Show box 1</li>
<li>crunch data</li>
<li>close box 1</li>
<li>show box 2</li>
</ul>
<p>Is there a jGrowl function that can be initiated to close all notifications?</p>
<p><em>UPDATE</em><br>
according to the source example you can do the folowing<br>
<code>$('#loading').jGrowl('<img src="images/loading.gif" alt="Loading..." />');</code><br>
then call to close it<br>
<code>$('#loading').jGrowl('shutdown');</code><br>
<code> <div id="loading" class="top-right"></div> </code>
that does hide the loading growl, however it also hide subsequent notifications in that region.</p>
http://stackoverflow.com/questions/1714016/notification-when-laptop-is-switch-on-boot0Notification when laptop is switch on (boot)Khushi2009-11-11T09:19:24Z2009-11-11T10:35:55Z
<p>Hi </p>
<p>I need to know, is that possible to get a notification through email whenever my laptop is switched on or is connected to internet ?</p>
<p>An alternative is to get notification when set service 'Starts' on system boot.</p>
<p>Need C# code for this service.</p>
<p>Thanks & regards
Khushi</p>
http://stackoverflow.com/questions/1422697/find-most-recent-sql-server-database-activity0Find most recent SQL Server database activityrwmnau2009-09-14T16:48:22Z2009-11-09T15:21:29Z
<p>Data from another system is replicated into a SQL Server 2005 database in real-time (during the day, it's hundreds of transactions/second) using Goldengate. I'd like to be able to tell if there's been a transaction recently, which will tell me if replication is currently happening. Even in the off-hours, I can expect a transaction every few minutes, though I won't know which of the 400 tables it will go into.</p>
<p>Here's my current process:</p>
<ol>
<li>IUD trigger on most popular replicated table</li>
<li>Updates date in "Sync Notification" table every time there's any activity on that table</li>
<li>SQL Agent job runs every few minutes and compares this date with GETDATE(). If it's been too long, it emails me.</li>
</ol>
<p>This works for the most part, but I get false positives if there's activity in other tables, but not the monitored one, which can happen overnight.</p>
<p>Any other suggestions short of adding this same trigger to every table in the database? If I do add the triggers, how to I prevent deadlocks and contention on the "Sync notification" table? Since I don't care about the most recent date being exact during high-contention periods, is there a way I can have SQL try to update the date but just skip it if some other process has locked it?</p>
<p>The only "application-level" choice I have is to TELNET to the Goldengate monitor and ask for the replica lag, then screen scrape the results. I'm open to that, but I'd like to do something SQL-side if it's more feasible.</p>
http://stackoverflow.com/questions/1460304/problem-registering-push-notifications-help0Problem registering Push Notifications. HELP!!!unknown (google)2009-09-22T14:03:18Z2009-11-07T11:04:56Z
<p>Hello, I've recently started developing iphone applications for a project at school and I've been having some problems testing push notifications. I've read I need to get some SSL certificate from the program portal, but I cannot find the link AppID where I am supposed to get them. Is it really necesary even though I am just starting out making some tests in XCode? What else do I need to run push notifications?
I've started coding the client side, but I cannot register for remote notifications. (I run registerForRemoteNotificationTypes:..., but it cannot register) I think it is because I don´t have the certificates, but I really don´t know.</p>
<p>Thanks!!</p>