0
votes
6answers
52 views
Javascript: Write Console.debug() output to browser?
I need to be able to take any JSON data and print the key/value pairs.
(something similar to print_r() in PHP)
Is this even possible with javascript?
0
votes
3answers
54 views
LOOP, LOOPE, LOOPNE?
Can anyone please explain me the difference between the assembly instructions LOOP, LOOPE and LOOPNE.
Thanks.
1
vote
2answers
37 views
Qt4.5: Using event-loop based localsocket before app.exec
I'm facing a practical problem with Qt. I'm using a class that communicates with QLocalSocket to another process (pipes/unix sockets) and I need to do that communication before oth …
0
votes
2answers
48 views
End of 2d array
how can i say in java
if i get to the end of a row in a 2d array and i have only encountered 0's in that row
to set row to the next one (row ++) and set column to 0 (column = 0)?
…
0
votes
1answer
35 views
xsl loop to split a fragment tree every n times
This is a sample of my XML, it can possibly have thousands of rows of items in a range of categories.
<store>
<products type="computer">
<item desc="text" am …
3
votes
2answers
68 views
Integrating a simple web server into a custom main loop in python?
I have an application in python with a custom main loop (I don't believe the details are important). I'd like to integrate a simple non-blocking web server into the application whi …
0
votes
3answers
41 views
xsl recursive loop node by index
I have created a recursive template for getting the first n number of items from my XML.
It uses an index(counter) just like how I would in a for loop. Now how can I get a node fr …
0
votes
0answers
45 views
wait for ajax response inside a loop
I need to wait for an ajax response inside a for loop. If I could I'd simply make a synchronous call instead of asynchronous, but I don't have that level of control: I'm using som …
0
votes
1answer
26 views
looping through an image folder in a wpf application
I currently am loading all images in a folder in my "MyPictures" folder on my machine which works fine...
foreach (string filename in Directory.GetFiles(Environment.GetFolderPath( …
0
votes
2answers
46 views
How to loop through different movie clips in AS3?
I have five movie clips in my library. I want to load each to the stage with a fade in and fade out. I thought I could just call them into an array, but I can't find how to referen …
0
votes
5answers
55 views
PHP str_replace with for loop from array
Ok I have a str_replace and what I want to do, is take values from an array, and take the next piece to replace the word "dog" with. So basically I want the $string to read:
"The …
0
votes
1answer
48 views
Redirect only HTML files?
Part One
I want to .htaccess redirect all HTML files to the home page. I looked at this guy's question (http://bit.ly/3l9K86), and wrote this code:
RewriteCond %{HTTP_HOST} ^pand …
0
votes
3answers
67 views
Using CodeIgniter is it bad practice to load a view in a loop.
I just got started with CodeIgniter and am wondering will it slow things down if I put code like this in a loop.
$data['title'] = 'the title';
$data['content'] = 'blah bla …
0
votes
1answer
14 views
Smarty Section Making the selected Link Bold
Hello,
How can i make the selected link from the List below, bold, that you see you are on Page ex. 3 or 5
With this code if you click on a Link you dont know on which page you …
2
votes
5answers
123 views
How do I give this CPU-intensive Java application a GUI?
I'm writing a little genetic algorithm in Java, as a school assignment. Up until now I've pretty much stuck to doing console applications. However I think a UI would be really help …
