User rjurney - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T11:52:36Z http://stackoverflow.com/feeds/user/13969 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/525288/can-we-use-rubyonrails-for-banking-and-financial-transactions-domain/527181#527181 3 Answer by rjurney for Can we use RubyOnRails for Banking and financial transactions domain. rjurney 2009-02-09T05:23:04Z 2009-02-09T05:23:04Z <p>Banking transactions are all done in stored procedures in software and databases independent of the web interface to your bank account, so you could use any web framework, but this is one of the only areas where you have sufficiently complex transactional rules that the J2EE stack actually makes sense. RAILS on the other hand is optimized for simple CRUD, which banking ain't. Its possible, but probably not the right tool for the job.</p> http://stackoverflow.com/questions/465692/working-out-the-sql-to-query-a-priority-queue-table/465778#465778 1 Answer by rjurney for Working out the SQL to query a priority queue table rjurney 2009-01-21T15:37:03Z 2009-01-21T15:37:03Z <p>If you want it to be 'concurrent safe' on something like InnoDB do:</p> <p>1) Add an 'in_progress' field.</p> <p>2) Turn off AUTOCommit</p> <p>3) SELECT * FROM queue_manager where in_progress = 0 order by priority_number, timestamp LIMIT 1 FOR UDPATE;</p> <p>4) UPDATE queue_manager SET in_progress = 1 where id = X;</p> <p>5) COMMIT</p> <p>6) Do the job. Then delete the row when its done to satisfaction. Have a 'master process' handle/redelegate/clean up old 'in_progress' jobs.</p> http://stackoverflow.com/questions/163275/what-do-you-need-to-take-into-consideration-when-deciding-between-mysql-and-amazo/404281#404281 0 Answer by rjurney for What do you need to take into consideration when deciding between MySQL and Amazon's SimpleDB for a RoR app? rjurney 2008-12-31T23:38:36Z 2008-12-31T23:38:36Z <p>I just addressed your question (somewhat) here: <a href="http://stackoverflow.com/questions/53693">http://stackoverflow.com/questions/53693</a></p> http://stackoverflow.com/questions/53693/amazon-simpledb/404257#404257 3 Answer by rjurney for Amazon SimpleDB rjurney 2008-12-31T23:16:33Z 2008-12-31T23:26:27Z <p>I just finished writing a library to make porting an app to simpledb in Perl easy, Net::Amazon::SimpleDB::Simple because I found the Amazon client libraries painful. The library isn't on CPAN yet, but it is at <a href="http://rjurneyopen.s3.amazonaws.com/SimpleDB/Simple.pm" rel="nofollow">http://rjurneyopen.s3.amazonaws.com/SimpleDB/Simple.pm</a> The idea was to make it trivial to stuff hashes in and out of SimpleDB. </p> <p>I just ported an app to use it. Overall I am impressed with SimpleDB... even inefficient queries take only 2-3 seconds to return. SimpleDB doesn't seem to care about the size of your table, owing to its Erlang/parallel nature. Tablescans are easy for it.</p> <p>The pain comes from the fact that you can't count, sum or group by. If you plan on doing any of those things... then SimpleDB probably isn't for you. At the moment in terms of functionality it exists somewhere in between memcached and MySQL. You can SELECT ORDER BY LIMIT, which is nice. Its also nice that you don't have to scale it yourself, and its nice that it doesn't care how much you stuff into it. But more advanced operations like analytics are painful at best. You'll have to do your own calculations server side. Its also a big plus that on any computer I can use the simpledb CLI <a href="http://code.google.com/p/amazon-simpledb-cli/" rel="nofollow">http://code.google.com/p/amazon-simpledb-cli/</a> to query my data.</p> <p>There are some confusing 'gotchas.' For instance, attributes can have more than one value, and you have to explicitly set 'replace' when storing items. Also, storing undef or null string results in a library error, instead of deleting that attribute name/value pair or setting it null/empty string. </p> <p>Learning to think in terms of a largely un-normalized way is a little strange too, which is why I would second the suggestion above that says it is best for new applications. Porting from a SQL app to SimpleDB would be painful because your application logic would have to change. The way you do things is a bit different. The amazon docs are pretty good at explaining this.</p> <p>All of this is extractable in a library that sits atop SimpleDB, so for your use of SimpleDB you will want to pick a good library... you probably don't want to deal with it directly. There is some work on the PHP side to make things easy, and there is my library. There is a RAILS activesource, but it doesn't seem to do much for you.</p> <p>All in all its still early in the game, but compared to other APIs (twitter comes to mind), I have to say that the SimpleDB REST API is pretty simple (especially considering that it is XML) and polite to work with. I would recommend it... depending on the requirements of your application and the economics of your use of it. If you're looking to rapidly scale a service that doesn't put a great load on the DB and don't want to bother with a scalable MySQL/memcache combo... then SimpleDB can offer a 'simple' solution for you.</p> <p>I expect that its features will continue to grow and it will be a good choice for more and more applications that do more complex and interesting things. But right now it is targeted at and appropriate for your typical Web 2.0 service.</p> http://stackoverflow.com/questions/404210/design-patterns-architecture-astronaut/404238#404238 0 Answer by rjurney for Design Patterns - Architecture Astronaut rjurney 2008-12-31T23:07:48Z 2008-12-31T23:07:48Z <p>You're working in an environment where the patterns are set for you by a large company, and I think this explains your feelings. And you're probably right. Those of us using FOSS languages in open environments for broader problems have endless choices, and reading on design patterns helps us make informed decisions about architecture. Usually this means picking the right libraries. Your choices for the narrow domain you are working in have been made for you.</p> http://stackoverflow.com/questions/402100/what-is-simple/402110#402110 4 Answer by rjurney for What is "Simple"? rjurney 2008-12-31T02:18:15Z 2008-12-31T02:18:15Z <p>The second is more simple, but thats not an excuse not to break it out into a couple lines.</p> http://stackoverflow.com/questions/366612/any-thoughts-on-rightscale-and-scalr-for-dynamic-ec2-instance-managment/390630#390630 1 Answer by rjurney for Any thoughts on RightScale and Scalr for dynamic Ec2 instance managment rjurney 2008-12-24T02:12:02Z 2008-12-24T02:12:02Z <p>I am a Scalr user, a Scalr.net subscriber, and have become a Scalr enthusiast. I cannot possibly afford Rightscale.</p> <p>Scalr can do what you ask.</p> <p>Scalr has three images (each with 32/64 bit versions), plus a base (generic) image:</p> <p>1) A load balancer image, running nginx. A highly available setup requires two of these. Scalr will manage your nameservice, and round robin between them. If one goes down, Scalr will remove it from DNS and bring up another instance. It is possible to run other load balancers, but nginx is the default.</p> <p>2) Several application server images are available, running Apache/Tomcat/Rails. You setup your application here, be it PHP/Perl/Python/Java/Ruby/whatever. nginx routes requests between these instances grouped by unique user (based on IP + browser). Scalr monitors these for upness too, and replaces broken instances.</p> <p>3) A MySQL database image, with automatic master/slave replication. Just deploy your schema, and Scalr handles replication and replaces defunct servers. It will also backup your data periodically. Scalr's DNS provides master and slave hostnames, so you can have your app read from the slaves and write to the master.</p> <p>All of these instance types will auto-scale based on load. You start with the base image closest to what you're doing, and then you customize them for your application. For instance, we deploy our Perl/Catalyst app on the apache server instances but we serve static content from the nginx front-end servers. We had to modify our application slightly to use read/write database handles.</p> <p>All in all, it took about three weeks of working through bugs in Scalr to get our application to a reliable state where I am confident that it IS highly available with Scalr. Their support was phenomenal, so the bugs didn't bother me too much, and the system is really coming along. It is approaching serious reliability.</p> <p>As a side note, the best feature of Scalr is the 'Synchronize to All' feature, which auto-bundles your AMI and re-deploys it on a new instance - all without a service interruption. This saves you the time of going through the lengthy EC2 image/AMI creation process, which can otherwise make very simple admin tasks take 20 minutes. You can use this whether you are scaling your server farm or not - it would be very handy even on a single instance.</p> <p>I pay Scalr.net $50 a month to host the service for me because I think it saves me time and money. The bottom line so far is this: at my last gig, we had a systems guy working on our highly available Linux DB + app server setup for a year... and he failed to achieve the kind of reliability that I achieved in three weeks. The savings by using Scalr as compared to rolling my own are extreme. </p> <p>All that being said, if I could afford Rightscale, I would be using Rightscale. But the up-front fee and $500 a month make that impossible. There has been talk of waving the up-front fee in exchange for waving the consulting that it includes, but the monthly service fee isn't going anywhere.</p> <p>I should mention that at the moment, sclar.net's website is down, so if I wanted to manage any of my server farms (don't have them up atm), I simply couldn't right now. It is not clear whether scaling is working for scalr.net subscribers right now, or not. Which is to say... this is perhaps not a mature solution yet. This doesn't happen often, before tonight the only downtime I've experienced were in periods of a few minutes at a time. But yeah... its down RIGHT NOW, so I must mention it :)</p> <p>I would suggest a thorough reading of the support group at <a href="http://groups.google.com/group/scalr-discuss" rel="nofollow">http://groups.google.com/group/scalr-discuss</a> before making your decision. If you pick Scalr, be prepared to test your setup and work through any issues you have on the google group.</p> http://stackoverflow.com/questions/378547/pre-load-multiple-videos-in-flash-in-flex 0 Pre-Load Multiple Videos in Flash? In Flex? rjurney 2008-12-18T17:21:35Z 2008-12-19T07:20:12Z <p>I'm doing a project where we play multiple videos back to back, and if we load them the normal way by providing a stream url, there is a load delay each time we start the next video.</p> <p>I've looked through Adobe's docs for both Flash and Flex, and I can't find a way to pre-load the videos. Embedding them is not workable in this application. Ideally we would pre-load them, display a progress bar or other short video in the meanwhile, and only start the video playback when all the videos have loaded.</p> <p>I'm not used to asking questions of others for programming, I RTFM, but I find the Adobe docs to be lacking, and googling flash/flex problems is tough. There's a lot to sift through, and I can't find the relevant technique/solution.</p> <p>As to Flex/Flash I'm interested in the solution for either, or both. Perhaps it is the same, as it is actionscript?</p> http://stackoverflow.com/questions/379236/database-design-best-table-structure-for-capturing-the-user-friend-relationship/379243#379243 1 Answer by rjurney for Database design: Best table structure for capturing the User/Friend relationship? rjurney 2008-12-18T20:57:55Z 2008-12-18T20:57:55Z <p>Perhaps add a Relationship table, put the relationship properties there, and reference it from UserFriend.</p> http://stackoverflow.com/questions/369558/web-based-game-development-flex-builder-or-flash-cs3/370693#370693 3 Answer by rjurney for Web-based Game Development: Flex Builder or Flash CS3? rjurney 2008-12-16T08:17:00Z 2008-12-16T08:17:00Z <p>If your game is simple, or you are an artist, then Flash CS3/4 is the clear choice.</p> <p>If your game is complex, or you will be working on it for a while, you will want to be using Flex. Developing using Adobe languages and tools is always painful for developers, but Flex less so than raw Flash. Flex at least provides a sane OO framework for building applications. Flex is pretty bloated though, and so you will have to take care with tuning your SWF size, but it really pays off in maintainability and code scalability.</p> <p>The choice isn't mutually exclusive. You can build Flash components in Flash CS3/4 and use them in Flex. The main challenge for developing with both is the lack of coherent documentation or support from Adobe.</p> <p>Flex Builder is the way to go for a beginner, but it is quite expensive once the 60 day trial is through.</p> <p>As to which is used more, probably raw Flash. But that is probably changing as Flex takes hold.</p> http://stackoverflow.com/questions/119396/source-code-control-policy/119421#119421 0 Answer by rjurney for Source code control policy rjurney 2008-09-23T06:38:49Z 2008-09-23T06:38:49Z <p>My favorite policy is "No subversion commits that do not reference tickets + Auto Trac comments for each commit": <a href="http://trac.edgewall.org/browser/trunk/contrib/trac-post-commit-hook" rel="nofollow">http://trac.edgewall.org/browser/trunk/contrib/trac-post-commit-hook</a></p> http://stackoverflow.com/questions/119064/tips-for-reducing-eye-strain/119188#119188 2 Answer by rjurney for Tips for reducing eye strain rjurney 2008-09-23T04:50:07Z 2008-09-23T04:50:07Z <p>Get an eye exam and make sure your prescription is up to date. Mild astigmatism in my left eye was giving me crazy migraines, and new glasses fixed this immediately.</p> http://stackoverflow.com/questions/118808/best-php-ide-for-linux-gnome/118983#118983 0 Answer by rjurney for Best PHP IDE for Linux / Gnome ? rjurney 2008-09-23T03:40:53Z 2008-09-23T03:40:53Z <p>I currently use <a href="http://www.activestate.com/Products/komodo_ide/index.mhtml" rel="nofollow">Activestate's Komodo IDE</a> and I love it. I switched from Eclipse for everything but Java. It is great for Perl/PHP/Python and Javascript/XHTML. I particularly like the Perl code completion, and the Regex scratch pad.</p> http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/118894#118894 8 Answer by rjurney for What are Code Smells? What is the best way to correct them? rjurney 2008-09-23T03:10:15Z 2008-09-23T03:10:15Z <p>Exception handling blocks which say only:</p> <p>/* We are SO SCREWED! */</p> http://stackoverflow.com/questions/118185/tips-on-helping-to-move-to-ms-sql-from-mysql/118403#118403 0 Answer by rjurney for Tips on helping to move to MS SQL from MySQL rjurney 2008-09-23T00:26:06Z 2008-09-23T00:26:06Z <p><a href="http://forums.mysql.com/read.php?60,124480,124480" rel="nofollow">http://forums.mysql.com/read.php?60,124480,124480</a> details using linked servers from SQL Server to MySQL to do the actual data migration.</p> http://stackoverflow.com/questions/111815/freelance-work-with-no-contract-who-owns-the-code/111824#111824 0 Answer by rjurney for Freelance work with no contract - who owns the code? rjurney 2008-09-21T19:30:20Z 2008-09-21T19:30:20Z <p>Did they pay him for the work? </p> <p>I believe this varies by state, and IANAL but the code typically resides with the person who writes it until they assign it to someone else. Except... if they paid for it, they have some expectation that it is theirs. </p> <p>Obviously they need a lawyer. Its probably just a consult.</p> http://stackoverflow.com/questions/97388/what-is-the-best-exercise-for-good-posture/97993#97993 0 Answer by rjurney for What is the Best Exercise for Good Posture? rjurney 2008-09-18T23:28:48Z 2008-09-18T23:28:48Z <p>Pilates made a major impact for me and helped to control my lower back pain.</p> <p><a href="http://www.easyvigour.net.nz/fitness/h_P2_pilates_instructions.htm" rel="nofollow">http://www.easyvigour.net.nz/fitness/h_P2_pilates_instructions.htm</a></p> http://stackoverflow.com/questions/95296/whats-the-most-embarassing-thing-youve-done-as-a-programmer/95320#95320 3 Answer by rjurney for What's the most embarassing thing you've done as a programmer? rjurney 2008-09-18T18:27:15Z 2008-09-18T18:27:15Z <p>Pants-crap mid workday.</p> http://stackoverflow.com/questions/280810/is-perl-worth-it/281242#281242 Comment by rjurney on Is Perl worth it? rjurney 2009-02-08T08:02:33Z 2009-02-08T08:02:33Z This response was paramount to reputation suicide :) http://stackoverflow.com/questions/163275/what-do-you-need-to-take-into-consideration-when-deciding-between-mysql-and-amazo/163290#163290 Comment by rjurney on What do you need to take into consideration when deciding between MySQL and Amazon's SimpleDB for a RoR app? rjurney 2008-12-31T23:39:26Z 2008-12-31T23:39:26Z Its pretty darn reliable, and its easy to pull data out of it into a SQL DB for analysis. http://stackoverflow.com/questions/362929/is-there-a-perl-orm-with-database-reverse-engineering Comment by rjurney on Is there a Perl ORM with database reverse engineering? rjurney 2008-12-31T23:05:06Z 2008-12-31T23:05:06Z Many ORMs require you to do the mapping manually from object to DB, brian. http://stackoverflow.com/questions/402100/what-is-simple/402122#402122 Comment by rjurney on What is "Simple"? rjurney 2008-12-31T03:18:42Z 2008-12-31T03:18:42Z I was gonna say that, but I couldn't figure out how to paste code with tabs. Anyone got a hint for me? http://stackoverflow.com/questions/366612/any-thoughts-on-rightscale-and-scalr-for-dynamic-ec2-instance-managment/368065#368065 Comment by rjurney on Any thoughts on RightScale and Scalr for dynamic Ec2 instance managment rjurney 2008-12-24T02:45:51Z 2008-12-24T02:45:51Z Depends on what problem you are trying to solve. Auto-scaling does not in any way prohibit dynamic scaling, but it sure is nice to have. http://stackoverflow.com/questions/379236/database-design-best-table-structure-for-capturing-the-user-friend-relationship/379243#379243 Comment by rjurney on Database design: Best table structure for capturing the User/Friend relationship? rjurney 2008-12-19T23:40:07Z 2008-12-19T23:40:07Z Hey, if you like it... upmod it :)