Hi, given the following test:
http://snipplr.com/view/23898/
I have a series of pages with 96x96 thumbnails in the same spot and I want people to be able to continuously click the thumbs.
I'm seeing weirdness in Firefox 3.5.5... if you don't move your mouse AT ALL after clicking the red box once, (after the page reloads) when you clic...
I am trying to write a java application connecting to server connection channel with SSL enabled.
So far, I have been successfully connected to the channel by setting authentication to 'optional'. However, when I set it to be 'required', the connection fails.
Here is what I did:
Create key db for queue manager and keystore for...
Hi,
I wish to create a git server for which I wish developers in my team to access their git repos through HTTP/git protocol by a web application. I want to develop this solution fairly in a short amount of time and i have to depend on the existing tools to do this. I am having a dilemma of choosing java/python/ruby(rails) for this purp...
Hi, I am sure that I have made some painfully obvious blunder(s) that I just cannot see. I am hoping one of you can set me straight.
I my session management is working perfectly except that if a user on one machine enters data, a user who starts a session on another machine will also retreive the session information from the first. No...
I once saw this feature in action but I don't know how to turn it on. The grid can show a tooltip with the current row number (or row ID) while dragging the scrollbar. This helps you to stop the scroll in the right place. I'm assuming some property will turn this on, but I can't find it.
Maybe it is also dependent on the scroll mode?
UP...
Hello,
I've written a small lightbox plugin for jQuery (yes, there are several ready made packages -- unfortunately, the designer in my co. does not like any of them).
I have one small problem -- I am using .load() to load dynamic flash content into the lightbox div. I am appending the div to the DOM, presetting visibility to hidden, a...
Is there any way to make php stop processing a file and make it just work with the part it already parsed. I mean like this:
<some data here>
<?php phpinfo(); [IS THERE ANY THING I CAN PUT HERE] ?>
<more data>
[IS THERE ANY THING I CAN PUT HERE]
<?HOW CAN I MAKE PHP NOT PARSE THIS?>
is there anyway to make php ignore data after the fi...
My understanding is that a Web Application Developer is a class of Web Developer who can build and maintain web-based applications as well as just web sites - as a regular Web Developer would do. Am I correct in my thinking or is there anything else someone would like to add?
Cheers
Iain
...
Comcast has changed their login process so it happens in two steps. Instead of two input boxes for username and password, you submit your username first. Then on a second page you enter your password.
https://www.comcast.com/Customers/CustomerCentral.cspx
Due to some recent security
improvements, we now require you to
enter yo...
Let's say I have a recursive data structure
class Tree {
private Tree right;
private Tree left;
private int data;
....
}
I want to convert it to xml with jsp, so my ui tree widget can load the xml page with Ajax and construct a tree (with expandable/collapsable nodes, etc).
The xml would look something like ...
I was looking around to see if there is an equivalent to django/RoR in java.
I found:
Play Framework
Grails
Does anyone have ever tried those frameworks, or do you know any other?
Are they faster than django/RoR?
...
Possible Duplicates:
Should I learn Perl, and why?
When should I use Perl CGI instead of PHP (or vice versa)?
Background
I'm currently working as a web developer and have knowledge of HTML, CSS, PHP, MySQL, JavaScript (mainly through jQuery) and Ajax.
I recently entered into the world of Flash and ActionScript and came across ...
I have heard the term unit testing many times and I am wondering how this is related to the web development field. I program with PHP, Javascript, Actionscript 3.0 and I am starting to get into C++, C# and JAVA. If anyone has any good resources that I can take a look into as I believe this is a good method to follow for "test driven" dev...
I'm starting my first webapp, and I'm not sure how things typically are done. I'm using Django and Apache:
How do you manage a source control repository? Do you check out to a separate folder, and then have a build script that copies files over? What exactly should be added to the repository? In other words, how do you make sure that y...
So I have a category table set up. Within this table there is a field called "id", "name","fk_parent_cat_id" (and more). The "fk_parent_cat_id" basically just ties one particular category to a parent category.
Ok. That being said, how would I make a query that grabs the information on the category, but ALSO grabs the information on th...
I've heard that putting a block element inside a inline element is a HTML sin:
<a href="http://www.mydomain.com"><div>
What we have here is a problem.
You see, an anchor element is an inline element,
and the div element is a block level element.
</div></a>
But what about if you style the outer anchor as "display:block" in th...
I want a particular file copied in with the published output of my web project. I tried changing the Build Action to Content and changing the Copy to Output Directory to Copy always. This works fine except that it buries it down in a sub folder the same way it is in the project.
I do not want it buried down in a sub folder. I want it si...
I have a blog, and I'm using Disqus for comments. I want to give users the ability to tag comments, but I can't figure out where in the code this would go. Any help would be appreciated.
...
Why do browsers apply the same origin policy to XMLHttpRequest? It's really inconvenient for developers, but it appears it does little in actually stopping hackers.
They are workarounds, they can still include javascript from outside sources (the power behind JSONP).
It seems like an outdated "feature" in a web that's largely interlinke...
In my mvc application i need to check a condition in action and throw it to the log.
How can i add a info to log info.
...