notifications

TFS: Email diffs

Eric suggests that you read your team's diffs every morning. Can I get TFS to automate this in some way? Ideally I'd like an email with all of the differences in, but I'd settle for a link to each of the commits. ...

Notifications on a website

I am looking for different ways of how to display notifications. I was looking at the way Palms webOS does it and woundered if any one had done it like they did it but for a website. What do you think is the best way to display notifications? Edit: The notifications will be stuff like "you got a new mail", "you have an appointment" etc...

event notifications not received as described

Problem: Event notifications (From COM object - Server) are not received as listed in the Sink (class) implementation. One event notification is received (Event_one), however, others are not received accordingly If order is changed - in IDispatch::Invoke, that is: if Event_one is swapped to Event_two then Event_two notification rece...

git push email notification

How do I configure the appropriate git hook to send a summary email whenever a set of changes is pushed to the upstream repository? ...

Zenoss trap issue

We are having an issue getting Zenoss to return a 'clear' notification on 'linkUp' traps. We know that the trap is being sent to Zenoss. ...

SQL Alert when stored procedure executes for too long

I would like to set up a SQL Server 2008 Alert to notify me when any procedure executes for 1 second or longer (just an example). Any ideas? EDIT: Okay, it seems this is not possible. But, just to nudge you in another direction, I know that there are statistics tables in the master database which hold compilation counts, number of cal...

How to get users to pay attention to problems?

We occasionally need to notify users about warnings or problems. But often times, especially if it's a common problem, users will just dismiss the warning and continue. Often times users won't even remember seeing the warning, but we check their logs and see that several were displayed. So, how do you get users to pay attention when you'...

"Speech bubble" notifications

I'm trying to get a notification to pop up something like these bubbles in an MFC application: I'm currently making an interface mockup in C# to show some stakeholders, so it would be nice to have it there too. It doesn't necessarily have to be speech-bubble-esque: it could be something like a tooltip - but it does have to appear w...

Silverlight and push notifications

I am creating a Silverlight 2 user interface to a remote instrument. There are two concurrent users at different sites interacting with the instrument (operator at the instrument and remote scientist) and any number of observer users not interacting with it, just watching. However, whenever one of the two active users changes something t...

Tools for receiving build notifications in Skype group chat

My team uses skype group chat, and I would love to have a tool that could post notifications to our group chat. I would like to avoid relying on an RSS feed, but it may come down to that. But even that it seems hard to find -- there seems to have been a tool called Anothr that perhaps went out of existence. I would also prefer to not ...

Emulating the Vista notification icon dialog boxes with WPF

When single-clicking a notification icon in Vista (such as the network or sound icons) you are presented with a bordered yet captionless dialog (http://i.msdn.microsoft.com/Aa511448.NotificationArea22(en-us,MSDN.10).png): How can I emulate these in WPF? Creating a new window and setting WindowStyle to "None" and ResizeMode to "CanRes...

How do I notify a process of an SQLite database change done in a different process?

Let's say I have two or more processes dealing with an SQLite database - a "player" process and many "editor" processes. The "player" process reads the database and updates a view - in my case it would be a waveform being mixed to the soundcard depending on events stored in the database. An "editor" process is any editor for that data...

Use RegisterDeviceNotification() for ALL USB devices.

I currently have some code that sets up notifications of connected USB HID devices within a Windows Service (written in C++). The code is as follows: GUID hidGuid; HidD_GetHidGuid(&hidGuid); DEV_BROADCAST_DEVICEINTERFACE NotificationFilter; ZeroMemory(&NotificationFilter, sizeof(NotificationFilter)); NotificationFilter....

How can I know the address of owner object in C++?

Hi, I would like to create in C++ a Notifier class that I will use in other objects to notify various holders when the object gets destroyed. template <class Owner> class Notifier<Owner> { public: Notifier(Owner* owner); ~Notifier(); // Notifies the owner that an object is destroyed }; class Owner; class Owned { public: Owned(...

Drupal Notifications - Users receiving duplicate emails

We are using Drupal (5.x) Notifications module. Our users are receiving duplicate emails (related to forum posts) First email has this subject line: "Your Daily xyz Discussion Digest" Second email has this subject line: "xyz subscription update for UserABC" Content is somewhat similar. (formatting is different). Tried to google for...

How do i enable sms notifications in my web app?

I have a web application which i want to enable real time sms notifications to users of the applications. I would like to know how to go about this. Note: i can not use twitter API because i live in west africa, and twitter doesnt send sms to my country Also email2sms is not an option because the movile operators dont allow that in my co...

WPF / WCF Push Notification

Does .NET 3.5 (WCF, or other) offer any type of push notification service? ME: I have a server and a client. I want a service to run on the server and if x happens then push a notification to the client. I don't want to pull the server every x minutes to gather the information. – Jeremy H (23 hours ago) Kent: Yep, look at WCF callbac...

Looking for a real-time IMAP notification of new Emails

I'm looking for a way to monitor a GMail inbox for new e-mails. However, I want to avoid checking every few minutes and I'm looking for some sort of real-time notification. I've noticed that Outlook (and other IMAP-supporting clients) instantly show when there is a new e-mail, but unfortunately all .NET IMAP libraries seem to lack this f...

Non-Modal Notification Box from batch script

I would like to have a non-modal alert box called form a batch file. Currently I am using vbscript to create a modal alert box: >usermessage.vbs ECHO WScript.Echo^( "Generating report - this may take a moment." ^) WSCRIPT.EXE usermessage.vbs But I would like to proceed with the script (generating the report) without waiting for user ...

Rails Notification Message plugin?

I am about to code something for a Rails app of mine and didn't want to reinvent the wheel, hence my question: Do you guys know any Rails Plugin that would allow an application to display notification messages that could be user specific and also allow the user to mark them as "don't show this again"? My vision is to display a top div ...