User gsmd - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T14:12:43Z http://stackoverflow.com/feeds/user/15187 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1817483/what-does-it-take-to-port-a-classic-game-to-a-new-platform 2 What does it take to port a classic game to a new platform? gsmd 2009-11-30T01:39:04Z 2009-11-30T02:12:06Z <p>I'm thinking about starting a crazy enough hobby project that would span across several years and would include disassembling &amp; OpenGL programming.<br> Having almost finished my 3rd Android app, I must say that I love the platform and will program for it.<br> Now, let's take the classic Carmageddon game as a porting candidate. </p> <p>The question boils down to:</p> <ul> <li>What tools have been used back then?</li> <li>What specific knowledge would be valuable for this kind of taks (math &amp; general gamedev knowledge aside)?</li> </ul> <p>EDIT: Legal questions aside.</p> http://stackoverflow.com/questions/1793338/drawable-grayscale 0 Drawable => grayscale gsmd 2009-11-24T22:22:16Z 2009-11-30T00:11:13Z <p>What would be the right way to turn a color Drawable into a grayscale one (to indicate disabled state)?</p> <p>EDIT:<br> B/W => grayscale</p> http://stackoverflow.com/questions/1793338/drawable-grayscale/1817243#1817243 1 Answer by gsmd for Drawable => grayscale gsmd 2009-11-30T00:11:13Z 2009-11-30T00:11:13Z <p>Some coments to the answer of @intgr.<br> 1. <code>Bitmap.Config.RGB_8888</code> to preserve the alpha-channel.<br> 2. A little extra code:</p> <pre><code>//remember, you are converting a .png image, as opposed to a Drawable defined in .xml Bitmap colorBitmap = ((BitmapDrawable)drawable).getBitmap(); // the code by intgr Drawable grayscaleDrawable = new BitmapDrawable(grayscaleBitmap); </code></pre> http://stackoverflow.com/questions/1804913/why-does-eclipse-crash-with-xmx-xxmaxpermsize-above-certain-values 1 Why does Eclipse crash with Xmx, XX:MaxPermSize above certain values? gsmd 2009-11-26T17:33:02Z 2009-11-27T05:17:55Z <p>Running Eclipse 3.5.1, JDK 1.6.0_17 on WinXP SP3 32Bit with 3.5 gigs of RAM.<br> I'm aware of the known <a href="http://stackoverflow.com/questions/142357/what-are-the-best-jvm-settings-for-eclipse">Eclipse best practices</a>, still trying to figure out eclipse.ini. </p> <p>This will launch: <code>-Xmx588m</code> and this won't: <code>-Xmx589m</code>.<br> Same with <code>-XX:MaxPermSize</code>. Anything above <code>-XX:MaxPermSize=140m</code> won't launch.<br> The screen of death is simlar to <a href="http://punyaku.com/eclipse34%5Fstart%5Ferror.png" rel="nofollow">this</a> (taken from <a href="http://stackoverflow.com/questions/1587002/eclipse-3-4-cant-start">here</a>).</p> <p>Any ideas on why might this be happening?</p> http://stackoverflow.com/questions/1806286/getting-installed-app-size 0 Getting installed app size gsmd 2009-11-27T00:37:58Z 2009-11-27T00:37:58Z <p>I'm trying to figure out how to get the size of an installed app.<br> What's already failed:<br> - <code>new File('/data/app/some.apk')</code> - reports incorrect size<br> - <code>PackageManager.getPackageSizeInfo(String packageName, IPackageStatsObserver observer)</code> - is <code>@hide</code> and relies on some obscure <code>IPackageStatsObserver</code> for result so I can't call it via reflection.</p> http://stackoverflow.com/questions/1769759/unicodeself-doesnt-get-called-by-logging 0 __unicode__(self) doesn't get called by logging gsmd 2009-11-20T11:03:19Z 2009-11-20T11:23:47Z <p>Long story short:</p> <pre><code># this works as expected: logging.error(my_object.__unicode__()) # this doesn't: logging.error(my_object) </code></pre> <p>Same result with <code>__str__(self)</code>. Why?</p> <p>EDIT: <code>__str__</code> actually works.</p> http://stackoverflow.com/questions/990754/how-to-leave-a-python-virtualenv/1737511#1737511 0 Answer by gsmd for How to leave a python virtualenv? gsmd 2009-11-15T13:19:27Z 2009-11-15T13:19:27Z <p>Alternatively, run <code>source /etc/profile</code>.</p> http://stackoverflow.com/questions/1091048/alternatives-to-window-scrollmaxy 0 Alternatives to window.scrollMaxY? gsmd 2009-07-07T08:36:47Z 2009-11-14T00:19:34Z <p>I' trying to use <em>window.pageYOffset</em> &amp; <em>window.scrollMaxY</em> to calculate the current page progress. This approach works under FF3.5 but under webkit <em>window.scrollMaxY</em> is undefined.</p> http://stackoverflow.com/questions/1536982/wrapper-google-appengine-ext-db-model-django-db-models-model 0 Wrapper google.appengine.ext.db.Model => django.db.models.Model gsmd 2009-10-08T10:34:50Z 2009-11-10T07:30:47Z <p>Given that gae &amp; django persistence layers are quite similar, I'm wondering whether someone has tried creating a wrapper? Say, could be useful for utilizing django.forms.ModelForm. Are there any fundamental problems with this?</p> http://stackoverflow.com/questions/80692/java-logger-that-automatically-determines-callers-class-name 1 Java logger that automatically determines caller's class name gsmd 2008-09-17T07:06:47Z 2009-11-10T04:54:49Z <pre><code>public static Logger getLogger() { final Throwable t = new Throwable(); final StackTraceElement methodCaller = t.getStackTrace()[1]; final Logger logger = Logger.getLogger(methodCaller.getClassName()); logger.setLevel(ResourceManager.LOGLEVEL); return logger; } </code></pre> <p>This method would return a logger that knows the class it's logging for. Any ideas against it?</p> http://stackoverflow.com/questions/1466827/automatically-create-an-admin-user-when-running-djangos-manage-py-syncdb/1616858#1616858 0 Answer by gsmd for Automatically create an admin user when running Django's ./manage.py syncdb gsmd 2009-10-24T03:34:29Z 2009-10-24T03:34:29Z <p>I'm using sqlite as a dev database. After changing model classes, just drop the corresponding tables with <strong>sqlite manager</strong> (a firefox plugin, open to inspect the data anyways) and run <code>manage.py syncdb</code> to recreate what's missing.</p> http://stackoverflow.com/questions/470430/java-util-logging-logger-doesnt-respect-java-util-logging-level 0 java.util.logging.Logger doesn't respect java.util.logging.Level ? gsmd 2009-01-22T19:12:27Z 2009-10-22T18:52:51Z <p>In plain JSE 6 environment:</p> <pre><code>Logger l = Logger.getLogger("nameless"); l.setLevel(Level.ALL); l.fine("somemessage"); </code></pre> <p>Nothing shows up in Eclipse console. <em>l.info("")</em> and above works just fine, but anything below <em>fine</em> just doesn't seem to work. What's could be wrong? TIA.</p> http://stackoverflow.com/questions/620993/determining-binary-text-file-type 6 Determining binary/text file type? gsmd 2009-03-07T00:31:04Z 2009-10-21T06:39:18Z <p>Namely, how would you tell an archive (jar/rar/etc.) file from a textual (xml/txt, encoding-independent) one?</p> http://stackoverflow.com/questions/348098/are-you-a-self-taught-programmer-or-did-you-take-a-programming-course/1550481#1550481 0 Answer by gsmd for Are you a self taught programmer or did you take a programming course? gsmd 2009-10-11T11:27:54Z 2009-10-11T11:27:54Z <p><code>self.__taught__</code> (BTW, some Python nuances are driving me crazy).</p> <p>Started with <strong>Thinking in Java 4</strong> which was sooo much over my head for the first couple of months. Literally spent a week trying to figure out how to write 2 Dog classes with methods that would make them bark. Once you get started and develop a required mindset, things get much easier.</p> <p>Anyways, I think a person can master any profession she chooses given that she likes it and is willing to learn on a daily basis. By mastering I don't mean being a superstar but a decent, thinking professional.</p> http://stackoverflow.com/questions/1518484/stripping-code-for-production 0 Stripping code for production gsmd 2009-10-05T06:14:55Z 2009-10-05T09:55:19Z <p>So I want to physically get rid of debugging code before deploying it to appengine. What I'm doing right now is a simple check:</p> <pre><code>settings.py: DEBUG = os.environ['HTTP_HOST'] == 'localhost' from settings import DEBUG if DEBUG: #ensure I haven't screwed smth up during refactoring </code></pre> <p>But this check will be consuming CPU cycles during each call, right? In Java, there's a pattern that would strip debugging code at compile time:</p> <pre><code>public static final boolean DEBUG = true; // change to false before going production if(DEBUG){ //debug logging } </code></pre> <p>Is there a clean way to achieve the same effect in Python or should I wrap the code to be stripped with smth like <code>#%STRIP_ME%</code> and then run a custom script against it?</p> http://stackoverflow.com/questions/1512389/converting-urls-into-lowercase 0 Converting urls into lowercase? gsmd 2009-10-03T00:21:15Z 2009-10-03T03:01:44Z <p>Is there any straightforward to convert all incoming urls to lowercase before they get matched against urlpatterns in <code>run_wsgi_app(webapp.WSGIApplication(urlpatterns))</code>? </p> http://stackoverflow.com/questions/1507170/urllib2-submitting-a-form-and-then-redirecting 0 urllib2: submitting a form and then redirecting gsmd 2009-10-02T00:16:10Z 2009-10-02T04:22:42Z <p>My goal is to come up with a portable urllib2 solution that would POST a form and then redirect the user to what comes out. The POSTing part is simple:</p> <pre><code>request = urllib2.Request('https://some.site/page', data=urllib.urlencode({'key':'value'})) response = urllib2.urlopen(request) </code></pre> <p>Providing <code>data</code> sets request type to POST. Now, what I suspect all the data I should care about comes from <code>response.info()</code> &amp; <code>response.geturl()</code>. I should do a <code>self.redirect(response.geturl())</code> inside a <code>get(self)</code> method of <code>webapp.RequestHandler</code>.</p> <p>But what should I do with headers? Anything else I've overlooked? Code snippets are highly appreciated. :)</p> <p>TIA.</p> <p>EDIT: Here's a naive solution I came up with. Redirects but the remote server shows an error indicating that there's no match to the previously POSTed form:</p> <pre><code>info = response.info() for key in info: self.response.headers[key] = info[key] self.response.headers['Location'] = response.geturl() self.response.set_status(302) self.response.clear() </code></pre> http://stackoverflow.com/questions/1245632/is-there-any-tool-to-backup-restore-google-datastore-entities/1500579#1500579 1 Answer by gsmd for Is there any tool to backup/restore Google Datastore entities? gsmd 2009-09-30T20:49:08Z 2009-09-30T20:49:08Z <p><a href="http://code.google.com/appengine/articles/gae%5Fbackup%5Fand%5Frestore.html" rel="nofollow">http://code.google.com/appengine/articles/gae%5Fbackup%5Fand%5Frestore.html</a></p> http://stackoverflow.com/questions/1457511/creating-a-redistributable-django-app 0 Creating a redistributable django app gsmd 2009-09-22T00:01:57Z 2009-09-22T01:55:55Z <p>In Java world, a common way to distribute a web app is to package it along with tomcat. What's the appropriate way to achieve smth like that with django (or any wsgi app for that matter)?</p> http://stackoverflow.com/questions/1445638/django-webapp-living-together-on-gae 3 Django & webapp living together on GAE? gsmd 2009-09-18T16:34:42Z 2009-09-19T07:42:40Z <p>Is it possible to have both frameworks available? So that I could have</p> <pre><code>from google.appengine.ext import webapp from django.template.loader import render_to_string class MainPage(webapp.RequestHandler): def get(self): self.response.out.write(render_to_string('some.template')) </code></pre> <p>and</p> <pre><code>from django.http import HttpResponse def hello(request): return HttpResponse("Hello world") </code></pre> <p>running mapped to different URLs?</p> <p>EDIT: The question basically boils down to how do I implement</p> <pre><code>urlpatterns = [ # webapp-style handler (r'/webapp', views.MainPage), # django (r'/django', views.hello), ] </code></pre> http://stackoverflow.com/questions/1085898/choosing-java-vs-python-on-google-app-engine/1442628#1442628 0 Answer by gsmd for Choosing Java vs Python on Google App Engine gsmd 2009-09-18T04:40:43Z 2009-09-18T04:40:43Z <p>Gone with Python even though GWT seems a perfect match for the kind of an app I'm developing. JPA is pretty messed up on GAE (e.g. no @Embeddable and other obscure non-documented limitations). Having spent a week, I can tell that Java just doesn't feel right on GAE at the moment.</p> http://stackoverflow.com/questions/1436552/unique-pin-generator 0 unique pin generator gsmd 2009-09-17T03:17:49Z 2009-09-17T05:03:20Z <p>The task is to generate a given number of numeric pins of a given length. Here's the code I came up with for a particular case of numeric pins that don't start with 0:</p> <pre><code>def generate_pins(length, count): return random.sample(range(int('1' + '0' * (length - 1)), int('9' * length)), count) </code></pre> <p>How would you implement it?</p> <p>EDIT: Pins shouldn't repeat.</p> <p>EDIT2: Probably let's extend this example so that pin can contain any alphanumeric symbol.</p> http://stackoverflow.com/questions/1340528/how-to-trigger-an-event-when-scrollview-reach-the-bottom-with-android/1348016#1348016 1 Answer by gsmd for How to trigger an event when scrollView reach the bottom with Android? gsmd 2009-08-28T16:12:32Z 2009-08-28T16:12:32Z <p>Given the requirements, you'll likely be extending <strong>BaseAdapter</strong> (as opposed to CursorAdapter which utilizes a different mechanism).</p> <p>Here's a snippet for that:</p> <pre><code>public View getView(int position, View convertView, ViewGroup parent) { if (position == backingLinkedList.size()) { //get more items and add them to the backingLinkedList in a background thread notifyDataSetChanged(); } } </code></pre> http://stackoverflow.com/questions/1327816/maximizing-an-alertdialog 1 Maximizing an AlertDialog? gsmd 2009-08-25T11:57:58Z 2009-08-26T06:39:05Z <p>I'd like to show a Dialog that occupies as much screen space as possible.</p> <p>So, here's a sample:</p> <pre><code>AlertDialog dialog = new AlertDialog.Builder(ctx)......create(); Window w = dialog.getWindow(); WindowManager.LayoutParams lp = w.getAttributes(); lp.width = 320; lp.height = 480; w.setAttributes(lp); </code></pre> <p>Problem is, this doesn't change a thing. Why?</p> <p>TIA.</p> http://stackoverflow.com/questions/1321180/referencing-android-r-resources-am-i-on-the-safe-side 0 Referencing android.R resources - am I on the safe side? gsmd 2009-08-24T08:43:44Z 2009-08-24T17:02:42Z <p>The question boils down to whether phone manufacturers are required to keep resources that are available in SDK intact. Say, will android.R.drawable.ic_menu_preferences be the same file on any phone?</p> http://stackoverflow.com/questions/1308346/how-to-fetch-android-market-data-when-there-is-no-api/1311244#1311244 0 Answer by gsmd for How to fetch Android Market data when there is no API ? gsmd 2009-08-21T10:46:20Z 2009-08-21T10:46:20Z <p>As far as I know, they are using <a href="http://code.google.com/p/protobuf/" rel="nofollow">Protocol Buffers</a>. You'll have to sniff phone traffic while it's accessing the market connected over wifi.</p> http://stackoverflow.com/questions/1219312/android-selector-text-color 0 Android selector & text color gsmd 2009-08-02T17:18:34Z 2009-08-14T21:02:18Z <p>I want a simple TextView to behave the way simple_list_item_1 in a ListView does. Here's the XML:</p> <pre><code>&lt;TextView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_height="wrap_content" android:layout_width="fill_parent" android:gravity="center" android:focusable="true" android:minHeight="?android:attr/listPreferredItemHeight" android:textAppearance="?android:attr/textAppearanceLarge" android:background="@android:drawable/list_selector_background" /&gt; </code></pre> <p>Everything works except for the text color that (expectedly) doesn't change in focused state. How do I make it change to <code>textAppearanceLargeInverse</code>?</p> <p>TIA.</p> http://stackoverflow.com/questions/1219312/android-selector-text-color/1280213#1280213 0 Answer by gsmd for Android selector & text color gsmd 2009-08-14T21:02:18Z 2009-08-14T21:02:18Z <p>And selector is the answer here as well. Search for bright_text_dark_focused.xml in the sources, add to your project under res/color dir and then refer from the TextView as android:textColor="@color/bright_text_dark_focused".</p> http://stackoverflow.com/questions/1258645/change-scrolling-direction 0 Change scrolling direction gsmd 2009-08-11T06:04:26Z 2009-08-11T06:57:58Z <p>Say, a WebView with an html that scrolls vertically. What would be the basic steps to make it scroll horizontally (screen by screen)? Can't grasp the idea.</p> http://stackoverflow.com/questions/1254970/changing-text-color-in-a-webview 0 Changing text color in a WebView? gsmd 2009-08-10T13:43:14Z 2009-08-10T20:06:17Z <p>There's a method for altering background color but not font. Any ideas?</p> <p>TIA.</p> http://stackoverflow.com/questions/1793338/drawable-grayscale/1793734#1793734 Comment by gsmd on Drawable => grayscale gsmd 2009-11-25T15:22:08Z 2009-11-25T15:22:08Z Yeah, I want to do it on per-instance basis. Thanks for the snippet though. http://stackoverflow.com/questions/1769759/unicodeself-doesnt-get-called-by-logging/1769807#1769807 Comment by gsmd on __unicode__(self) doesn't get called by logging gsmd 2009-11-20T11:20:36Z 2009-11-20T11:20:36Z Turns out it actually works. http://stackoverflow.com/questions/1719261/is-there-an-easier-way-to-parse-xml-in-java/1719287#1719287 Comment by gsmd on Is there an easier way to parse XML in Java? gsmd 2009-11-12T01:37:02Z 2009-11-12T01:37:02Z Yes, xmlpullparser is the way to go on android (built-in, streaming). Just takes a bit time to wrap your head around it. http://stackoverflow.com/questions/550632/favorite-django-tips-features/946497#946497 Comment by gsmd on Favorite Django Tips & Features? gsmd 2009-11-08T11:39:16Z 2009-11-08T11:39:16Z Which is now at <a href="http://github.com/robhudson/django-debug-toolbar/" rel="nofollow">github.com/robhudson/django-debug-toolbar</a> http://stackoverflow.com/questions/1548210/how-to-force-the-use-of-ssl-for-some-url-of-my-django-application Comment by gsmd on How to force the use of SSL for some URL of my Django Application ? gsmd 2009-10-10T15:23:46Z 2009-10-10T15:23:46Z I'd suggest you find the answer at serverfault.com. http://stackoverflow.com/questions/1518484/stripping-code-for-production Comment by gsmd on Stripping code for production gsmd 2009-10-05T06:42:27Z 2009-10-05T06:42:27Z @Matthew Scharley Exactly. That's why I'm loving it. :) http://stackoverflow.com/questions/1507170/urllib2-submitting-a-form-and-then-redirecting/1507415#1507415 Comment by gsmd on urllib2: submitting a form and then redirecting gsmd 2009-10-03T00:54:03Z 2009-10-03T00:54:03Z So, I POST something to an URL, the server sets a cookie in the response and doesn't redirect. Now, I set the very same cookie to client and redirect him to that URL. What do I get wrong? http://stackoverflow.com/questions/1507170/urllib2-submitting-a-form-and-then-redirecting Comment by gsmd on urllib2: submitting a form and then redirecting gsmd 2009-10-03T00:51:27Z 2009-10-03T00:51:27Z Yes, I've tried to perform a &quot;hand over&quot;. http://stackoverflow.com/questions/1512389/converting-urls-into-lowercase/1512414#1512414 Comment by gsmd on Converting urls into lowercase? gsmd 2009-10-03T00:46:49Z 2009-10-03T00:46:49Z Thanks. But how will this work in '/(?P&lt;some_category&gt;\w+)/edit/(?P&lt;item_id&gt;\w+)/?' where 'edit' might be 'EDIT'? http://stackoverflow.com/questions/1507170/urllib2-submitting-a-form-and-then-redirecting/1507434#1507434 Comment by gsmd on urllib2: submitting a form and then redirecting gsmd 2009-10-02T02:55:23Z 2009-10-02T02:55:23Z So, the client browser 1)submits a form (POST) 2)gets redirected to some page (GET). I want do do 1 on the serverside and leave 2 to the client browser (like it's done 1 itself). http://stackoverflow.com/questions/1445638/django-webapp-living-together-on-gae Comment by gsmd on Django & webapp living together on GAE? gsmd 2009-09-20T00:09:33Z 2009-09-20T00:09:33Z Thanks, jamtoday. What projects would you suggest to look at? http://stackoverflow.com/questions/1436552/unique-pin-generator/1436574#1436574 Comment by gsmd on unique pin generator gsmd 2009-09-17T03:44:43Z 2009-09-17T03:44:43Z Guess shouldn't be expecting more answers. :) http://stackoverflow.com/questions/1436552/unique-pin-generator Comment by gsmd on unique pin generator gsmd 2009-09-17T03:32:32Z 2009-09-17T03:32:32Z @Greg Edited the initial post. http://stackoverflow.com/questions/1436552/unique-pin-generator Comment by gsmd on unique pin generator gsmd 2009-09-17T03:26:24Z 2009-09-17T03:26:24Z Nope. I'm way too old for homeworks. :) Learning Python and looking for a proper way to do things. http://stackoverflow.com/questions/1313684/issue-using-socketconnection-with-a-blackberry-using-mds/1320783#1320783 Comment by gsmd on Issue using SocketConnection with a Blackberry using MDS gsmd 2009-09-04T13:58:13Z 2009-09-04T13:58:13Z Exactly. Same on Android.