An infinite structure or process is one which does not terminate. Infinite loops or structures may be bugs in certain contexts, but also may be desired behavior, particularly in server-processes or lazy languages.

learn more… | top users | synonyms

0
votes
0answers
35 views

Creating an Infinite Scroll with an array

$(function() { var startY = $('.borderwrap .post:last-child').position().top + $('.borderwrap .post:last-child').outerHeight(); $(window).scroll(function(){ checkY(); }); function checkY(){ ...
-2
votes
0answers
8 views

Infinite scroll loads immediately

Alright. I've been using : http://codysherman.tumblr.com/tools/infinite-scrolling/code 's script in order to give my blog infinite scroll. The issue is how it fires-up before I even begin scrolling. ...
0
votes
1answer
30 views

Prolog falling into infinite loop

I'm trying to define the rule of "My friend's friend is my friend" in prolog, and I have the following code: friends(john,jake). friends(mike,hans). friends(hans,robert). friends(robert,angela). ...
-1
votes
3answers
52 views

Infinite loop stuck [closed]

I have been looking at this for a bit.. and I even put in the item = null to see what happens.. but this bit of code keeps getting stuck in an infinite loop. item is always equal to null and should ...
0
votes
2answers
63 views

How to check whether a value is already in an arraylist before inserting it in Java?

I want to insert values into a List, but only if the values aren't already in it. My code so far creates an infinite loop because as I add values into the List, the size of the list also increases so ...
0
votes
2answers
37 views

Scrolling - jQuery shows hidden content when it is reached

I've been following this example on jsFiddle: http://jsfiddle.net/jackdent/gRzPF/12/ ...to automatically load more content when the user reaches the end of the currently displayed content. ...
0
votes
3answers
49 views

C++ Infinite Sum Code Hanging? Freezing? I'm not sure

Okay, so I'm trying to compute an infinite sum using a for loop instead of a while loop, and the darn code isn't working and I'm not sure why. I get the two "I got here"'s ONCE and then nothing. :\ ...
0
votes
2answers
107 views

Using Tumblr Like Button with Infinite Scroll

I'm trying to use the new Tumblr like buttons within Infinite Scroll (allowing your theme a like button on individual Tumblr posts from the homepage) they work for the first 15 posts of the first ...
1
vote
2answers
115 views

Create infinite list with fibonacci numbers

I make my next homework =) My task is to create infinite list with fibonacci numbers [0,1,1,2,3,5,8..] I can use any function from Prelude. My try: fibs2 :: [Integer] fibs2 = reverse $ foldr f [1,0] ...
0
votes
0answers
15 views

Modal window is not working on page 2 of infinite scroll

I don't know what am I doing wrong. I have a site with masonry used and appending pages. The modal window works fine on the first page and individually when i call the 2nd page direct but when it ...
0
votes
2answers
49 views

Prolog recursion doing infinite loop

Here's the code flight(roc, syr, 25). flight(roc, jfk, 55). flight(jfk, bos, 65). flight(bos, syr, 40). flight(jfk, syr, 50). flight(bos, roc, 50). layover(roc, 25). layover(jfk, 55). layover(syr, ...
0
votes
1answer
42 views

Finding The Cause of an Infinite Loop in Prolog

I'm sorry to be asking a question as dumb as this, but I'm stuck and I'm not sure what's causing the problem. Its the bucket problem where the program is supposed to find a path to filling one bucket ...
0
votes
4answers
57 views

Small program having some looping issues

Just having a small issue with a small program that i'm doing for my entry level programming course. This loop is infinitely repeating and I can't seem to figure out why. I'm suspecting that the ...
0
votes
0answers
33 views

KL Divergence in KDE toolbox giving Inf

I am using the KDE toolbox for my work .. Here I am calculating the kde for the set of points in class 1 and set of points in class 2. Then I am taking a KLD between them -- Bandwidth = ...
0
votes
2answers
22 views

How to continuouslly fadein and out Button in Android?

I want to fade in and out a Button in my android app when user activates a feature. I saw examples on stackoverflow that shows fading in or out. But is there an easy way to combine in/out animations ...
0
votes
5answers
53 views

PHP Infinite While Loop, Unknown Cause

<?php $i=1; while ($i<=$totalpages) { if (($i>=($page-5) && $i<=($page+5) && $i<$totalpages) || $i==1 || ($i+1>$totalpages)) { echo "<td><a ...
0
votes
2answers
58 views

Infinite While loop in Matlab

I'm trying to write a script file in Matlab that will plot the trajectory of a ball thrown at a specific angle (a), velocity (v) and from an initial height (y0). I have the equation and want Matlab to ...
0
votes
1answer
52 views

Is there a way to make a recursion method with unlimited depth in Python?

For example, when writing some algorithms on graphs like def f(graph): #graph is dictionary of pairs vertex_i:{set of edges (i,j)} for 1<=i,j<=n def g(vertex): for vertex1 in ...
-1
votes
0answers
40 views

IE stuck on infinite load loop

Looking for help guys, after confirming "YES, Igor I confirm!" at the bottom of the page IE is hitting infinite loop instead of redirecting to next page.. all regards URL: ...
0
votes
4answers
58 views

Infinite loop in Linked List

I am implementing a single linked list. At the moment of executing the program I get an infinite loop :S Not sure what exactly is the problem. Btw, I am not supposed to implement a Link Class due to ...
-1
votes
2answers
47 views

Display output in infinite loop iOS

I am new to iOS and I need some feedback about how I can display the output on Iphone screen in an infinite loop. When the button is pressed, the application goes in an endless loop and creates some ...
2
votes
6answers
94 views

Why does this generate an infinite loop (C, While Loop)

I am doing a program for my class, and I need to set all the values of the array 'decade' into -1 before I begin. I tried this (And the version in a for loop) and it just puts me in an infinite loop! ...
0
votes
1answer
54 views

Infinite horizontal scrolling in MKMapView

I am trying to figure out how to get a MKMapView to scroll horizontally endlessly (as if spinning a globe) as per the Maps application in the iPhone. Is there a setting within MapKit? or would I have ...
1
vote
0answers
140 views

Infinite Loop Haskell [closed]

I'm trying to write a function that given a world, it iterates it as many times as specified then returns the new world. But when I run the function, it will iterate once, and then throw a ...
0
votes
1answer
89 views

Trouble with for loop creating an archimedean spiral

I'm having trouble finding what's wrong with my program. When I execute it, it appears to get stuck into an infinite loop (or something similar) and I can't figure out what's wrong with my program. ...
3
votes
4answers
174 views

Haskell- Two lists into a list of tuples

I am trying to implement a function (described below) that takes two lists (each or both may be infinite) and return a list of tuples of all the possible pairs of elements between the lists zipInf :: ...
0
votes
0answers
22 views

Doxygen`s documentation - &plusmn; &infin

I use Doxygen to generate a documentation : in *.h file I write the document`s body.For the following line : /// arguments and results are not NaNs or &plusmn; &infin;. non-complete text is ...
0
votes
2answers
201 views

How do I add infinite scroll with jQuery Masonry?

I am trying to incorporate infinite scroll with my current web site that is using a type of jQuery Masonry. I am trying to understand the language and the basic function of javascript (and html in ...
0
votes
1answer
81 views

use of calling functions in a loop

This is a really complex code, but bear with me. This code is used to check for palindromes. the problem I am having is not knowing how to call functions from in another function and in a loop. ...
-1
votes
2answers
96 views

Count function infinite loop. How to fix? [closed]

This is a function within my code and I know for sure the count loop is what is causing my program to break. The first print statement will return the number which is set earlier in the code, but it ...
3
votes
3answers
292 views

haskell infinite list of incrementing pairs

Create an infinite list pairs :: [(Integer, Integer)] containing pairs of the form (m,n), where each of m and n is a member of [0 ..]. An additional requirement is that if (m,n) is a legit member of ...
0
votes
3answers
233 views

Infinite scroll with jquery .load() function

In a Wordpress blog page I'm trying to load content with jquery .load() function: <div id="s1"> 1 </div> <div id="s2"> 2 </div> <div id="s3"> 3 </div> <script ...
0
votes
1answer
102 views

php socket running all time in server [closed]

I am trying to do develope a chat service with php. The server will be at localhost where I try the code first and then upload it to a server. my problem is that I can not keep php server page running ...
0
votes
0answers
44 views

jQuery Infinite scroll with group by function

I'm using Ias jQuery plugin for infinite scroll. so i want to integrate it with group by function.( for example i have products page and user can group products list by price ) . I can't do it because ...
0
votes
4answers
67 views

How to avoid recursion when using two Singletons?

I have a Gui Class, which is a Singleton, because many other classes have to use methods of the Gui and there should only be one instance of Gui at any time. I also have the Player Class(is kind of ...
3
votes
2answers
98 views

Pattern to do infinite animation in javascript without stack overflow

I have the following pattern to repeat an animation (itself consisting of x frames), t times: sprite.prototype.loop = function(t,animation_name,frame_delay) { if(t > 0) { function ...
0
votes
0answers
37 views

How do i fix the method in this person Array?

hello i am having problems in my main class where i have to add a person method so it allows for commands to be issued and for people to be added to the arrayList or Vector. The console keeps ...
0
votes
1answer
73 views

Infinite loop not seeing updated variable

I have an infinite loop that waits for a method to update a boolean, and while this seems to all work fine at school it doesn't work at home. Not sure if that really means it's computer-based or what, ...
1
vote
0answers
135 views

Why is my ASM (using Turbo Assembler) program looping infinitely?

I tried to make a small program which accepts 4 digit number. But for some reason it doesn't stop after entering the 4th digit. This is the concept I am using. A four digit number for example 1234 ...
1
vote
0answers
445 views

Adding Infinite Scroll functionality to my JSON Flickr feed script?

I'm creating a photoblog to display my 365 project photos. This is what I've currently got. It returns my whole photostream in one go... ...
0
votes
1answer
112 views

Infinite recursion with Paperclip remote image uploading

After successfully implementing the code from Trevor Turk's blogpost "Easy Upload via URL with Paperclip" several times already, in this latest iteration my app gives me the following error: Started ...
2
votes
1answer
57 views

$.fn setInverval on multiple elements with different couting values

I can manage to do infinite animation on multiple elements with different speed but i'm using several setInterval functions. My target is to do this with one function and when i try this with $.fn ...
0
votes
0answers
60 views

Set a timer schedule's delay and peroid to be Infinite in JAVA

You can suppress the timer when you create it in C# as: Timer stateTimer = new Timer( timerDelegate, autoEvent, Timeout.Infinite, Timeout.Infinite); But how to do the same thing in ...
0
votes
1answer
67 views

Repeat function infinite number of times

Based om some earlier questions I try to run my function a infinite number of times. But still it doesn't work. If I run the script, it get broken on strange moments en before running the script again ...
1
vote
1answer
45 views

Odd looping situation, don't know what's causing it

Having some trouble with some code and I cannot get to the bottom of it. This code: int main() { int choice; while (choice != -1) { system("cls"); std::cout << "Main Menu: " ...
2
votes
0answers
320 views

Android: Paging on custom class created from HorizontalScrollView is not smooth

I am trying to create an infinite pager from a HorizontalScrollView. It does infinitely scroll by continuously rearranging the children views as needed, but once it has to start moving the views ...
1
vote
2answers
206 views

Infinite height on jquery dropdown (slideUp and slideDown)

Basically I created a dropdown menu with jquery by using the slideUp and slideDown functions. Everything worked good until I figured that if I continue hovering the mouse through the list, the height ...
0
votes
0answers
142 views

tournadsim custom-jquery.js infinite scroll with iphone and ipad not working

Im new to jQuery and not sure what to change. Basically Im using a script I got of the web to do infinite scrolling for a project. It works great in all desktop browsers, but it only works Id say 2 ...
0
votes
2answers
162 views

jquery function after infinite scroll event

I'm trying to load the comment form dynamically into their corresponding posts. What I have so far works for the first 6 posts that are loaded on the initial load. It's after the initial load that I'm ...
0
votes
2answers
178 views

Infinite scroll with jScrollPane

I'd like to implement a Facebook like control for auto loading of a paged content into a DIV with custom styled scrollbars. For custom scrollbars I use jScrollPane plugin, but can't figure out how to ...

1 2 3 4 5 6