The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
6answers
612 views

Identify groups of continuous numbers in a list

I'd like to identify groups of continuous numbers in a list, so that: myfunc([2, 3, 4, 5, 12, 13, 14, 15, 16, 17, 20]) returns: [(2,5), (12,17), 20] And was wondering what the best way to do ...
6
votes
1answer
110 views

Need opinions on LaTeX and ever upgrading

I've been using LaTeX since 2005 with the TeXLive distribution and I've been upgrading as each new TeXLive distribution comes out. In the recent years I noticed an increase in new packages, updated ...
5
votes
3answers
770 views

How to draw a continuous curved line from 3 given points at a time

I am trying to draw a continuous curved line in flash. There are many methods but none of the ones I have found so far quite fit my requirements. First of all, I want to use the flash graphic api's ...
4
votes
2answers
204 views

Best way to fetch the continuous list with PostgreSQL in web

I am making API over HTTP that fetches large rows from PostgreSQL with pagination. In ordinary cases, I usually implement paginations like this through naive OFFET/LIMIT clause. However, there are ...
4
votes
3answers
437 views

Continous loop and exiting in python

I have a script that runs continuously when invoked and every 5 minutes checks my gmail inbox. To get it to run every 5 minutes I am using the time.sleep() function. However I would like user to end ...
4
votes
3answers
433 views

Continuous Performance Monitoring of .NET Applications in Production?

Given a relatively typical .NET 4 system in an SOA environment (i.e. Windows Server 2008 R2, RESTful Web Services on IIS 7, Windows Services for NServiceBus messaging, SQL Server 2008 R2, etc) what ...
4
votes
5answers
129 views

java virtual machine - how does it allocate resources?

I am testing the performance of a data streaming system that supports continuous queries. This is how it works: - There is a polling service which sends data to my system. - As data passes into the ...
4
votes
5answers
264 views

Append to a webpage in javascript

What I want to do is that: a webpage with continuously updating content. (In my case is updating every 2s) New content is appended to the old one instead of overwriting. Here is the code I have: var ...
3
votes
2answers
54 views

Is there “continuous” versioning?

Is there any revision control/subversioning system out there that allows you/ a group to check out the latest version, and then collaboratively work on it simultaneously? I am thinking something ...
3
votes
2answers
145 views

Cruise Control on a Virtual Machine

Any downside to using Cruise Control on a virtual machine? My build system is shaping up to look like Machine 1: Source Control Repository and Server Machine 2: Will host a virtual machine. This ...
3
votes
2answers
207 views

Continuous Timeline in Iphone App?

Background: Workout App is designed to have a continuous timeline that I can then input what exercise and reps I'm doing in real-time, then graph the results in real-time. Issue: When the iphone ...
3
votes
4answers
2k views

How to get a continuous Touch Event?

