Magsol
|
Registered User
|
I'm a programmer and scientist with a lot to learn :)
|
|
Nov 18 |
answered | ArrayIndexOutOfBoundsException not being caught and ignored |
|
Nov 16 |
comment |
Why is Everyone Choosing JSON Over XML for jQuery? +1, especially since JSON parsing is unbelievably more efficient compared to XML parsing, even piecewise. Once the datasets you care about exceed a certain (and frighteningly small) threshold, the performance difference is noticeable. |
|
Nov 9 |
revised |
Find buy/sell prices in array of stock values to maximize positive difference added 167 characters in body |
|
Nov 9 |
awarded |
● |
|
Nov 4 |
awarded | ● Popular Question |
|
Nov 4 |
comment |
Whats the most impressive thing you’ve seen done with JavaScript? jQuery and Dojo alike, two phenomenal JavaScript libraries. |
|
Nov 2 |
comment |
Find buy/sell prices in array of stock values to maximize positive difference "The fact you solved it in O(N^2) vs O(N) should be irrelevant." - I really hope you are right on this one :) |
|
Nov 2 |
comment |
Find buy/sell prices in array of stock values to maximize positive difference I was inching close to a solution like this one as I bumbled along; I had five variables set up exactly as you do. Unfortunately I started doing some crazy value swapping and pretty much went off the deep end from there. =/ |
|
Nov 2 |
comment |
Find buy/sell prices in array of stock values to maximize positive difference I really like this; the idea of incrementing the differential hadn't occurred to me. Very elegant! |
|
Nov 2 |
asked | Find buy/sell prices in array of stock values to maximize positive difference |
|
Nov 1 |
awarded | ● Autobiographer |
|
Nov 1 |
comment |
Hibernate many-to-many association with the same entity I was hoping you'd come to my rescue for the third time :) It worked perfectly, and your explanation clears up my understanding of E-R significantly. Thank you very much, once again! :) |
|
Nov 1 |
asked | Hibernate many-to-many association with the same entity |
|
Nov 1 |
comment |
Automate database table creation from within CakePHP framework Would've helped if I had explained it more clearly to begin with :P Thanks for sticking it out, I appreciate it! |
|
Nov 1 |
comment |
Automate database table creation from within CakePHP framework That looks extremely useful; that's exactly what I need. Thank you! |
|
Oct 31 |
comment |
Automate database table creation from within CakePHP framework That's actually precisely what I was looking into - either providing a link in the error page to a script that will automatically populate the tables, or simply doing it within the error class if that is the error that is generated. Thanks! |
|
Oct 31 |
comment |
Automate database table creation from within CakePHP framework The point here is to develop a database initialization process that can run transparently from the perspective of the user, i.e. the user extracts the gzip/zip/tar/etc archive in their PHP-enabled webserver docroot, and provided the database with the right name already exists, and the anonymous MySQL account has full administrative access, the application will simply work. |
|
Oct 31 |
comment |
Automate database table creation from within CakePHP framework Yeah, I took a look at that article, but I'd still have to make the Bake process into a batch process that runs only once, and I'm still uncertain how to do that within the CakePHP framework (as there doesn't seem to be any documentation along those lines). |
|
Oct 31 |
comment |
Automate database table creation from within CakePHP framework Look, my whole point here is that I'm not familiar with the CakePHP framework. I understand the principles and paradigms of web programming; I'm simply unsure how to implement them within the CakePHP environment. Any advice in that regard is what I'm looking for. |
|
Oct 31 |
revised |
Automate database table creation from within CakePHP framework Added tl;dr version |
|
Oct 31 |
comment |
Automate database table creation from within CakePHP framework I would very much prefer that; I suppose I'm looking for the CakePHP equivalent of a J2EE servlet's "init()" method, if such a thing exists or can be written. Though a separate script would work as well, but there would still need to be checks in place in the main application for whether or not the database tables exist and, if not, to advise the user to run the script. |
|
Oct 31 |
asked | Automate database table creation from within CakePHP framework |
|
Oct 30 |
comment |
Regex to split on punctuation excluding URLs @warren: Another very good point. I suppose titles could be accounted for, but it wouldn't be pretty (or easy), and it also highlights other ambiguous uses of punctuation...such as ellipses within a single sentence. Oy. |
|
Oct 30 |
comment |
Regex to split on punctuation excluding URLs I agree there are still fringe cases that would be difficult to capture 100% of the time. But you raise a very valid point regarding punctuation just after the URL; that wasn't something I'd considered, nor am I sure how to deal with that. |
|
Oct 30 |
comment |
Regex to split on punctuation excluding URLs I didn't mention the whitespace because it honestly doesn't matter; if it's easier to split on punctuation (and keep the delimeters, as you pointed out) and maintain the white space (it can go on either token, doesn't matter), that's fine; otherwise, the reverse is fine as well. Whichever is simpler. |
|
Oct 30 |
comment |
Regex to split on punctuation excluding URLs I thought about that - a period being followed by a space - but while it does happen the majority of the time, it's not sure-fire, so if there's a 100% accurate way I'd prefer that. Your second suggestion might be that very method; I was just hoping for a way that wouldn't incur extra overhead and could be done in one fell swoop. There has to be a way to find if a punctuation character is part of a contiguous URL? |
|
Oct 30 |
comment |
Regex to split on punctuation excluding URLs Added an example. Sorry about that. :) |
|
Oct 30 |
revised |
Regex to split on punctuation excluding URLs added an example; added 169 characters in body |
|
Oct 30 |
asked | Regex to split on punctuation excluding URLs |
|
Oct 27 |
comment |
Error using PHP cURL with SSL certificates I know this isn't ideal, but as I said, it works. I couldn't diagnose the errors I was getting, and this seems to get the job done, so in lieu of any actual fix this is the best answer. |
|
Oct 26 |
comment |
Most difficult programming explanation Explaining it is difficult enough; debugging it requires an entirely new definition of "difficult" :P |
|
Oct 26 |
answered | Most difficult programming explanation |
|
Oct 26 |
answered | OpenSocial authentication from external application |
|
Oct 26 |
awarded | ● Notable Question |
|
Oct 23 |
revised |
OpenSocial authentication from external application added 114 characters in body |
|
Oct 22 |
asked | OpenSocial authentication from external application |
|
Oct 16 |
awarded | ● Commentator |
|
Oct 16 |
comment |
Hibernate Annotations generating query that produces SQLGrammarException I should just start messaging you when I have a Hibernate question :) Problem fixed! Thank you again! |
|
Oct 16 |
revised |
Hibernate Annotations generating query that produces SQLGrammarException Appended FYI to the end. |
|
Oct 16 |
asked | Hibernate Annotations generating query that produces SQLGrammarException |
|
Oct 14 |
comment |
Hibernate: unmapped class association exception Wow, thank you so much! It is evident I still have quite a bit to learn about this framework, as after I followed your suggestions, I had to sequentially handle at least a dozen new exceptions from messing up other aspects of my Hibernate configuration. This time my mistakes were more straightforward, and everything seems to be working :) It's my first-ever Hibernate-powered application, and it's breathing after just three days of learning! Thank you very much for your help! |
|
Oct 14 |
revised |
Hibernate: unmapped class association exception added 194 characters in body |
|
Oct 14 |
asked | Hibernate: unmapped class association exception |
|
Sep 29 |
comment |
Exclusive url-patterns in Tomcat web.xml descriptor Awesome, that's exactly what I needed. Not sure why I couldn't figure that out on my own, but thank you very much. |
|
Sep 29 |
asked | Exclusive url-patterns in Tomcat web.xml descriptor |
|
Sep 17 |
awarded | ● Yearling |
