Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
2answers
2k views

Idiomatic jQuery delayed event (only after a short pause in typing)? (e.g. timewatch/typewatch/keywatch)

Here is some jQuery for a search box that I expect is actually an antipattern, and am sure there is a much better solution for that I would love to be pointed towards: I will describe it in comments ...
3
votes
3answers
3k views

display data after every 10 seconds in Android

I have to display some data after every 10 seconds. Can anyone tell me how to do that?
3
votes
1answer
575 views

Delay rendering of a custom control in WPF

I have a WPF custom control that sometimes takes a while to render in some complex scenarios. I would like to be able to tell my custom control to show a placeholder image (e.g. "Please wait - ...
3
votes
0answers
277 views

POST response taking too long

Client side Ajax Javascript code is using XMLHttpRequest to send a POST request, but I'm getting like a 0.5 second delay in getting the response and I'm trying to find out why, since I'd like it to be ...
3
votes
5answers
1k views

(MS-DOS) Time Delays

I came past a few ways to cause a time delay such as pings and dirs. Though none of them are really precise, is there anny proper way to cause a time delay? I heard about a few things though they ...
2
votes
1answer
196 views

Django action after file upload

We have an extensive existing codebase and we've added load-balanced servers with a single master server to the equation now. There are various apps that contain models with uploaded files and images ...
2
votes
3answers
731 views

INSERT LOW_PRIORITY or INSERT DELAYED in Hibernate

How do I do a low_priority or delayed insert into a MySQL table with Hibernate? In my logging routine I want to insert the log info to a table in my database for further analysis. But I don't care ...
1
vote
1answer
167 views

How to fix a delayed declaration in UxTheme

In Delphi XE UxTheme unit there is the following declaration function DrawThemeTextEx(hTheme: HTHEME; hdc: HDC; iPartId: Integer; iStateId: Integer; pszText: LPCWSTR; cchText: Integer; ...
1
vote
5answers
478 views

How to cancel multiple delayed performSelector calls

I have to stop the call in the fenumeration. NSTimeInterval delay = 2; for (NSString* sentence in sentences) { [sentenceHandler performSelector:@selector(parseSentence:) ...
1
vote
3answers
45 views

How to return the result of dialog window work in the moment of its closing?

Everyone knows the MessageBox.Show() method, that returns DialogResult value after dialog closed. How can I implement such a method in my dialog class? class MyDialog : Form { public static ...
1
vote
1answer
258 views

How to stop sending email in php?

I have a list of email addresses, which I tested that they are invalid, not exists. But my mail server still keep trying to send email to them. Is there any way to stop sending email to the ...
1
vote
8answers
3k views

C# delayed function calls

Is there a nice simple method of delaying a function call whilst letting the thread continue executing? e.g. public void foo() { // Do stuff! // Delayed call to bar() after x number of ms ...
0
votes
0answers
28 views

Rails delayed_job rake script to smartly send mails / do stuff x days after user signed up?

I would like to create a rake task that can be Launched with crontab (under linux) This rake task should look for the created_at field in my Users table, after x days I then want to send a mail with ...
0
votes
0answers
129 views

Jquery slideToggle delayed hold on hover over div

I have a div "utility-nav1" which will slide down when I hover over the div "u1_cart". It works with the code below but I want the slide back to stop if the user is hovering over the opten div ...
0
votes
1answer
221 views

Can't get Isotope JS to work off the the height and width values of each image

I'm using the Isotope JS sort and arrange images and it's working fine apart from when the page loads the script doesn't run until all the images have loaded. On the Isotope JS help page it states ...
0
votes
2answers
127 views

On Hover, Delayed Toggle Sequence

everyone! I'm not very good with JS/JQuery, so I need some help here... I have a page both vertically and horizontally centered. In this page I have a series of concentric circles, with a button in ...
0
votes
1answer
155 views

Calling a function delayed in objective-c without a 2nd thread

I want to call a function, that is sending a sentence, delayed, in order to simulate a stream of data. The data is stored in a textfile. Each line of the textfile contains one sentence. I tried to get ...
0
votes
1answer
167 views

Poor FTP Performance due to delayed Ack : Solutions exist for Android?

i have a Problem using FTP connection on Android 2.2 devices. My app uses AndFTP via intent and loads data from a FTP Server connected via Wifi to the handset. The FTP downloadspeed is only ...
0
votes
2answers
504 views

Custom jQuery Delayed Callback

I am playing with extending jQuery with a function that has two params: a callback function and a timeout. I'm on pre 1.4 so I don't have the .delay() built-in, but even that isn't really what I want. ...
0
votes
2answers
274 views

Drupal Ajax data retrieval delayed

I have a simple click function with the code below, but I can't seem to get the data on the first click. $.ajax({ type: 'POST', url: 'test/get/1', success: function (result) { testit = result; ...
0
votes
2answers
1k views

Rails: using “content_for” after the corresponding “yield” inside layout

I think this has been asked before but even though I searched Google I haven't come up with a solution. So this is what I'm trying to do in Rails 2.3.5: layouts/application.html.erb: <html> ...
0
votes
1answer
231 views

DirectShow Capture with delayed play

I'm developing a custom video capture application. The idea is to capture output from a webcam, and simultaneously display a delayed preview. For instance if a user specifies a delay of 5 minutes, ...
-2
votes
2answers
42 views

How to write `performSelectorInBackground: afterDelay:` in one line of code?

There are methods performSelectorInBackground: and performSelector: afterDelay: in NSObject. How to combine them in one line of code? Maybe somehow with NSTimer?