Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
4answers
339 views

showing a status message in R

I'd like to write a function that presents to the user a status message that shows something like the time, the percent complete, and the current status of a process. I can handle assembling the ...
16
votes
8answers
12k views

How to show the “Are you sure you want to navigate away from this page?” when changes committed?

Here in stackoverflow, if you started to make changes then you attempt to navigate away from the page, a javascript confirm button shows up and asks: "Are you sure you want to navigate away from this ...
15
votes
11answers
1k views

Cheapest way to send SMS for number verification? [closed]

My application needs to verify phone numbers that are provided by the user. What is the absolute cheapest way to send an SMS to a phone? Which company/API should I go to? I'm not looking for a hack ...
13
votes
7answers
22k views

Getting rid of “There is no source code available for the current location”

Ok, this is my own fault, but I can't seem to rescue myself. Whenever I try to step into a class that has fields with assignments calling into .NET code, I get a dialog box that contains this text: ...
10
votes
5answers
3k views

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 ...
9
votes
7answers
5k views

Read from .msg files

I need to read from Outlook .MSG file in .NET without using COM API for Outlook (cos it will not be installed on the machines that my app will run). Are there any free 3rd party libraries to do that? ...
8
votes
4answers
8k views

C# - Sending messages to Google Chrome from C# application

I've been searching around, and I haven't found how I would do this from C#. I was wanting to make it so I could tell Google Chrome to go Forward, Back, Open New Tab, Close Tab, Open New Window, and ...
7
votes
2answers
3k views

ZeroMQ / ØMQ / 0MQ how to get started?

I am trying to use ZeroMQ / ØMQ / 0MQ (which ever you prefer) on Windows using C# Binding. Is there any beginner materials out there? Do I need to register ZeroMQ DLL on Windows or something in order ...
7
votes
4answers
1k views

Message Queues Vs DB Table Queue via CRON

We have a large project coming up soon with quite a lot of media processing (Images, Video) as well email output etc, the sort of stuff normally we'd put into a table called "email_queue" and we use a ...
7
votes
4answers
3k views

WCF message security without certificate and windows auth

