The endless tag has no wiki summary.
1
vote
1answer
31 views
Add progressbar at bottom of a listview
I'm creating a simple listview with an endless scroll effect.
While I'm downloading new data I want to display an indeterminate progressbar at the bottom of the listview (like gmail app).
There is 2 ...
0
votes
1answer
42 views
Concurrency with android GLES glBufferData
I'm trying to use Android and OpenGL 2.0 to create a sort-of desert racing game. At least that's the end goal. For the time being I'm really just working with generating an endless desert, through the ...
0
votes
0answers
39 views
jQuery: Endless Scrolling with floating not working
I wrote a jQuery snippet for endless scrolling, but I run into a problem:
The elements are floating, but as soon as I use clear:both and no fixed height - the scrolling gets weird and scrolling action ...
0
votes
3answers
55 views
Endless loop not working
I think I'm pretty close to get it working, but still can't figure out what's wrong with my code. I need to run a function endlessly to swap image src randomly thru a series of 13 or 15 different ...
1
vote
1answer
49 views
Endless adapter onclick event
I'm trying to use the endless adapter in a list fragment context.
Everything is working pretty fine except for the click events on any of the item.
If the fragment is implementing onclicklistener, ...
-2
votes
0answers
16 views
part of bitmap renderscript [closed]
I want to set a region of a Bitmap in Renderscript.
Does anyone know how to do that? I was looking for some function inside the script to take a region from some allocation and I was not able to find ...
0
votes
3answers
56 views
PHP: Why is this an endless loop? [closed]
$x = 0;
$y = 0;
while ($x < 6);
{
while ($y < 6)
{
echo "INSERT INTO map_location(xLoc,yLoc) VALUES ($x,$y)";
$y++;
}
$x++;
}
I am trying to generate SQL statements ...
0
votes
0answers
252 views
“loading more posts” notification with endless scroll tumblr
I'm in the process of manipulating a tumblr theme for a blog - see it here: http://assemblyradio.tumblr.com/
I've successfully installed an endless scroll script thanks to Cody Sherman's script: ...
1
vote
1answer
103 views
django cms custom app page endless redirect
I am building a website using Django-cms and I code my own Django app (request_quote)
The error I have is that when I try to access an url defined in request_quote.urls.py , it gets stuck in an ...
1
vote
1answer
105 views
Python, anticipating an endless loop
I have code that can potentially have an endless loop. I would like to be able to stop this in code, is there somethng that can do that? Some thing like:
for i to range(0,5):
timer = on
...
0
votes
0answers
225 views
Android endless listview not updating after fetching new contents with dedicated thread
I have a problem using cwac-endless
Please note I'm using support library and action bar sherlock (my problem could be not related to this at all).
My custom adapter works fine (extends BaseAdapter) ...
1
vote
1answer
77 views
endless while loop confusion [closed]
So I am trying to plan a path on a 9x9 grid, so boardSize is 9. The while loop should stop path list has a length of 81 or more so why is it possible that it can get to a length of 3531when the ...
1
vote
0answers
44 views
java Filter IllegalStateException or endless loop for fedlet on JBoss 7
I am stuck on a servlet filter problem and am hoping someone can help me.
What I have is a servlet filter (it's a SSO Fedlet) that I'm running on JBoss 7.1.1
This is a simple "Hello World" ...
0
votes
2answers
71 views
How to stop Azure database endless loop session
Last night I might have started an endless loop on my Azure website, copying data in the database. Its about 24 hours ago, and my tables still keep growing. Can I stop or will it burn out at some ...
0
votes
1answer
44 views
Apache james mailet endless loop
I tried to deploy my first sample mailet to apache james v2.3.2 but it gets into an endless loop, sending me emails again and again even after restarting the server. The only way to stop it was to ...
1
vote
2answers
39 views
jquery endless animation issue
I want to creat a really simple menu, a div "test" is hidden and when I click on a div "trig", test is showing. Then when I click on trig again, test is hidding.
It's working for the first click, then ...
2
votes
2answers
157 views
Do-while endlessly looping cout, ignores cin
This program prints a specified amount of numbers within a specified range. However, when I enter a character, it just endlessly loops whichever do-while loop I do it in. E.g: If I enter a character ...
0
votes
0answers
98 views
I can't print endless height report from fastreport with some type of printer
I have a problem with printing in some type of pos printer like Epson , Fujitsu
When I print endless height report from fastreport.
if report height more than A4 paper height in some printer like ...
1
vote
0answers
111 views
Android livewallpaper onOffsetChanged with endless scroll
I have a problem in WallpaperService.Engine.onOffsetChanged() method.
On default screens I've got proper xOffset value, but on devices with endless screen scrolling onOffsetChanged() called only once, ...
0
votes
2answers
54 views
Wondering how to make a block of code wait for something else to complete
Another quick one:
If I perform something like this:
runningAnimation = YES;
[self performSelector:@selector(animationsComplete) withObject:nil afterDelay:0.1[;
// Return to main function
-(void) ...
0
votes
2answers
43 views
endless prototype javascript function
I am attempting to create an endless prototype function. Here is my attempt, which is not working:
function Cat(name, direction) {
this.name = name;
this.stand = {left: "images/standLeft.png", right: ...
0
votes
0answers
75 views
Endless sliding in Farseer Physics with angle joints?
We're currently trying to develop a prototype for a game idea we came up with. So far, we created a ragdoll which is able to stand perfectly on its own with revolute and angle joints.
The problem we ...
0
votes
2answers
31 views
Retrieves and display endless amount of numbers in an array
I"m trying to make a program that retrieves an endless amount of numbers that user inputs until the user quits and display the numbers .Here is the code I have so far.After entering the first and ...
0
votes
2answers
424 views
C++ - Pthread, Multiple Threads related to one function with endless loop
I am C++ newbie and try to work with Pthread and Ncurses libraries. I am making program, which displays flying balls in the terminal screen. I created a Ball class:
In file Ball.h declaration, in ...
0
votes
1answer
288 views
Android Endless List/Grid using universal image loader
So I am using Universal Image Loader library to load a grid and listView of a bunch of image URL's.
I have a method to pull 24 at a time, and add them to an ArrayList.
My adapter basically gets the ...
1
vote
0answers
138 views
Using JQuery Pull items from hidden div to another & Infinite Scroll
I have a page on my site that allows users to upload photos to a directory on my server.
These photos (100x100 thumbnails) are then pulled from that directory and placed in a a <DIV ...
1
vote
1answer
106 views
WP7 how to make endless listbox
I see the default Calendar app in Windows Phone 7 has a Day tab. In that tab is a ListBox that can be scrolled endlessly, and very smoothly.
I'm thinking of changing its binding source, but don't ...
0
votes
0answers
211 views
Android: Two endless scrolling ListViews besides one another
I'm looking for a solution for the following problem: I'm using two independet ListViews, defined via XML. These are displayed besides each other.
<LinearLayout android:layout_weight="1"
...
0
votes
1answer
84 views
endless loop in a website - mod_rewrite
I am getting an endless loop with a concrete5 site that just went live today... it was fine in development using a temporary URL, but now live only the homepage works... was wondering if this has ...
2
votes
1answer
122 views
Perl hash: while-each-loop runs into endless loop
The following Perl code runs into an endless loop.
It looks like each resets itself after the subroutine call.
Why is that so?
#!/usr/bin/perl
use warnings;
use strict;
my %h = ( "a" => "b" );
...
2
votes
1answer
246 views
Monodroid endless list
I'm pretty new to monodroid and I was wondering how you can make a list that load new items if you reach the bottom. Can someone give me some guidlines how I should handle this?
Thanks in advance
0
votes
1answer
130 views
Javascript endless loop without for
This function is running continuously without initiating a loop.
The setTimeout is to allow the refreshTags function to run.
I'm sure it's not the best-written script - I'm no guru - but any ideas ...
0
votes
2answers
888 views
Custom Endless ListView Android
Im trying to do something like endless adapter but not able to accomplish it and as a result my app is crashing.
What i tried to do is that initially i wanted loaded 10items in listview and add ...
1
vote
1answer
208 views
endlessly looping when reading from character device
For a homework assignment, I have written a character device driver. It seems to work OK. I can read and write it. The problem is that when I read the device, it endlessly loops, printing out the ...
0
votes
0answers
179 views
Jquery endless-scrolling just displays loader
I use this jquery plugin for an endless scroll on a webpage.
This is what my html looks like:
<!-- zip -->
<section class="bookmarks">
<article class="bookmark">
...
0
votes
1answer
179 views
Images in endless list instead of String
I am trying to create an endless imagelist which loads 5 items everytime you scroll to the bottom. To start with, I looked at Mark Mooibroeks code. It is basically a list of dates. But I would like to ...
2
votes
3answers
1k views
Best approch for side scrolling game , cocos2d box2d
I am trying to develop a game like ninja jump in ios with cocos2d + box2d with endless scrolling ! (no need of parallax scrolling)
What is the best practice for endless scrolling
1 : moving the layer ...
1
vote
1answer
106 views
Why does this Left Join in Coldfusion/MySQL cause an endless loop?
I'm running a search query in Coldfusion8 (MySQL 5.0.88).
The query constructs a LEFT JOIN in Coldfusion like so:
<cfquery datasource="db" name="q">
SELECT ...
</cfscript>
and ...
0
votes
1answer
116 views
Java JFileChooser endless loop
When i am closing my JFileChooser dialog, it opens again. I'm using the libgdx update for checking the input.
Here is the input code...
if(!SaveDialog.open) {
...
1
vote
0answers
453 views
JS/Knockout Endless Scrolling - Scroll Bar Jumps To Top of Page
So I have a chunk of code written in js that more or less checks the position of the scrollbar relative to the document/window size. If it is near the bottom, it will trigger a function call.
...
0
votes
1answer
149 views
Endless scrolling buffer is not honored
I am trying to build a web app which displays images in a grid view. I have implemented a so called endless scrolling functionality and it works great. The problem is that I have added a 500 pixel ...
1
vote
2answers
73 views
Simple bookmarklet creates endless loop
This book-marklet:
javascript:document.write('hello world');
creates an endless loop when you click on it. Or so I guess, as that browser tab correctly displays hello world, one time, but the busy ...
0
votes
1answer
258 views
Tumblr / Lightbox / Infinite Scrool
I'm currently working on a photo blog on Tumblr that is using the 'Infinite Scroll' Script to load all the content on the main page without having to scroll between the pages.
After adding the ...
0
votes
1answer
106 views
Why does the program keep going, when I tell it to stop?
I'm struggling to create a little Blackjack console game in C++. I've written almost the whole code (you may find it pretty messy, but I have like no experience in this kind of things). It works, but ...
1
vote
5answers
297 views
constantly check if Server is listening on a given port with C#
thanks to this answer I was able to determine if Server is listening on a given port or not:
How to config socket connect timeout in C#
now I'm trying to create an endless loop, which will be loaded ...
1
vote
0answers
306 views
Getting document.observe is not a function when implementing endless page from Railscast 114
Rails and programming beginner here.
I'm trying to implement endless page from Railscast 114 but it isn't loading. Firebug console brings up an error:
document.observe is not a function - ...
0
votes
5answers
302 views
C++ Endless loop with input
I have a C++ program that takes input from the terminal, and for some reason this is producing an endless loop:
double getSideLength()
{
cout << "Enter a side: "
double side;
cin >> ...
3
votes
5answers
173 views
Endless loop in C
Beginner here.
Why is this an endless loop ?
for (p = 0; p < 5; p += 0.5)
{
printf("p=%2.2f\n",p);
}
0
votes
1answer
1k views
Add Infinity Scroll Down in Joomla
How do I integrate Jquery code for Infinity/Autopager Scroll down in Joomla. And If possible the scroller to work on Choosen Articles.
0
votes
3answers
102 views
Endless function calling loop
I'm working on my iOS project again. However, I seem to have hit a cascading eternal loop of function calls of which I don't know why it happens. The GDB output can be viewed here:
...





