User Maxim - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T21:21:44Z http://stackoverflow.com/feeds/user/11587 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/645953/how-adobe-air-application-can-find-out-what-url-it-was-downloaded-from 3 How Adobe AIR application can find out what URL it was downloaded from? Maxim 2009-03-14T14:00:06Z 2009-11-05T08:49:55Z <p>We have an Adobe AIR application which could be possibly downloaded from multiple domains. And when it's run, it should connect back to the site it was downloaded from to get data to show to the user.</p> <p>So far we have a separate application build for each domain with a site URL hardcoded into it. And I wonder is there a way for AIR application to find out at runtime the URL (or at least domain) from which it was downloaded?</p> <p>What we would like to have is a single downloadable binary served from all different domains, which still can know it's origin URL.</p> http://stackoverflow.com/questions/249557/repeated-aplication-of-functions-in-scheme/824363#824363 1 Answer by Maxim for Repeated aplication of functions in Scheme? Maxim 2009-05-05T10:59:00Z 2009-05-05T10:59:00Z <pre><code>(define (repeated f n) (if (= n 1) f (compose f (repeated f (- n 1))))) </code></pre> http://stackoverflow.com/questions/127144/is-it-possible-to-create-international-permalinks/129101#129101 1 Answer by Maxim for Is it possible to create INTERNATIONAL permalinks? Maxim 2008-09-24T18:54:49Z 2009-03-20T17:25:02Z <p>Take a look at <a href="http://wikipedia.org/" rel="nofollow">Wikipedia. They use national characters in URLs.</p> <p>For example, Russian home page URL is: http://ru.wikipedia.org/wiki/Заглавная_страница</a>. The browser transparently encodes all non-ASCII characters and replaces them by their codes when sending URL to the server. But on the web page all URLs are human-readable.</p> <p>So you don't need to do anything special -- just put your product names into URLs as is. The webserver should be able to decode them for your application automatically.</p> http://stackoverflow.com/questions/244381/hibernate-transaction-problem/293111#293111 0 Answer by Maxim for Hibernate transaction problem Maxim 2008-11-15T22:00:10Z 2008-11-15T22:00:10Z <p>What about using Session.clear() and/or Session.evict()?</p> http://stackoverflow.com/questions/71277/single-application-build-for-multiple-mobile-devices 1 Single application build for multiple mobile devices Maxim 2008-09-16T11:10:48Z 2008-10-08T18:19:20Z <p>Is it possible to have one application binary build for multiple mobile devices (on <a href="http://brew.qualcomm.com/brew/" rel="nofollow">BREW</a> platform), rather than making a separate build for each device using build script with conditional compilation.</p> <p>In particular is is possible to use single BREW application build for multiple screen resolutions?</p> <p>Note that the goal is to have a single <em>binary</em> build. If it would be just to have a single codebase, than conditional compilation and smart build script would do the trick.</p> http://stackoverflow.com/questions/177597/should-web-applications-use-explicit-sql-transactions 3 Should web applications use explicit SQL transactions? Maxim 2008-10-07T08:28:25Z 2008-10-07T15:26:57Z <p>Consider a regular web application doing mostly form-based CRUD operations over SQL database. Should there be explicit transaction management in such web application? Or should it simply use autocommit mode? And if doing transactions, is "transaction per request" sufficient?</p> http://stackoverflow.com/questions/162485/how-much-time-does-it-take-to-build-a-fps-video-game 1 How much time does it take to build a FPS video game? Maxim 2008-10-02T14:11:27Z 2008-10-02T22:26:10Z <p>When building a "first person shooter" game similar to <a href="http://en.wikipedia.org/wiki/Doom_3" rel="nofollow">Doom 3</a>, <a href="http://en.wikipedia.org/wiki/Quake_4" rel="nofollow">Quake 4</a> or <a href="http://en.wikipedia.org/wiki/Crysis" rel="nofollow">Crysis</a> (on a licensed engine), how much time is it going to take, including engine tweaks, 3D modeling, level building, and testing, assuming there is a team of capable software engineers, 3D-modelers, level-designers and testers.</p> <p>And is there any significant difference in development time between PC and console games?</p> http://stackoverflow.com/questions/71239/is-there-a-way-to-use-lua-on-brew-3-0-platform 3 Is there a way to use Lua on BREW 3.0 platform? Maxim 2008-09-16T11:04:30Z 2008-10-02T14:40:32Z <p>It looks like <a href="http://brew.qualcomm.com/brew/" rel="nofollow">BREW</a> 4.0 will have Lua included. But is it possible to use Lua on older BREW 3.0 (or even BREW 2.0)?</p> http://stackoverflow.com/questions/129181/formatting-timestamps-in-java/129243#129243 3 Answer by Maxim for Formatting Timestamps in Java Maxim 2008-09-24T19:15:17Z 2008-09-24T19:15:17Z <p>Dates are totally broken in Java. Sun screwed is twice (first with java.util.Date and second with java.util.Calendar).</p> <p>Use <a href="http://joda-time.sourceforge.net/" rel="nofollow">Joda Time</a> instead. It's done right. you will never have to look back at JDK Dates.</p> <p>...You may ask what about database access, say, via Hibernate? Don't worry, Joda time integrates with Hibernate too.</p> http://stackoverflow.com/questions/110600/making-the-most-of-below-average-team-members/110816#110816 -12 Answer by Maxim for Making the most of below-average team members Maxim 2008-09-21T11:38:10Z 2008-09-21T11:38:10Z <p>Just fire them.</p> http://stackoverflow.com/questions/92159/how-do-you-vent-stress-as-a-programmer/93226#93226 1 Answer by Maxim for How do you vent stress as a programmer? Maxim 2008-09-18T14:46:52Z 2008-09-18T14:46:52Z <p>Alcohol! Have some beer, or perhaps vodka and it will definitely eliminate stress and put you into sweet nirvana.</p> http://stackoverflow.com/questions/92257/programmers-food/93042#93042 2 Answer by Maxim for programmer's food Maxim 2008-09-18T14:29:20Z 2008-09-18T14:29:20Z <p>Do <strong>not</strong> eat while coding -- it's way too unhealthy. When your urge to eat comes just walk away from the machine, take a small break and eat whatever you want, drink coffee/beer, have some rest. Then get back to work.</p> http://stackoverflow.com/questions/71041/which-single-ioc-di-container-would-you-recommend-using-and-why/71165#71165 5 Answer by Maxim for Which single IoC/DI container would you recommend using and why? Maxim 2008-09-16T10:51:49Z 2008-09-16T15:04:21Z <p>Use <a href="http://code.google.com/p/google-guice/" rel="nofollow">Guice</a> on Java if you need Dependency Injection. Stay away from Spring as they put way too much of unrelated stuff into their product. Unrelated to dependency injection, that is.</p> <p>Also, Guice is XML-free (code annotations-only). </p> <p>And for those who claims that "XML configuration may allow change the application without recompiling"...</p> <ul> <li>There is no separate "compiling" stage anymore -- just [Ctrl-S] to save the file in any modern IDE and it's compiled already</li> <li>Compiler will check Guice configuration and spot most of errors instantly. And XML mistake is to be revealed at runtime... not good.</li> <li>And by the way, where should those reconfigured beans <em>code</em> come from?</li> </ul> http://stackoverflow.com/questions/71491/how-do-you-grab-a-text-from-webpage-java/71975#71975 0 Answer by Maxim for How do you grab a text from webpage (Java)? Maxim 2008-09-16T13:05:42Z 2008-09-16T13:05:42Z <p>If your "web sources" are regular websites using HTML (as opposed to structured XML format like RSS) I would suggest to take a look at <a href="http://htmlunit.sourceforge.net/" rel="nofollow">HTMLUnit</a>. </p> <p>This library, while targeted for testing, is a really general purpose "Java browser". It is built on a Apache httpclient, Nekohtml parser and Rhino for Javascript support. It provides a really nice API to the web page and allows to traverse website easily.</p> http://stackoverflow.com/questions/70846/developers-bill-of-rights/70864#70864 14 Answer by Maxim for Developers' Bill Of Rights Maxim 2008-09-16T09:57:37Z 2008-09-16T09:57:37Z <p>As in "Extreme Programming" by Kent Beck:</p> <ul> <li>The programmer has the right to estimate work and have those estimates respected by the rest of the team.</li> <li>The programmer has the right to honestly report progress.</li> <li>The programmer has the right to produce high-quality work at all times.</li> <li>The programmer has the right to know what is most important to work on next.</li> <li>The programmer has the right to ask business-oriented questions whenever they arise.</li> </ul> http://stackoverflow.com/questions/645953/how-adobe-air-application-can-find-out-what-url-it-was-downloaded-from/645969#645969 Comment by Maxim on How Adobe AIR application can find out what URL it was downloaded from? Maxim 2009-03-14T14:22:03Z 2009-03-14T14:22:03Z Well, the problem is AIR-specific, as the AIR application is a single signed file. So there is no difference between &quot;build a separate app&quot; and &quot;package a different domain-file with it&quot;. The point of the question is to have a single downloadable binary, which still can know it's origin URL. http://stackoverflow.com/questions/177597/should-web-applications-use-explicit-sql-transactions/177610#177610 Comment by Maxim on Should web applications use explicit SQL transactions? Maxim 2008-10-07T08:34:07Z 2008-10-07T08:34:07Z Could you please provide any reasons why one should use transactions and do not use autocommit? And there is no &quot;unit of work&quot; besides handling POST HTTP request, validation data and storing them into database via single INSERT or UPDATE. http://stackoverflow.com/questions/71277/single-application-build-for-multiple-mobile-devices/72703#72703 Comment by Maxim on Single application build for multiple mobile devices Maxim 2008-09-17T06:33:37Z 2008-09-17T06:33:37Z Hmm... How exactly Aspects can help? Any details?