Tim Howland

3,568
Reputation
345 views

Registered User

Name Tim Howland
Member for 1 year
Seen 14 hours ago
Website
Location Newburyport, MA
Age 40
I commuted to the big city every day for fifteen years; in 2005 I sold the house and started my own consulting gig up here on the border with new hampshire.
19h
answered Building a game, need a language with strongly supported first class functions
Nov
4
awarded  Notable Question
Oct
28
accepted How can i trace changes made to the DOM by JavaScript?
Oct
5
answered How can i trace changes made to the DOM by JavaScript?
Sep
21
answered Help with Java Applet
Sep
21
answered Which is the fastest javascript engine, and does it really matter?
Sep
16
answered Should the IFrame be dead by now?
Sep
9
answered What is the purpose of constraint naming
Sep
7
comment How important are naming conventions for getters in Java?
Absolutely agreed here- many frameworks (eg, JSF) will completely fail to work unless you follow the conventions. It's the java bean standard, but it's become a common convention at many layers. Divergence from standards is perilous, and should only be done with a really good reason. Signalling immutability doesn't count.
Sep
3
awarded  Yearling
Aug
31
answered Having Trouble Generating a War in Grails
Aug
28
accepted Which ORM framework can best handle an MVCC database design?
Aug
26
comment Open source test report generation tool
what platform, language, and build script application are you using? Continuous integration servers typically do this for you, but they vary based on underlying language and build system.
Aug
25
answered books in college
Aug
19
answered Need sample java to query mysql and dispay result upon combo box update
Aug
19
comment Need sample java to query mysql and dispay result upon combo box update
Are you looking for Java help (the serverside language that gets complied) or javascript (the scripting language that runs in your browser and is useful for ui handling)? I think you may be confusing the two languages together- getting that straightened out will probably give you more useful responses.
Aug
19
revised What is a good stand-alone Perl editor for Linux (and maybe Windows)?
added 37 characters in body
Aug
19
revised What is a good stand-alone Perl editor for Linux (and maybe Windows)?
added 149 characters in body
Aug
19
answered What is a good stand-alone Perl editor for Linux (and maybe Windows)?
Aug
17
accepted How to add a moving Flash in iPhone
Aug
17
answered How to add a moving Flash in iPhone
Aug
13
comment How to have a domain redirect to a subdirectory?
If you are using apache, set up a permanent redirect on example.com: Redirect permanent / anotherdomain.com/example Docs are at: httpd.apache.org/docs/2.0/… Other http servers have other ways to handle it.
Aug
13
revised How to have a domain redirect to a subdirectory?
deleted 7 characters in body
Aug
13
answered How to have a domain redirect to a subdirectory?
Aug
8
answered Why isn’t PostgreSQL as widespread as MySQL?
Aug
8
comment Is MySQL appropriate for a read-heavy database with 3.5m+ rows? If so, which engine?
When you create an index, you add extra overhead when doing inserts (not much, just a little, but it adds up). If you index everything, then it can really slow things down. Indexes can be based on a single field, the first N bytes (or characters) of a field, or two or more fields. You need to work with the "explain query" tool and benchmark your system to figure out the best mix for your particular data set and the searches you typically run. Check the mysql docs here: dev.mysql.com/doc/refman/… for more info.
Aug
8
accepted Is MySQL appropriate for a read-heavy database with 3.5m+ rows? If so, which engine?
Aug
8
answered Is MySQL appropriate for a read-heavy database with 3.5m+ rows? If so, which engine?
Jul
29
comment Allowing Java to use an untrusted certificate for SSL/HTTPS connection
This is the way to do it; however, you need to be really careful that this code doesn't make it to production- and if you're using untrusted certs in a production app, it's a Bad Thing. If you have a dependency injection framework like spring in your app, consider isolating this code and have a secure version for the production environment.
Jul
26
answered Hungarian Notation
Jul
24
awarded  Tumbleweed
Jul
13
answered Grails MySql processList
Jul
13
answered Grails - Lift: Which framework is better suited for which kind of applications?
Jul
4
answered What is the best database to use with a java program?