David Plumpton

583
Reputation
123 views

Registered User

Name David Plumpton
Member for 1 year
Seen Dec 2 at 22:26
Website
Location
Age
Nov
27
awarded  Necromancer
Nov
20
awarded  Good Answer
Nov
19
answered How to make JMeter wait for an AJAX response
Nov
19
answered How to make JMeter wait for an AJAX response
Oct
1
answered Database vs Flat Text File: What are some technical reasons for choosing one over another when performance isn’t an issue?
Sep
20
answered What are the hot languages of 2009?
Sep
19
answered Multiple Programmers in Software Development. How do we work on the same code and it always be updated??
Sep
18
awarded  Yearling
Aug
26
comment Is there such thing as a technical manual that is not inherently staggeringly dull to read?
Unfortunately Mr. Stiff has stiffed us and dropped off the internet.
Aug
26
answered Find the existence of a word in a large dictionary
Aug
24
answered How many Requests per Minute are considered ‘Heavy Load’? (Approximation)
Aug
19
answered Contract forbids writing open source
Aug
17
answered Is returning null bad design?
Aug
17
answered How do you respond when an IT manager asks you, “What is Firefox?”
Aug
11
answered Programming languages that define the problem instead of the solution?
Aug
9
comment Any reason NOT to slap the ‘synchronized’ keyword everywhere?
Even without deadlocks you can still get into big trouble. I've just been hit by an I/O operation inside a synchronized block that is called thousands of times a week and takes about 20 milliseconds. No prob. But then for some strange reason a couple of times a week it takes 30 minutes. Ouch!
Aug
9
comment Telling my manager that having a plan is important
@jfsk3 Heh heh, yes I suspect a lot of us would compare rather poorly to Linus.
Aug
9
answered Telling my manager that having a plan is important
Aug
9
answered Cost of using weak references in Java
Aug
7
answered What’s wrong with the analogy between software and building construction?
Aug
6
comment Smallest Chess Playing Program
It's poor strategy to resign on the first move. Offer a draw first. If not accepted then resign ;-)
Aug
6
answered What real languages are easy to write interpreter for?
Aug
5
awarded  Nice Answer
Aug
3
comment What should every web developer know about encryption?
MD5 collisions have been found. Nobody has yet demonstrated any SHA1 collisions.
Aug
2
answered Where do you store your salt strings?
Jul
30
answered What are things that make a programmer’s life miserable?
Jul
29
answered Predictive vs Reactive software design
Jul
29
answered Beginner with a good idea - can I develop it on my own?
Jul
29
answered What career can I hope for if I like algorithms?
Jul
29
answered Code With “No Guarantee”/”No Liability” Clause
Jul
29
answered What is the worst web usability error you have encountered?
Jul
27
comment Pi/Infinite Numbers
The word you want is transcendental. Meditate on that.
Jul
26
answered How do I model a chessboard when programming a computer to play chess?
Jul
26
answered An amnesia patient’s “first” functional language? (I really like Clojure…)
Jul
26
comment jvm - what is the optimal freeheap to totalheap ratio?
Because new garbage is being constantly allocated and after a few seconds/minutes you run out. It's okay if it's minutes. It's bad if you run out in seconds. It's terrible if it's milliseconds.
Jul
24
answered What are software practices in mission-critical industries (e.g. nuclear power plant)?
Jul
23
comment The Skyline Problem.
Pity it's not Turing complete
Jul
23
answered jvm - what is the optimal freeheap to totalheap ratio?
Jul
21
answered toString() in Java
Jul
21
answered Why is PostgreSQL so slow on Windows?
Jul
17
answered Git question: possible to merge two different by equal repositories?
Jul
16
comment Porting Common Lisp code to Clojure
There is a user contrib library called error kit which implements much of CLOS condition/restart handling.
Jul
16
awarded  Editor
Jul
16
revised Strange garbage collection behaviour with Websphere Portal Server
added 180 characters in body; edited tags
Jul
16
comment Keyboard for programmers
@jfs Search for "emacs pinky". It can be the difference between decades of happy use and painful surgery.
Jul
16
awarded  Commentator
Jul
16
comment Is it easier to manage code with GIT or Bazaar?
It's not a plus since you can also get free Git hosting from GitHub and others.
Jul
15
answered How do I ‘get’ Lisp?
Jul
15
comment Why isn’t speech recognition advancing?
You can calculate 99923423423^32423343 in your head without too much difficulty if you're willing to accept an approximate answer.
Jul
14
comment How to stop thinking the design and start coding?
Similar to TDD. But why not write the test first. Then it would be TDD.