Elie

5,614
Reputation
301 views

Registered User

Name Elie
Member for 1 year
Seen 2 hours ago
Website
Location Toronto
Age 27
A programmer with a degree in CS and Biology. For my professional information go to my Linked In profile, or visit my company's site, Optimal Upgrade Consulting.
21h
awarded  Popular Question
1d
accepted Spring configuration error
1d
accepted Problem connecting to a remote database using hibernate
1d
accepted iTextSharp Verticle Spacing Question
1d
comment Switching databases in PHP
Would that information be retained between multiple calls to this PHP file? Or would I have to pass this data in each time in order to distinguish between users?
1d
comment Switching databases in PHP
@bumperbox if I encrypt it, I would have to decrypt it in order to use it. Using a decent encryption algorithm would make it painful to encrypt and decrypt on every request, thereby impacting the overall performance of the application.
1d
comment Switching databases in PHP
Not really duplicates, by the way. They are dealing with the same issue, but one is about performance, not execution, and the other is about the pros and cons of using the multiple-db design, but again, not about execution.
1d
comment Switching databases in PHP
Multiple reasons that have to do with data organization in the application, to keep each user's data isolated, to allow expansion based on volume, scalability, etc.
1d
asked Switching databases in PHP
Nov
23
comment How to create an Audio CD using C# or Java
I think that's basically what I was looking for. Now I just have one more piece of the puzzle - how to convert from MP3 to WAV (which is what that article was written for and assumes you have).
Nov
23
asked How to create an Audio CD using C# or Java
Nov
18
awarded  Popular Question
Nov
18
comment Align a div using CSS
The response from Moak fixed the problem. I wanted the main page centered, as you said. My understanding is that text-align:center is what you use to center the content of the enclosed element.
Nov
18
comment Align a div using CSS
There we go - deleted the wrong line. Thanks!
Nov
18
comment Align a div using CSS
Now it's right aligned instead of centered. Which I suppose helps, since it was left aligned before. Let me try changing float to center.
Nov
18
comment Align a div using CSS
But in IE it displays correctly! Why would I want to change that?
Nov
18
comment Align a div using CSS
yeah, I just did. Didn't seem to make any difference.
Nov
18
comment Align a div using CSS
I've been asked to fix this for a client, who built this from a template. I've provided a link to the site.
Nov
18
revised Align a div using CSS
added 50 characters in body
Nov
18
comment Align a div using CSS
Sorry, that's also there. I trimmed the css. I'm adding more info to the question now.
Nov
18
asked Align a div using CSS
Nov
14
awarded  Nice Answer
Oct
8
awarded  Popular Question
Oct
2
awarded  Popular Question
Sep
29
awarded  Yearling
Sep
16
accepted Program Director file with actionscript?
Jul
27
comment XG MIDI File Format
That is not correct. I am talking about automating the sending of such information, which would be a programming question.
Jul
25
awarded  Popular Question
Jul
22
awarded  Popular Question
Jul
15
comment Views in MySQL based on multiple computed values
It turns out that my hosting provider only supports MySQL 5.0, and views were introduced in MySQL 5.0.1, so this option for collating the data automatically is out.
Jul
13
comment Views in MySQL based on multiple computed values
I will likely try, at least, using the one you proposed. I'm having an issue with my hosting provider with my user access to the databases that is being resolved, so I have not yet been able to test it, although I have my scripts prepared. If your solution works, I will accept your answer as correct.
Jul
12
comment Views in MySQL based on multiple computed values
Considering that both tables B and C have potentially thousands of rows, for hundreds of rows in A, what would the performance of this query be? (I would use the first option, as I need to know if the difference is positive or negative.) Also, is there a way to do this as a view?
Jul
12
asked Views in MySQL based on multiple computed values
Jul
12
comment MySQL column definition
That's exactly what I was looking for. Thanks!
Jul
12
comment MySQL column definition
The example was simplified. In the case in question, both tables A and B have several non-overlapping data fields, and there are, potentially, many entries in Table B for each entry in Table A.
Jul
12
comment MySQL column definition
Could you elaborate? How would I define the view to do this?
Jul
12
asked MySQL column definition
Jul
7
comment How do I Insert or Update (or overwrite) a record using NHibernate?
Quite correct, but the bottom line is, you can let Hibernate determine which of the two methods to call. From an implementation point of view, this is just semantics.
Jun
22
comment White papers and books on programming for performance in Java
The question cannot be "wrong" - it's what I want to know. I know how to profile my code, and I'm looking for white papers and books to gain a better understanding of performance and Java. As I said in my previous comment, the answer provided was for a question about improving performance of a Java application, which is not what I asked.
Jun
22
comment White papers and books on programming for performance in Java
I've been programming in Java for 8 years, and I know some of the basic concepts in profiling for performance, and some of the basic mistakes made that can have a major impact on performance. That being said, I'm specifically looking for documented information on performance and Java, not to try to guess the compiler and JIT compiler, but to learn some better coding practices.
Jun
19
comment White papers and books on programming for performance in Java
Good to know, I guess a combination of those two books will provide most of what I need.
Jun
19
comment White papers and books on programming for performance in Java
I use JProbe and Performasure, along with JTest for static analysis and LoadRunner for load testing.
Jun
19
revised White papers and books on programming for performance in Java
updated title
Jun
19
comment White papers and books on programming for performance in Java
Thanks, will do.
Jun
19
comment White papers and books on programming for performance in Java
While this strategy works for fixing performance issues as they arise, and for locating non-tuned code, it does not direct me to a resource about known performance issues to keep in mind while programming. The strategy is sound, but it doesn't answer the question.
Jun
19
asked White papers and books on programming for performance in Java
Jun
19
comment How do I Insert or Update (or overwrite) a record using NHibernate?
Yes it can. See the comment on my answer.
Jun
19
comment How do I Insert or Update (or overwrite) a record using NHibernate?
Actually, it can. That's precisely the purpose of saveOrUpdate(). save() cannot be used when you have an assigned id, update() cannot be used without one, and saveOrUpdate() bypasses that issue.
Jun
16
comment Public/Popular Websites using Java Server Faces
We had a significant amount of trouble with dynamic tables that needed to be constructed on the fly, without knowing in advance the type of data we would be displaying. I'm told that many of the problems we faced were solved in version 1.2, although that was not an option for us based on other requirements. My advice, though, is whichever route you take, make sure you get someone on the project who already knows the technology, or send them for some formal training.
Jun
9
awarded  Tumbleweed