Posts by rdllopes • 291 points
5 posts
-
1
votes1
answer101
viewsA: How to redirect all urls from a subdomain to a specific url?
Basically you can do this with apache mod_write. http://httpd.apache.org/docs/2.4/rewrite/remapping.html You can write directly to . htacess or with a Directory directive in apache configuration. On…
-
1
votes1
answer568
viewsA: Form E-mail Validation in JSP
The problem is the link: <a href="javascript:document.captacaoEmailsForm.submit(); javascript:verificar" id="btContinuar" class="captacao fr">Enviar</a> You are sending a form and only…
-
1
votes4
answers2018
viewsA: How to use a class-specific thread with multiple threads?
Well, you don’t "should", but you can do an Object extend class and use it in a simulation. Ex: public class Bola extends Thread { private float directionX; private float posX = 0; private boolean…
-
3
votes2
answers6496
viewsA: What is the difference between recursion and tail recursion?
Conceptually the execution of a program (process) occurs as follows: The program is loaded in memory. Each program instruction corresponds to a (memory) address. During function call, the following…
-
10
votes6
answers15594
viewsA: How to do a search ignoring Javascript accent?
Removing the accent is part of bigger problem (or should be). In the case of purely search, I strongly suggest using some mechanism for "Full Text Search". These mechanisms have sophisticated…