User Maxim - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T21:21:44Zhttp://stackoverflow.com/feeds/user/11587http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/645953/how-adobe-air-application-can-find-out-what-url-it-was-downloaded-from3How Adobe AIR application can find out what URL it was downloaded from?Maxim2009-03-14T14:00:06Z2009-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#8243631Answer by Maxim for Repeated aplication of functions in Scheme?Maxim2009-05-05T10:59:00Z2009-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#1291011Answer by Maxim for Is it possible to create INTERNATIONAL permalinks?Maxim2008-09-24T18:54:49Z2009-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#2931110Answer by Maxim for Hibernate transaction problemMaxim2008-11-15T22:00:10Z2008-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-devices1Single application build for multiple mobile devicesMaxim2008-09-16T11:10:48Z2008-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-transactions3Should web applications use explicit SQL transactions?Maxim2008-10-07T08:28:25Z2008-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-game1How much time does it take to build a FPS video game?Maxim2008-10-02T14:11:27Z2008-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-platform3Is there a way to use Lua on BREW 3.0 platform?Maxim2008-09-16T11:04:30Z2008-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#1292433Answer by Maxim for Formatting Timestamps in JavaMaxim2008-09-24T19:15:17Z2008-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-12Answer by Maxim for Making the most of below-average team membersMaxim2008-09-21T11:38:10Z2008-09-21T11:38:10Z<p>Just fire them.</p>
http://stackoverflow.com/questions/92159/how-do-you-vent-stress-as-a-programmer/93226#932261Answer by Maxim for How do you vent stress as a programmer?Maxim2008-09-18T14:46:52Z2008-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#930422Answer by Maxim for programmer's foodMaxim2008-09-18T14:29:20Z2008-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#711655Answer by Maxim for Which single IoC/DI container would you recommend using and why?Maxim2008-09-16T10:51:49Z2008-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#719750Answer by Maxim for How do you grab a text from webpage (Java)?Maxim2008-09-16T13:05:42Z2008-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#7086414Answer by Maxim for Developers' Bill Of RightsMaxim2008-09-16T09:57:37Z2008-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#645969Comment by Maxim on How Adobe AIR application can find out what URL it was downloaded from?Maxim2009-03-14T14:22:03Z2009-03-14T14:22:03ZWell, the problem is AIR-specific, as the AIR application is a single signed file. So there is no difference between "build a separate app" and "package a different domain-file with it". 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#177610Comment by Maxim on Should web applications use explicit SQL transactions?Maxim2008-10-07T08:34:07Z2008-10-07T08:34:07ZCould you please provide any reasons why one should use transactions and do not use autocommit? And there is no "unit of work" 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#72703Comment by Maxim on Single application build for multiple mobile devicesMaxim2008-09-17T06:33:37Z2008-09-17T06:33:37ZHmm... How exactly Aspects can help? Any details?