Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
5answers
385 views

What's exactly happening in infinite nested lists?

It's possible to create an infinite nested list in Python. That's clear and, although not popular and definitely not useful is a known fact. >>> a = [0] >>> a[0] = a >>> a ...
18
votes
4answers
834 views

How to tell if a list is infinite?

Is there a way to tell if a list in Haskell is infinite? The reason is that I don't want to apply functions such as length to infinite lists.
18
votes
3answers
736 views

Proving equality of streams

I have a data type data N a = N a [N a] of rose trees and Applicative instance instance Applicative N where pure a = N a (repeat (pure a)) (N f xs) <*> (N a ys) = N (f a) (zipWith ...
14
votes
4answers
497 views

Left and Right Folding over an Infinite list

I have issues with the following passage from Learn You A Haskell (Great book imo, not dissing it): One big difference is that right folds work on infinite lists, whereas left ones don't! To put ...
13
votes
4answers
763 views

Why does this Haskell code work successfully with infinite lists?

I have some Haskell code that does work correctly on an infinite list, but I do not understand why it can do so successfully. (I modified my original code -- that did not handle infinite lists -- to ...
11
votes
2answers
12k views

jQuery Infinite Scrolling/Lazy Loading

I'm currently redesigning my website and have been looking into using JavaScript and jQuery. Here is what I have so far: http://www.tedwinder.co.uk/gallery2/. My vision is to have all of the photos ...
7
votes
6answers
237 views

Infinite list of infinite counters

For those with suspicious minds, this is not homework, just curious. Given a finite alphabet, is it possible to construct a list of infinitely long words made from the alphabet in reverse lexographic ...
6
votes
4answers
1k views

Bash: infinite sleep

I use startx to start X which will evaluate my .xinitrc. In my .xinitrc I start my window manager using /usr/bin/mywm. Now, if I kill my WM (in order to f.e. test some other WM), X will terminate too ...
6
votes
4answers
1k views

Scala, repeat a finite list infinitely

I want to use Stream class in scala to repeat a given list infinitely. For example the list (1,2,3,4,5) I want to create a stream that gives me (1,2,3,4,5,1,2,3,4,5,1,2,3....) So that I can wrap the ...
5
votes
8answers
152 views

c++ recursion exits without obvious reason

I wrote a function using a recursion. While testing it, it turned out, that the function is killed without any obvious reason, while the recursion is still running. To test this, I wrote an infinite ...
5
votes
2answers
220 views

How to express infinity in Ruby?

I was wondering if there was any keyword that represents Infinity in Ruby? Thanks
4
votes
3answers
2k views

python nan and inf values

is it possible to set a number or an element of an array to NaN in Python? Additionally, is it possible to set a variable to +/- Inf? If so, is there any function to check whether a number is Inf or ...
4
votes
2answers
116 views

Scalas (a,b).zipped (or Tuple2.zipped) notion using streams/infinite lists

here is what I thought would be a correct and useful definition of fibonacci nums in scala: lazy val fibs:Stream[Int] = 0 #:: 1 #:: (fibs,fibs.tail).zipped.map(_+_) However, I get the following ...
4
votes
5answers
642 views

why does an infinite loop trash the CPU?

I know an infinite loop creates a CPU problem. But, I don't quite understand why. Can anyone explain that to me. Thanks!
3
votes
1answer
106 views

Eager versus Lazy Haskell. Infinite lists possible in Eager languages?

Apparently it is possible to implement Haskell such that it evaluates eagerly without changing the semantics of the language at all. If that is true, how are infinite data structures handled? ...
3
votes
2answers
86 views

How can I represent an infinite number in Python?

For example when you want in python to give to a set of elements an associated value, and you use this value for comparisons between them, I would want this value is infinite, I mean, no matter which ...
3
votes
2answers
129 views

Excluding computed results from a map of [1..]?

I'm currently working on a program which computes amicable pairs (Project Euler 21). I've already found the solution, however I noticed that a flaw in my program was that it evaluates all of the ...
3
votes
2answers
2k views

Android: How can I stop an infinite animation applied on an ImageView?

I have an ImageView on which I have applied a rotate animation. Since I want the rotation to go on continuously, I gave the repeatCount as infinite in my rotate.xml: android:repeatCount="infinite" ...
3
votes
8answers
408 views

Is it possible to construct an “infinite” string?

Is there any real sequence of characters that always compares greater than any other string? My first thought was that a string constructed like so: ...
3
votes
6answers
979 views

In Haskell, how can you sort a list of infinite lists of strings?

So basically, if I have a (finite or infinite) list of (finite or infinite) lists of strings, is it possible to sort the list by length first and then by lexicographic order, excluding duplicates? A ...
2
votes
4answers
120 views

Is setTimeout / clearTimeout dangerous?

I wanted to ask if exist a another implementation of setTimeout / clearTimeout to replace this kind of nested structure avoiding the loop back function timedCount() { ...
2
votes
1answer
103 views

CouchDB “_changes” listener updates the doc, which triggers another change

I want to write a background program that will monitor the _changes feed of a CouchDB, and possibly update the document. The problem is that the update causes another _change, and I get an endless ...
2
votes
3answers
186 views

Python: Infinite loop and GUI

I'm trying to write a python program with wxPython GUI. Program must to collect some information in background (infinite loop), but GUI should be active at this time. Like, if I click on the some ...
2
votes
1answer
174 views

Rare infinite loop in code, don't want to wait for it to happen again

Ok, so I've got a genetic algorithm running in netbeans, and its been running for like 5 hours and seems to have entered an infinite loop. Is there any way that I can attach a debugger to it? or at ...
2
votes
1answer
46 views

Ever-expanding beam of light in background

I have a webpage, the background for which is going to be a flashlight. Is it possible to draw the flashlight so that the beam (a piece-of-pie shape) will expand, no matter the size of the user's ...
2
votes
2answers
268 views

PHP exec on another PHP file - How to get my script to wait?

I'm running a continuous PHP loop that executes another PHP file by using exec("php ...");. The plan is for the executed script to run, then sleep for 2 seconds, then start again. However, it seems ...
2
votes
3answers
786 views

Making the diamond square fractal algorithm infinite

I'm trying to generate an infinite map, as such. I'm doing this in Python, and I can't get the noise libraries to correctly work (they don't seem to ever find my VS2010, and doing it in raw Python ...
2
votes
8answers
652 views

Are infinite lists useful for any real world applications?

I've been using haskell for quite a while now, and I've read most of Real World Haskell and Learn You a Haskell. What I want to know is whether there is a point to a language using lazy evaluation, in ...
2
votes
1answer
713 views

Android looping infinite ListView?

I'd like to make a looping ListView. That means, it behaves a bit like the picker widget on iOs, so when the user scrolls either up or down, the list just keeps looping its contents. I'd guess that ...
2
votes
2answers
604 views

Recursive MySQL query?

I have a set of data that's organized hierarchically that should be able to grow to an arbitrary size. I need to retrieve the entire tree, but I can't figure out how to do it with just SQL. My current ...
2
votes
1answer
1k views

jquery / WordPress: apply infinite scroll effect to new content loaded via AJAX

So I am trying to use jQuery infinite-scroll plugin in combination with some custom jQuery that loads a new loop from a different PHP file with AJAX. The infinite-scroll works on the initial page ...
2
votes
5answers
377 views

Infinite yields from an iterator

I'm trying to learn some ruby. Imagine I'm looping and doing a long running process, and in this process I want to get a spinner for as long as necessary. So I could do: a=['|','/','-','\\'] aNow=0 ...
1
vote
1answer
24 views

Infinite Background Position Animation - jQuery

I'm wondering how to make infinite animation on jquery with a plugin "background position animation" i tried to implement setInterval(); but it didn't work, there a jsfiddle. ...
1
vote
1answer
148 views

“Infinite” world problems

I'm creating a minecraft like voxel engine thing in xna, and have started about implementing "infinite" world but have ran into a few problems. One such problem is that the following line always seems ...
1
vote
2answers
71 views

Matlab Infinity testing

How i can test a given value is infinity, -infinity or NaN. isinf works only for 'double', and can't test NaN values.
1
vote
3answers
72 views

Blackberry can't stop audio when setLoopCount(-1);

I have the following code: InputStream stream = (InputStream)this.getClass().getResourceAsStream("/preview.mp3"); Player p = Manager.createPlayer(stream, "audio/mpeg"); ...
1
vote
5answers
117 views

Generate infinite stream of unique numbers between 0 and 1

Came across this question previously on an interview. The requirements are to write a function that Generates a number between 0..1 Never returns the same number Can scale (called every few ...
1
vote
1answer
112 views

Java For Loop Inside Constructor is Infinitely Repeating

So, for some reason when I try to use a for loop to initialize panels in chess board, it actually loops the loop itself. In other words, it doesn't go on forever, but it starts and completes again and ...
1
vote
0answers
256 views

iPhone Infinite Vertical Text Scrolling

I'm trying to get a UIScrollView to infinitely scroll vertically and wrap around its contents, in this case a multiline UILabel. (For displaying credits) I thought it would be a simple case of ...
1
vote
1answer
109 views

Infinite Carousel Caption Modification

I have an infinite Carousel function applied to a series of images here: http://nokkam.com/showcase.html I have had a request to make the captions appear "out of the way of the images"… ugh. Being as ...
1
vote
7answers
121 views

Is there a Sorting Algorithm that sorts in O(∞) permutations?

After reading this SO question and reading through the various Phone Book sorting scenarios put forth in the answer, I found the concept of the BOGO sort to be quite interesting. Certainly there is ...
1
vote
2answers
158 views

How does Java store +-Infinite in memory?

If it takes all 32 bits to store from -2^31 to 2^31, how can it store + and - Infinite? Does it use more memory? Is it good and safe to store those values? UPDATE: Thanks to the answers, I know that ...
1
vote
1answer
174 views

Infinite new window loop when triggering click event

I have a overview page that shows the data in a table. A pop-up opens when the user clicks on the row. But the pop-up get's reloaded over and over again until it hangs. The overview code: ...
1
vote
1answer
110 views

PHP Infinite Sleep

My web page has the following sleep line in it: sleep(600); For the user, it will appear as if the page is loading "forever". This effect is desired. However, this will create a process that ...
1
vote
0answers
369 views

Android infinite/ circular horizontal scrolling layout?

I just got the ADW EX Launcher and found that it has an "Infinite Scrolling" feature. I opened up hierarchy viewer in the Android SDK and found that it is using the Workspace and Draglayer layout. I ...
1
vote
3answers
371 views

UDP threading infinite loop in Java

I've written two programs. Now each program uses threading to send and receive packets at the same time. Whenever I send packets from the server to the client, the message at the client ends gets ...
1
vote
1answer
99 views

Generate infinite stream

Is there a way to generate an infinite stream (to a file descriptor) from a (finite) buffer, i.e. repeating the buffer, without invoking calls from user-space (except for initially setting up the ...
1
vote
2answers
140 views

Choose/2 multiple answers swi prolog

how can I define a choose/2 to give infinite answers choose(List, Elt) :- length(List, Length), random(0, Length, Rand), nth1(Rand, List, Elt). my choose/2 gives only one answer ...
1
vote
1answer
474 views

iPhone and iPad end of scrolling

I'm making some jQuery cross-browser gallery with infinite scroll i works great but on iPhone (i suppose also on iPad) instead equal values i have some disproportion values don't match ...
1
vote
1answer
267 views

Why an infinite loop makes a program non-responsive / hanging? c# / Windows Forms

In a windows desktop application (windows forms), I've created a while loop in (c#): bool stop = false; while (!stop){ ... // code to update a label that displays the number of times the loop ...

1 2 3