My class extends View and I need to get continuous touch events on it. If I use: public boolean onTouchEvent(MotionEvent me) { if(me.getAction()==MotionEvent.ACTION_DOWN) { myAction(); ...
2
votes
0answers
27 views
+100

Video recording to a circular buffer on Android

I'm looking for the best way (if any...) to capture continuous video to a circular buffer on the SD card, allowing the user to capture events after they have happened. The standard video recording ...
2
votes
2answers
129 views

flash-free continuous audio player - is this possible?

edit: condensed question: How can I create a flash-free continuous music player (one that is uninterrupted as the user navigates the site) So I want to set up a website with an audio player that ...
2
votes
2answers
163 views

Continuous SVN Diff with Jenkins/Hudson/Teamcity/etc

After some searching around the web I want to seek your opinion on this topic... I have to monitor developers on many branches in SVN against Trunk. One of the ways I would like to do this is diff ...
2
votes
2answers
2k views

Improving this continuous jQuery animation

I've just created a simple, continuous bounce effect in jQuery but I feel the code isn't all that optimized and am looking to improve it. var $square = $("#square"); bounce(); function bounce() { ...
2
votes
1answer
1k views

How to do automatic data archiving in SQL Server?

I have table for which every day I want to do automatic archiving. So to be clear every day I want to take information generated during that day and move it into another partition (of same table) not ...
2
votes
3answers
825 views

CruiseControl.NET - Project Does Not Exist

I have CruiseControl.NET setup on a server. I had everything working perfectly. Everything meaning, pull the code from SVN, build it, upon successful build, kick off a project setup with a project ...
2
votes
1answer
395 views

Stream a continously growing file over tcp/ip

I have a project I'm working on, where a piece of Hardware is producing output that is continuously being written into a textfile. What I need to do is to stream that file as it's being written over a ...
2
votes
1answer
15 views

Where can I find project repositories with continuous testing?

I am interested in studying some test logs from different projects, in order to build and test an application for school. I need to analyze the parts of the code which are tested, the bugs which ...
2
votes
1answer
3k views

TeamCity error: svn: connection refused by the server

We have a Continuous Integration environment setup with TeamCity and subversion. TeamCity gets the latest source from svn and does a build (Visual Studio) on every commit. Sometimes we get the ...
2
votes
3answers
389 views

Can Hudson branch promotion get based on project stability?

Hudson CI server displays stability "weather" which is cool. And it allows one project build to kick off based on the successful build of another. However, how can you make that secondary project ...
2
votes
5answers
916 views

How can I use exit codes to run shell scripts sequentially?

Since cruise control is full of bugs that have wasted my entire week, I have decided the existing shell scripts I have are simpler and thus better. Here is what I have so far svn update ...
2
votes
5answers
1k views

Taking input in Java without program hanging?

I was just wondering how i would let my java program continue running, but always be ready to take input. Right now i am using a bufferreader and reading in a line, but that makes my program halt and ...
2
votes
6answers
2k views

Grouping SQL results by continous time intervals (oracle sql)

Hi I have following data in the table: ID-----startDate----endDate 5549 2008-05-01 4712-12-31 5567 2008-04-17 2008-04-30 1 5567 2008-05-01 2008-07-31 1 5567 2008-09-01 4712-12-31 2 ...
2
votes
3answers
301 views

Continuous Integration setup for ruby projects on linux server

I would like to use open source tools if possible. here are 2 links I found but haven't tried them - ...
1
vote
1answer
15 views

Using NSLevelIndicators with NSSliders Objective-C

I'm learning Objective-c and made a little practice app to take input from an NSSlider and set the level to it. However, I would like to know if there is any way to make the level indicator update ...
1
vote
1answer
118 views

Ways to define a curve

I'm trying to give shapes in my physics engine roundness/ curvature. I am aware of various methods for mathematically defining curves; such as bezier-cruves, ellipses, etc. However I am not sure ...
1
vote
1answer
107 views

Finding point of collision (moving circles + time)

For two circles moving linearly, it's easy enough to calculate the time of the collision: http://twobitcoder.blogspot.com/2010/04/circle-collision-detection.html This assumes that the circles have ...
1
vote
0answers
73 views

How can I smooth out this on mouseover animation?

I have a div that it animating left and right based on the mouse's position, but it's too jittery (especially in IE). I'm pretty sure it has something to do with a .stop() being inside the mousemove ...
1
vote
1answer
151 views

Continuous capture image with AVFoudation in iPhone

Now, I can capture an image using avfoundation , like below. But how should I do to capture images (e.g. 20 or 30 images) continuously? [stillImageOutput ...
1
vote
1answer
113 views

Publish TeamCity artifacts. How to get Build IDs

I´ve created a Artifact path in TeamCity like this: src\MyBuild\bin\Release* => MyBuild.zip now I want to publish this created artifact through a download link ...
1
vote
2answers
153 views

Using Javascript to update table/div contents during page load

I currently have a Perl script that prints some HTML tables and divs, prints an opening <script type="text/javascript"> tag, and then forks off a few processes to collect some data to fill the ...
1
vote
1answer
271 views

Need help with continuous scrolling of background on iphone

Hi i m new to iphone.. Now i am trying to continuous scroll my background. I have added an image as a child . Now the code i m using for continuous scrolling is this on [bg1 setPosition:ccp(310, ...
1
vote
0answers
253 views

Android Continous Speech recognition [closed]

Possible Duplicate: Continious Speechrecognition in Android I understand the current speech recognition method where you can have the user click a button to recognize a phrase. But does ...
1
vote
3answers
408 views

splitting a continuous variable into equal sized groups using R

I need to split/divide up a continuous variable into 3 equal sized groups. Example data frame > anim <- c(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15) > wt <- ...
1
vote
2answers
269 views

How to draw digital datas as a continuous signal in C#?

I am dealing with a project and for now I can get analog signals from my sensors and with PIC's ADC, convert them to digital datas. Besides, via USB I can transfer all the datas to my windows ...
1
vote
1answer
30 views

How are incremental updates rolled out to a subset of customers on a website?

How do the guys like Google/Gmail/Facebook do incremental releases? For example, on the implementation side, what do they do to roll out features to a subset of customers? I can think of two ...
1
vote
1answer
158 views

What's the basic ideas of *continuous physic simulation* like box2d/bullet3d?

Traditional physic simulation (in game/graphics industry) was basically discrete. But engines nowadays such as box2d or bullet3d implement continuous physic simulation. I know basic principals of ...
1
vote
3answers
1k views

jquery make div repeatedly fade in and out

hello i have a series of divs created in a for loop like so: var myDiv ='#bannerHolder' var fib_str = '1, 2, 3, 5, 8, 13, 21, 1, 2, 3, 5, 8, 13, 21, 1, 2, 3, 5, 8, 13, 21, 1, 2, 3, 5, 8, 13' ...
1
vote
2answers
604 views

Hudson build trigged by API

I was wondering if there was a way to do this in Hudson (or with any of the various plugins). My IDEAL scenario: I want to trigger a build based on a job through a REST-like API, and on that build, I ...
1
vote
1answer
364 views

java launching multiple swingworkers from the same UI [closed]

Brief description of UI and setup 1)Plain vanilla frame, with button1 and button2 and textarea1 and textarea2 2)Button1 launches a continuous running task using a swingworker myswingworker1 and the ...
1
vote
3answers
709 views

Get hudson to checkout source to a specific directory

This seems like a simple task but for the life of me I can't get Hudson to checkout my source to a specific directory. I can checkout the source using svn on the command line. I tried specifying the ...
1
vote
1answer
145 views

Sending a large file over network continuously

We need to write software that would continuously (i.e. new data is sent as it becomes available) send very large files (several Tb) to several destinations simultaneously. Some destinations have a ...
1
vote
3answers
589 views

Continious Printing with c#

I am using a dot matrix printer and have to do a continious printing job. The paper I use is 213mm X 350mm and splitted at the middle of the page. I've tried something and I am able to print the ...
1
vote
1answer
491 views

Hudson Continuous Integration. Copy contents of a folder to another folder (website)

Im trying out the Hudson Continuous Integration. After the build is executed i want to copy the content of the ReleaseBuild to another website on the server. This should be possible i guess but i ...
1
vote
3answers
5k views

continuous loop with divs and jquery

I'm continuing a previous post, but I thought I'd open a new thread since it takes a different approach and has more actual code. Anyway, I'm trying to get an infinite loop going with divs scrolling ...
1
vote
1answer
477 views

User interface for generating Phing build files?

I want to use Phing as a build tool and I was wondering if there any (web) interface for generating build files. Any recommendations on alternative methods to writing those by hand would be ...
0
votes
1answer
13 views

Persist flash animation on page browsing?

Is it possible to have flash animation work uninterrupted on my site (in some overlay at the border of the browser) while user browses my site pages? The only way I see is to put animation onto ...
0
votes
1answer
26 views

Best way to continously update data in Windows Phone?

I'm trying to create an application that will fetch data from a web API and display it, then continuously refresh the data every 5 seconds or so, but I don't know the best way to go about doing this. ...

1 2