The continuous tag has no wiki summary.
0
votes
2answers
67 views
Continuous Loop is Not Working - Python
I am a beginner at python however I have used other languages and I wrote this simple program that should be a continuous loop.
The program should display and count to 360 and then start back at 0. I ...
0
votes
1answer
18 views
AFNetworking url request every 20 sec
I want to download some information from url every 20 seconds and update view based on that info (2-3 labels change text values). I'm using AFNetworking for making request operations in my app.
...
0
votes
1answer
13 views
MS Unit Continuous Integration with TFS
I'm tasked with creating a Continuous Integration build for our project with TFS, and one of the requirements is to create unit test continuous integration with MS Unit. How can I set up TFS to use ...
1
vote
1answer
46 views
Continuous deployment to Azure from TFS 2012 Update 2
I am not using TFS Service (Preview/Online). I am running TFS 2012 Update 2 on-site and trying to deploy an Azure Service that contains a web and worker role. I'm also using Azure SDK 2.0.
I have ...
2
votes
2answers
66 views
How to execute the next click only when previous click finish?
My HTML:
<div>
<p>Testing Paragraph</p>
<span>Testing Span</span>
<div class="content">This is the main content of this div</div>
</div>
...
-1
votes
4answers
59 views
Check for continuous order in array in javascript
var userInput = prompt('enter number here');
var number = new Array(userInput.toString().split(''));
if (number ????){ //checks if the number is in a continuous stream
alert(correct);
}
else{
...
0
votes
1answer
46 views
how to request server without continuous connection
i use web service to exchange data betwen c# client and php server to check data change. But i must request continus to hosting but if i do that the server will be overload.
WebClient cGet = new ...
-1
votes
1answer
43 views
php do something with interval [closed]
i have a form, say like this :
<form name="form1" action="" method="post">
<input type="text" name="tfcari" />
<input type="submit" name="btcari" />
</form>
<?php
if ...
0
votes
1answer
66 views
HLA High Level Assembly Continuous Loop
The problem wants to loop through a decimal from input until the only number left is one. However, once first loop reaches 0 it should beging looping again from first digit minus 1 like this,
Input ...
1
vote
1answer
95 views
python return lists of continuous integers from list
I have a list of integers, and I want to generate a list containing a list of all the continuous integers.
#I have:
full_list = [0,1,2,3,10,11,12,59]
#I want:
continuous_integers = [[0,1,2,3], ...
-2
votes
1answer
92 views
How to enter space between a continuous string array in PHP using array functions? [closed]
Suppose I have a string "stackoverflowdescription" and i have converted into array using str_split, now a want to put space in between each word say "stack over flow description" using array and ...
0
votes
2answers
138 views
NMAP continuous ping
I need to implement a code which is able to send ping packets each second toward a certain amount of destinations. The problem is that I'd like to ping as much destinations as possible inside 1 second ...
0
votes
0answers
84 views
R Perform Morlet Countinuous wavelet transform on a rolling window
R Perform Morlet Countinuous wavelet transform on a rolling window
I have a time series with 273 points. Would like to apply Morlet Countinuous wavelet transform function (package dplR) rolling ...
0
votes
1answer
204 views
Unable to write continuous Net::Ping output to a log file with my below code
I have written following code to log ping RTT with timestamp for a server continuously. Script is working file at command line But my pain the log file Ping_10.112.114.11.txt is empty for which I see ...
0
votes
1answer
244 views
quartz scheduler jobs running continuously ignoring the cron schedule
I am using spring 3.0.6 with quartz 2.1.6 with oracle db in cluster mode, I am using all the quartz apis as I faced issues with spring supported quartz api.
I had some dependencies in my job class ...
3
votes
1answer
623 views
Animate bubbles upwards continuously with CSS3?
See the following image:
http://i.imgur.com/3vTrB.png
See those transparent circles in the background? What i want to do is make them animate from the bottom up, and then manually jump down (off ...
-1
votes
1answer
54 views
How to continuously get input from MouseListener? [closed]
In my program I need to get continuous information on the position of the mouse while one of the mouse buttons is being held.
It's for a Panning feature for my camera.
Thank you for your help!
0
votes
1answer
30 views
how to find ranges in continuous values for use in building decision tree
I am building a decision tree that uses fields with continuous values (doubles).
how should I create the range nodes to build the tree with (finding the best ranges values)
0
votes
1answer
45 views
How to add OLEDB provider to continuous integration build on tfs?
every time I start a build on TFS I get a error message that the OLEDB provider is missing on the local machine:
Test method BookLibrary.UnitTest.DatabaseCommunicationTest.AddBookTest threw ...
3
votes
4answers
191 views
Call perl script from python constantly returning values
I found a thread on this site which showed me how to call a perl script from python. I'm currently using the following lines of code to achieve this:
pipe = subprocess.Popen(["perl", ...
0
votes
3answers
168 views
Jenkins Build failed after restarting Tomcat
I set up an ant project and successfully built a project.
Started by user anonymous
Building in workspace /home/myusername/jenkins/workspace/ctascweb
[ctascweb] $ cvs -q -z3 update -PdC -r ...
2
votes
1answer
289 views
I'd like to make a countdown timer do a continuous loop in android - need opinions on how to do it
Is there a way to continuously loop through a countdown timer? I have a basic timer of going though 60 seconds, then updating a text field and it's working, but I want to add the functionality: when ...
0
votes
2answers
126 views
jQuery Continuous Rotator Multiple Elements at Once
I've got this code and it works great to fade in and out one div at a time. I need to fade out two divs at a time, and replace them with the next two.
$(function() {
// Set first div to show
...
1
vote
4answers
73 views
Need a way of continuously looping/iterating around a Map
I am building a game in java and I have a 'Map' of Player objects. I have a method called endOfTurn which is called when the player wants to finish their turn, It sets the 'currentPlayerTurn' field to ...
1
vote
1answer
52 views
Create a model that switches between two different states using Temporal Logic?
Im trying to design a model that can manage different requests for different water sources.
Platform : MAC OSX, using latest Python with TuLip module installed.
For example,
Definitions :
Two water ...
2
votes
0answers
38 views
CruiseControl unable to recognize modifications for Mercurial repository
I am trying to implement a continuous build stack, and decided to use CruiseControl with Ant. However, it seems that CruiseControl is having problem picking up the changes from my Mercurial directory. ...
1
vote
2answers
260 views
continuously loop through PHP array (or object keys)
I have a series of object keys:
$this->rules->days->mon = isset($this->recurring_event_data['post_ar'][$this->rules->type]['mon']) ? true : false;
...
-1
votes
2answers
83 views
Creating an unbounded number of objects in Python 2.7.3 [closed]
I have started to make an artificial life simulator in Python 2.7.3 but I am unable to create classes at runtime, continuously. I know that I can do this in C++ by storing the class in a list. Does ...
0
votes
1answer
186 views
QtCreator continuously saves .pro.user file inside a project
I'm experiencing an annoying behavior of QtCreator: when a project is open, QtCreator keeps saving the project's .pro.user file over and over, about every 10 seconds. Given that my projects are under ...
0
votes
1answer
103 views
How to pause a continuous slide animation without a delay in resuming the animation?
I'm starting my jQuery studies. I am having difficulties making a continuous slide animation, with images of some clients passing by the screen. Everything is good until I try to PAUSE the function ...
2
votes
1answer
128 views
continuous testing with gradle
Is there a plugin or some nice way to make gradle compile and test my application in the background?
I know there are some plugins for intellij and eclipse(infinitest amongst others), but I am ...
0
votes
0answers
64 views
Transforming a Continuous Function
Is there a way to transform a continuous function into a discrete one?
In essence I have a normalized Gaussian distribution defined here:
http://s12.postimage.org/9fxk3f1rf/Screenshot_1.png
I am ...
0
votes
0answers
25 views
Jenkins Continuous Integration System refuses to start
When I attempt to start Jenkins using Apache services it says started but as soon as I refresh it, it shows it as not running. I downloaded TCPView and found that when I start it a process called ...
0
votes
1answer
200 views
IOS - box2d continuous moving
I would like to create an object which is continuously moving.
Means, there is a force initiated only one time and that object should still be able to listen to collision events.
var world = ...
2
votes
1answer
591 views
joining two Bézier curves smoothly (C2 continuous)
(Follow-up of this question.)
Given a sequence of cubic Bézier curves, how can I modify them minimally to make them join in a C2-continuous way?
Input:
curve P with control points P0, P1, P2, P3
...
0
votes
1answer
173 views
FOCUS_MODE_CONTINUOUS_VIDEO with my private class AutoFocusCallback
I have a problem, I'm making an application using the camera and need to know when the autofocus is activated. Use the setFocusMode (Camera.Parameters.FOCUS_MODE_CONTINUOUS_VIDEO) and I created a ...
1
vote
1answer
67 views
continous query in postgresql
I have a spatio-temporal database in Postgresql that is continuously updates. I was wondering if there is a technique for continuous query in this database? for example I have temperature data that ...
0
votes
0answers
398 views
Drawing a continuous straight/sine wave in Visual C++
The problem is is not drawing a line or a sine. I have written the code for that(see below ) but once the line reaches the end of the picture box it stops. I want it to continue drawing and maybe have ...
1
vote
1answer
1k views
JS counter continuously updating
How to implement a live and persistent number counter on a site
So I was looking at this question (^) and I want to do the exact same thing except a little different.
I need one of these that counts ...
-1
votes
1answer
51 views
how to i loop the script so i can keep entering my options without an error on python
print'Personal information, journal and more to come'
x = raw_input()
if x ==("personal information"):
print' Edward , Height: 5,10 , EYES: brown , STATE: IL TOWN: , SS:'
if x ==("journal"):
read ...
0
votes
3answers
245 views
Continuously check for data (method) iOS
Is there any method (like – viewDidLoad) to continuously execute a part of code? I need to be able to check a value on a remote server continuously.
0
votes
1answer
122 views
How to play the next video after the first video had finish for IOS5 application/ NOT LOADING WEB VIDEO
So how do you play a video straight after one video finishes playing on iphone. I put this
NSString *filepath = [[NSBundle mainBundle] pathForResource:@"movie" ofType:@"m4v"];
NSURL ...
1
vote
3answers
1k views
Creating a continuous heat map in R
I have a series of x and y coordinates that each have a distance attached to them. I would like to create a heat map that displays the average distance for every point within the x and y ranges as a ...
1
vote
0answers
96 views
How to automate NUnit tests in an ASP.NET website project?
I have a client who has a large existing application written in ASP.NET, which is setup as a website project in Visual Web Developer 2010 Express.
I have been asked to demonstrate how to write unit ...
0
votes
0answers
64 views
Continuos collision detection
I am working on a game which contains a ball rolling on a floor and reflects when it collides with barriers. When the ball hits an object(barrier) it reflects as it should(the speed of the ball is ...
0
votes
0answers
166 views
Continuous Integration / Automated Deployment Tool for CodeIgniter App [closed]
First, let me say I am NOT a developer but need assistance in being able to offer a solution to our development team, I am technically the "product owner" looking for a better way to get our SaaS app ...
3
votes
1answer
50 views
Continuous Integration - how to add a bugfix to a live build?
We are in the process of implementing continuous integration in our organisation, and one of the questions that arose is how to fix a bug in the live build.
Do we simply add the fix into the ...
0
votes
0answers
77 views
Repeated page load when redirected
I'd like to present a modal window on page load with a language select option: use English, or use other language. If the user select English, the modal window disappears, if the user select the other ...
0
votes
2answers
1k views
jQuery + slider plugin: fixed-width continuous slider with varied-width images
I have a with a set of images, all of which are the same height but different width. I need the to stay at a fixed width, and I need the images to slide to the left in an infinite loop. I also need ...
1
vote
1answer
1k views
Primefaces and circular Carousel
I'm using Primefaces 3.2 with Tomcat 7.0.23 and JSF 2.0
i'm using the component.
<p:carousel id="aCarousel" value="#{BBCarousel.carouselItems}" var="carouselItem"
...
