| bio | website | edwinbuck.com |
|---|---|---|
| location | Houston, TX | |
| age | 42 | |
| visits | member for | 3 years, 2 months |
| seen | May 19 at 20:36 | |
| stats | profile views | 713 |
Software developer, and a whole lot more.
Currently employed at Cisco Systems
Formerly employed at:
PROS Revenue Management
ABB
ABB Network Management
Elsag / Bailey (Formerly Ferranti Systems)
The City of Houston
Tarrant and Bulgherini, CPA.
The Jewish Herald Voice
The University of Houston Biology Department
Programming since the age of 8 (Logo). Mastered various languages including
Logo
Pascal
C
FORTRAN
C++
Prolog
Scheme
TCL
TK
Expect
Java
Left computing in 1993 to do research oriented genetic engineering, with emphasis on the structure-function relationships of various proteins including alleles of emb-27 (C. Elegans) , p53 (molecule of the year), and an aquaporin candidate. Left research to return to computing in 1997.
Deep knowledge of the internal workings of the JVM and related technologies. Strong skills in job scheduling, demand forecasting, build / continuous integration systems, tool building, and software architecture.
|
May 19 |
revised |
Writing to file in Java edited body |
|
May 1 |
revised |
Java class compiles but cannot be loaded added 438 characters in body |
|
May 1 |
answered | Java class compiles but cannot be loaded |
|
Apr 18 |
answered | No runtime coverage using emma, junit and ant |
|
Apr 18 |
comment |
Returning values from a linked list without moving the iterator @OneGlove And that's a different error. Not one that was part of this question, and the String.format that people are sending back to you is the exact same one that you have in your example. We don't know what data types you are using, but by reading on String.format's javadoc page, you can easily match the % fields up with the correct data types in the student.get...() methods. |
|
Apr 18 |
answered | Java variable doesn't increment, stays at 0 |
|
Apr 10 |
comment |
Checkbox value not keeping UTF-8 encoding Right now to observe the problem, we would have to create a checkbox, pick some values, and test. Odds are excellent that we would do it in an entirely different manner than you did, with different values. That means we won't be solving your problem (if we even encounter one). To make this place work for you, you need to write a small self contained example of the issue. One that can be compiled, and demonstrates the issue. Then you will have dozens of people who are willing to do the last bit (fix the problem) fighting to fix it first. |
|
Apr 10 |
comment |
Does Map.isEmpty() make sense before entering while (Iterator.hasNext()) loop? @sactiw Yes, you put it well. My wording required reading between the lines, and thank you for filling in the "between the lines". |
|
Apr 10 |
awarded | Good Answer |
|
Apr 8 |
comment |
How to read these expressions: *&pointer VS &*pointer @GrijeshChauhan You might be correct. I am really just talking about the type system, and not the compiler implementation; however, if I were building a compiler, you bet I'd optimize what would amount to a no-op out of the output code. |
|
Apr 8 |
comment |
Subclipse SVN first commit ignore certain directories @l_t It sounds like you are well on your way. Just keep in mind that if you generate directories in addition to the files, best to not check in the generated directories or you svn system will constantly be complaining if your build deletes and recreates them. If they're checked in already, it's no big deal, you can always svn delete them. As for the surprise, the more you think about it, the less the surprise is. The options to list all "unwanted" directories would be just as bad as the options to list only the "wanted" directories. |
|
Apr 8 |
answered | Java -how can I open URL and insert the URL user and password? |
|
Apr 8 |
answered | How to read these expressions: *&pointer VS &*pointer |
|
Apr 8 |
answered | Subclipse SVN first commit ignore certain directories |
|
Apr 4 |
revised |
how to disable auto-boxing for java in IntilliJ IDEA added 138 characters in body |
|
Apr 4 |
answered | how to disable auto-boxing for java in IntilliJ IDEA |
|
Apr 1 |
comment |
Java PhysX Binding? It very well may be dead; but, it does have a "demo" section in the source code (which seems to never been built into a release). Check out code.google.com/p/physx4java/source/browse/… to see if what is in the dead project is "good enough" for your needs. |
|
Apr 1 |
answered | Difference between C and Java when it comes to variables? |
|
Apr 1 |
answered | Java PhysX Binding? |
|
Apr 1 |
comment |
How to detect Duplicate code in Java? @PaulVargas That would be an interesting take. |