I have a WCF service and client which is going to be deployed to several companies (hundreds). Some companies will run the software in their network and some will run it over the Internet (WCF server ...
7
votes
2answers
2k views

How to disable warning in xcode on specific line?

I've got a call like this [Class method] and a warning saying that Class may not respond to "method" message. The "method" message does not indeed exist but my code use unknown message catching ...
6
votes
2answers
176 views

Why isn't my TFrame “seeing” a posted message?

I just recently begun using TFrames heavily (OK, yes, I've been living under a rock...). I thought frames supported Message hander method declaration--and I've seen many examples of that. So why does ...
6
votes
2answers
176 views

Git to svn: Adding commit date to log messages

How should I do to have the author (or committer) name/date added to the log message when "dcommitting" to svn? For example, if the log message in Git is: This is a nice modif I'd like to have the ...
6
votes
1answer
6k views

Best Way to send message to thread c# .net (inter-thread communication)

What is the most efficient and fastest way to send message to a thread(not process) that run in while(1) loop in c#/.net : 1) Using a synchronized queue (such in ...
5
votes
1answer
196 views

Python3: Send email message containing binary data?

The following fails: >>> a = email.message.Message() >>> a.set_payload(b'some data') >>> a.as_string() TypeError: string payload expected: <class 'bytes'> It also ...
5
votes
2answers
868 views

JSF 2.0 custom messages

I'm using JSF 2.0. I'm using the <h:messages> tag to render error messages. I can use css to style my messages a little bit but I've create a composite component to render messages that can ...
5
votes
1answer
370 views

MessageDigest SHA-512 different than openssl

I can't figure out what I'm doing wrong here. I have the following code: byte[] digest = new byte[0]; MessageDigest md = null; try{ md = MessageDigest.getInstance( "SHA-512" ); } catch( ...
5
votes
4answers
203 views

Repository Commit Msg Etiquette

I've never had the chance to work with a team on a repo, so I'm wondering if there is a proper way to document your changes. For example, maybe add a tag(s) such as: bugfix, update, implement? Just ...
5
votes
3answers
807 views

Javascript: Div Only display once

So i want to do look a like stackoverflow with the message at the top. Now i have all configured and such, but i got one problem.. The message only displays 1st time, second time it doesnt appear. ...
5
votes
1answer
1k views

Read WCF Message body twice - “Message Cannot be read”

I have a WCF Message (Channels.Message) which i'm trying to extract the body using .GetBody(). however, i notice that i can do it only once, and if i'm trying to use "GetBody<>" again, i'm getting ...
5
votes
2answers
477 views

Ready-made forum, chat, and PM solutions for Django

On my Django site I would like users to communicate with each other in several ways: Forum Private messages Chat with rooms and saved history Could you suggest me ready solutions for this? ...
5
votes
2answers
1k views

How to change boilerplate “Sent from my iPhone” text in MFMailViewController message body?

I'm using the MFMailComposeViewController to send an email from within an iPhone v3.0 application. I programmatically create the message body text and display it before showing the picker. At the ...
5
votes
4answers
566 views

How can my app find the sender of a windows message?

I have an app which uses a keyboard hook procedure in a library. The wParam in the hook for one message is 255 which we think is "(reserved / OEMClear)". I'd like to work out the source of this ...
4
votes
3answers
50 views

Guidelines for writing the Changes Message in Version Control systems?

Are there any rules of thumb or guidelines for how to write the changes message of version control systems? An obvious answer may seem a brief description of the most important changes but in reality ...
4
votes
1answer
113 views

Assert won't display the error message

I'm having a weird problem with assert in Visual C++ 2005. I've tried to introduce asserts into my program and no matter what asserts I try to use (assert() or BOOST_ASSERT_MSG) it gives the exact ...
4
votes
1answer
253 views

R problem : closing unused connection + readline

getCommentary=function(){ Commentary=readLines(file("C:\\Commentary\\com.txt")) return(Commentary) close(readLines) closeAllConnections() } I have no idea what is wrong with this ...
4
votes
1answer
321 views

WCF tracing & message logging - trace level warning

Assume I have a config file which looks like this: ... <system.diagnostics> <sources> <source name="System.ServiceModel" ...
4
votes
2answers
225 views

What ways can I send data from a plugin across an app domain that triggers an event in the main application in C#?

I have a main application that loads up some plugins. These plugins are loaded and run in separate app domains using a class that inherits from "MarshalByRefObject"; This all works fine. What I need ...
4
votes
1answer
602 views

Usage of this next_combination code

Currently I am trying to generate combinations from a vector that contains some integers. For now I want it to print out all of the combinations that are of length to_generate. I found this code at ...
4
votes
2answers
178 views

Closing a Task Tray app

I have a set of server apps that run in the task tray. I'm trying to write a little server management app in c# that can gracefully close the applications. However I'm having trouble figuring out ...
4
votes
2answers
185 views

What does |5E| mean in Common Lisp?

I got following error message in Common Lisp. What does || mean in CL? CL-USER> (write-to-string 5e) The variable |5E| is unbound. [Condition of type UNBOUND-VARIABLE]
4
votes
2answers
377 views

Z_Form :: Adding a custom error message to zend_form inside Action Controller

I'm new to ZF and I'm discovering how to use Zend_Form and utilize it's capability like validating and filtering input values. I already know the basic of Zend_form like building a form and add ...
4
votes
4answers
407 views

Is multiple-producer, single-consumer possible in a lockfree setting?

I have a bunch of threads that are doing lots of communication with each other. I would prefer this be lock free. For each thread, I want to have a mailbox, where other threads can send it messages, ...
4
votes
3answers
1k views

Integrate postfix mail into my (python)webapp

I have a postfix server listening and receiving all emails received at mywebsite.com Now I want to show these postfix emails in a customized interface and that too for each user To be clear, all the ...
3
votes
3answers
147 views

How can I close an app without a modal dialog box being shown?

I have an app that can optionally open PDF's after it creates them. If two reports are generated in succession with the same name, the second attempt fails if the first copy of acrobat still has the ...
3
votes
1answer
34 views

Response message: Composite message or optional fields

We are working with a set of web services and we're looking for the best option to return errors to the web service's consumer. This is the current response: Response Some data about the server ...
3
votes
2answers
99 views

In cocoa (or generally in objective C) is there a way to send a message to objects in another process?

Let's say I have two Cocoa apps running on the same machine (OSX). Is there a way to send "objective c" messages from one to objects in the other one? These two apps need to remain independent, so ...
3
votes
2answers
43 views

Android : Taking backup for media and messaging?

What is the procedure to take backup of media and messaging? Is there any possible to do this. Anyone help me please.
3
votes
3answers
825 views

Git commit with no commit message

How can I commit changes without specifying commit message? Why is it required by default?
3
votes
1answer
65 views

Taiwanese looking PHP error message

There was a PHP error message I came across a while ago, it looked taiwanese, all caps, two words. i can't remember how i got the error message which is why I cant find it again but I was talking to ...
3
votes
2answers
768 views

How can I track down these Firefox warning messages?

Since I upgraded to jQuery 1.4.4 I've been getting several new warning messages when I run my unit tests in Firefox 3.6.13. Here's a typical one: Warning: Unexpected token in attribute selector: '!'. ...
3
votes
2answers
240 views

WCF Inspect Messages

I'm trying to implement a simple message inspector that writes the message to the debug window from an example on MSDN: public class MyMessageInspector : IDispatchMessageInspector { public object ...
3
votes
3answers
143 views

How To Queue Work To Be Done By The Server ASP.NET

So, I am looking for the best way to do the following: Basically we have a CSV uploader where users can upload a CSV file filled with address, city, state, zipcode. The CSV files can be hundreds, ...
3
votes
1answer
354 views

Does anyone use a CLOUD Message queue service?

I am looking for a case study of companies that use Cloud message queueing. What are the benefits of such a service over rabbitmq (if any) I know there are several mature services like SQS of amazon, ...
3
votes
2answers
301 views

About the PeekMessage in c++

PeekMessage(&msg, NULL, 0, 0, PM_REMOVE) If hWnd is NULL, PeekMessage retrieves messages for any window that belongs to the current thread, and any messages on the current thread's ...
3
votes
1answer
117 views

Showing auth_message's

After installing django_message I noticed django has a nice little notification system build-in (Being: Auth_message). I was wondering how can I show them to users? They only appear in the admin panel ...
3
votes
2answers
391 views

Win32: My Application freezes while the user resizes the window

I write a win32 application. I implemented the message loop myself like this: bool programcontinue = true; while(programcontinue) { while (PeekMessage(&Msg, NULL, 0, ...
3
votes
3answers
453 views

Define own WM message for Message Pump in C++

How do I define my own WM (like WM_CLOSE, etc) message that can be handled by the message pump in C++? If that is even possible.
3
votes
1answer
132 views

Passing message over network

I'm currently trying to develop a message-oriented networking framework and I'm a bit stuck on the internal mechanism. Here are the problematic interfaces : public interface IMessage { } public ...
3
votes
5answers
2k views

Unlimited SMS API/Gateway (Sending and Receiving)

I am creating a chat application which requires that users be able to send and receive sms messages through a web interface. It would be somewhat similar to the text messaging service available in ...

1 2 3 4 5 14