Allain Lalonde

10,879
Reputation
942 views

Registered User

Name Allain Lalonde
Member for 1 year
Seen 14 hours ago
Website
Location Ottawa, ON, Canada
Age 30
I'm a Software Developer working on Alternative User Interfaces for business projects.
15h
comment Rich calendar component for Swing application
I am currently using this with great success.
20h
answered How to scan remote host port that in used?
20h
revised How to scan remote host port that in used?
added some tags
Nov
24
revised How do you estimate a ROI for clearing technical debt?
typo
Nov
24
comment How much real storage is used with a varchar(100) declaration in mysql?
this doesn't answer the question relating to nulls.
Nov
19
awarded  Popular Question
Nov
18
asked Observer Pattern Overload
Nov
18
comment Java Null Conditional
the code above is in one method.
Nov
18
awarded  Popular Question
Nov
17
comment Java Null Conditional
Would you have these builders internal to the class, or would you promote it to a top level class?
Nov
17
comment Java Null Conditional
@Stefan Kendall - made me laugh.
Nov
17
comment Java Null Conditional
At the very bottom, it returns null.
Nov
17
asked Java Null Conditional
Nov
16
answered How to float left and overflow to top instead of the bottom of containing div
Nov
16
awarded  Popular Question
Nov
13
revised Change own process priority in C
deleted 365 characters in body
Nov
10
comment On load, jump to anchor within a div
Nice. Since #bar is an id and you don't technically need to worry about duplicates, the inner contextual selector is unnecessary. Neat to see someone thinking in that direction anyway.
Nov
10
comment Can I disable CheckStyle complaints for deprecated methods and classes?
This is great. Perfect!
Nov
10
awarded  Good Question
Nov
9
asked Java Library Size
Nov
2
comment Time Synchronization Code
Although this would work, there are only two clocks involved. The server is running the SMB share.
Nov
2
comment Time Synchronization Code
Already doing this. But not all clients are within pinging distance of an NTP server.
Nov
2
asked Time Synchronization Code
Oct
30
awarded  Notable Question
Oct
30
comment Mocking java object for unit test
That's my first experience seeing Mockito... very neat. Thanks!
Oct
30
comment Listening for new child components in Swing
Um, RecursiveContainerListener doesn't support that constructor, and ultimately, it is adding a ContainerListener to all components. Though it is an interesting bit of code.
Oct
30
asked Listening for new child components in Swing
Oct
26
comment What does Apache need to support both mysqli and PDO?
Crash? Anything in the error log?
Oct
23
awarded  Popular Question
Oct
21
revised String Operations in Java
slight efficienty thanks to 13ren
Oct
20
comment Cleaning up code breaks binary compatibility
Obviously. But not the point.
Oct
19
comment Cleaning up code breaks binary compatibility
It wasn't classes, it was constants that were missing the final.
Oct
19
asked Cleaning up code breaks binary compatibility
Oct
16
comment Easiest way to unit test SWT and Swing apps in a headless environment?
If this works, this is the neatest trick I've seen in years!
Oct
16
asked Easiest way to unit test SWT and Swing apps in a headless environment?
Oct
15
awarded  Nice Question
Oct
12
comment Index on UNION query?
Although this is correct, it doesn't actually answer the question he asked.
Oct
11
revised Can I disable CheckStyle complaints for deprecated methods and classes?
giving more detail.
Oct
10
asked Can I disable CheckStyle complaints for deprecated methods and classes?
Oct
8
answered What’s the difference between //node and /descendant::node in xpath?
Oct
1
awarded  Popular Question
Sep
30
revised Alternatives to backdooring java access when unit testing.
made example less specific
Sep
30
asked Alternatives to backdooring java access when unit testing.
Sep
30
awarded  Popular Question
Sep
30
answered Possible to add background color to transparent image using GD and PHP
Sep
29
awarded  Popular Question
Sep
25
revised What services exist that geo-locates a person based on IP?
missed a word
Sep
25
comment jQuery How to affect Single element on mouseOver
changed, ancestors to parents since ancestors is deprecated now.
Sep
25
revised jQuery How to affect Single element on mouseOver
ancestors has been deprecated, and I added :first, just in case.
Sep
25
revised jQuery How to affect Single element on mouseOver
making $this a closure.