Will Hartung

9,183
reputation
323 views

Registered User

name Will Hartung
member for 1 year
seen 4 hours ago
website
location
age
1d
answered Where to close a JDBC Connection while I want to return the ResultSet
1d
awarded  Nice Answer
1d
answered Simple and good CSS/HTML IDEs for Mac OS?
1d
answered Why won’t JPA delete owned entities when the owner entity loses the reference to them?
1d
answered How would you design your database to allow user-defined schema
2d
comment Using Postgresql as middle layer. Need opinion.
Well, I read "one man small scale project so I want to make the architecture as simple as possible" and figured that question was already answered.
2d
comment Events or Inheritance?
At the same time, the code has to go somewhere, the Single Responsibility of THIS is to "process the person", including saving, emailing whatever. This provides a Single Source of Truth for the PersonProcess. If there's only a few rules, then it's appropriate. Otherwise, you need to set up the infrastructure to support the event dispatch, handling, errors, etc. Plus all of the logic is scattered about, and now represented by code and metadata. The Event case is valid, and useful, but without existing infrastructure, hard to argue it's worth the time for 1 or 2 events.
Dec
13
answered Using Postgresql as middle layer. Need opinion.
Dec
13
comment Using Postgresql as middle layer. Need opinion.
Not every application needs to scale. 90's client/server tech is more than viable for many organizations. Since the simple fact that larger organizations actually managed to get by using the tech is indicative that it was effective. Perhaps not optimal, but at least workable. And likely, this application isn't anywhere close to having these issues. Sure there are limitations, it's a design consideration like anything else.
Dec
13
comment Parsing Twitter feeds in C
How many "created_at" tags do you expect in the payload? Look for the status tag, set a flag, and look for the create_at tag. I don't know if there's a standard C lib to read a time string or not, otherwise you can probably use sscanf to read that, populate a struct _tm and use the C lib time/date functions.
Dec
12
answered Parsing Twitter feeds in C
Dec
12
comment What language should I learn to create command line scripts and GUIs?
Because it's a decent language, easily approached, widely ported, and has decent bindings to GUIs.
Dec
12
answered Best license for private software
Dec
12
answered What language should I learn to create command line scripts and GUIs?
Dec
10
accepted Session variables in JSP
Dec
10
answered How to Improve Performance and speed
Dec
9
answered How do you best offload a database insert, so a web response is returned quicker?
Dec
9
answered Memory management in C
Dec
6
awarded  Mortarboard
Dec
5
answered Sorting output with awk, and formatting it.
Dec
3
awarded  Popular Question
Dec
3
answered Thoughts on Abandoning Proprietary Framework for A Larger Open Source Project
Nov
29
answered How do I get a flood fill algorithm to cope with closed circles?
Nov
28
accepted Rolling my own “Version Control”
Nov
28
answered Rolling my own “Version Control”
Nov
27
answered Client Server socket security
Nov
25
revised Using Spring managed DAO without controller?
fixed title spelling
Nov
25
comment Ideas for computer science project with CORBA or ICE
The goal is that you never have that exception thrown, that the redundant back end and, perhaps, error correction, prevent the client from failing.
Nov
25
comment Get Diffrence Between Two Times (Unix Epoc)
Counting down $diff at the same time here. Arguably it should be $ys = $diff / $y; $diff = $diff - $ys * YEARS_IN_SECONDS, or whatever the constant is.
Nov
21
awarded  Nice Answer
Nov
18
accepted JSP and dynamically agregated css
Nov
17
answered JSP and dynamically agregated css
Nov
17
awarded  Nice Answer
Nov
14
answered Unix Script not working in Java Process Runtime.exec()
Nov
12
answered Is it possible to use JSP/JSTL to generate dynamic css/javascript files?
Nov
12
answered Go code contribution: license and patent implications?
Nov
12
comment What Operating Systems Will Free The Memory Leaks?
It's true on all modern operating systems that aren't running on restricted devices (low end 8 bit embedded controllers, for example). The primary factor the enabled this capability was Virtual Memory and hardware memory management units (MMUs). Any system can do it, but the VM/MMU subsystems make it a LOT easier. And "protected" memory is not a requirement to pull this off. The older Mac OS, for example, didn't have memory protection (one process could stomp on the memory image of another), but processes didn't link when they exited either (they could still leak internally of course). 7 to go
Nov
12
answered What is the simplest license key generator I can develop myself in 1 day?
Nov
12
answered Database table with 3.5 million entries - how can we improve performance?
Nov
10
answered How can I sort a coordinate list for a rectangle counterclockwise?
Nov
8
answered What do regular people think of programming?
Nov
6
answered What is a good (coding) platform to use for telephone coding interview?
Nov
5
answered Do any Java libraries provide a random access Queue implementation?
Nov
4
answered Should a two-to-many data relationship be treated as many-to-many?
Nov
4
comment Why does Java’s Hashtable’s get method take an Object as a parameter?
I feel your pain, I've been bit by this one before. Lost couple a hours tracking it down.
Nov
4
accepted HTTP Preauthorization
Nov
2
answered Converting a Scheme expression to a string
Oct
29
answered Have you ever bought a commercial implementation of a programming language for personal programming projects?
Oct
29
answered Dynamically creating asynchronous message queues in Java
Oct
28
comment Mac Text Editor that Support SSH Keys
I've done this on Linux, and it's a great facility as you can then use any editor or IDE that you want transparently. Things get kinda wonky when the link goes down, but there are workarounds for that.