User Artem Russakovskii - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T05:25:11Z http://stackoverflow.com/feeds/user/47680 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1280447/which-server-parameters-to-tweak-in-solr-if-i-expect-heavy-writes-and-light-reads 0 Which server parameters to tweak in Solr if I expect heavy writes and light reads? Artem Russakovskii 2009-08-14T22:07:51Z 2009-12-21T11:12:37Z <p>I am facing scalability issues designing a new Solr cluster and I need to master to be able to handle a relatively high rate of updates with almost no reads - they can be done via slaves.</p> <p>My existing Solr instance is occupying a huge amount of RAM, in fact it started swapping at only 4.5mil docs. I am interested in making the footprint as little as possible in RAM, even if it affects search performance.</p> <p>So, which Solr config values can I tweak in order to accomplish this?</p> <p>Thank you.</p> http://stackoverflow.com/questions/1886763/android-and-storing-loading-preferences-for-resources-how-to-achieve-consistenc 0 Android and storing/loading preferences for resources - how to achieve consistency? Artem Russakovskii 2009-12-11T09:07:04Z 2009-12-11T09:24:13Z <p>I'm writing an application and need some help with consistently storing and loading preferences related to certain resources. Let me give an example.</p> <p>Suppose I have 10 spinners. They all have the same functionality but different meaning. Because they have the same functionality, I can bind them to the same <code>onItemSelectedListener</code>, which will then deal with the selected value.</p> <p>Well, what if I also want to store the preferences for each spinner? For example, when a spinner value is selected, I'd store a key "spinner <strong>SOMETHING</strong>" = SOME_DATA.</p> <p>The problem is - what should this <strong>SOMETHING</strong> be? The listener has the following signature:</p> <p><code>public void onItemSelected(AdapterView parent, View v, int position, long id)</code></p> <p>The position and id are not helpful here as they're set relative to each spinner.</p> <p>However, the parent, which in this case is the spinner itself, should have all the information I need. I tried using parent.getId() to get a resource ID of each spinner and store the preference using a key "spinner ID" but apparently these resource IDs change when you add more resources into your app, so my settings would get reset because the keys change.</p> <p>What should I do here? I can't seem to find a simple parent.getName() function of some sort that would return me a consistent name of each spinner.</p> <p>Thank you.</p> http://stackoverflow.com/questions/1886654/android-how-do-you-mix-and-match-colors-styles-and-sizes-in-a-single-view 0 Android: how do you mix and match colors, styles, and sizes in a single view? Artem Russakovskii 2009-12-11T08:39:09Z 2009-12-11T08:48:40Z <p>Is it possible to style a single, say, TextView in Android with multiple alternating styles, colors, and sizes? Think inline HTML or CSS but in the Android world.</p> <p>As an extreme, to demonstrate the point, let's say I wanted to have a word "CIRCUS" with each letter a being different color. Do I have to create 6 TextViews for this or can this be done in one?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1886650/are-there-any-stable-and-production-quality-nosql-datastores/1886658#1886658 0 Answer by Artem Russakovskii for Are there any stable and production quality nosql datastores ? Artem Russakovskii 2009-12-11T08:40:39Z 2009-12-11T08:40:39Z <p>Umm, <a href="http://memcached.org/" rel="nofollow">memcached</a>?</p> http://stackoverflow.com/questions/1864905/how-to-resolve-500-internal-server-error/1864927#1864927 0 Answer by Artem Russakovskii for How to resolve 500 Internal Server Error ? Artem Russakovskii 2009-12-08T06:09:05Z 2009-12-08T06:09:05Z <p>Look in the server log, which on Linux is normally in something like /var/log/apache2 or /var/log/httpd.</p> <p>Download Firebug, intercept the ajax call and load it in the browser or look at its output. Make sure you server is set to report errors (look at php.ini for PHP settings, for example). Whatever is causing it is probably going to show up.</p> <p>Make sure you don't actually throw the error 500 yourself in the code.</p> <p>If you use PHP, then use a debugger, such as PHPEd or xdebug and step through the code. That's the way I debug my PHP and it's the best way, though takes some time to set up.</p> http://stackoverflow.com/questions/1831440/is-there-a-way-to-mount-android-img-to-access-the-avd-android-virtual-device-c 0 Is there a way to mount Android .img to access the AVD (Android Virtual Device) contents? Artem Russakovskii 2009-12-02T08:30:07Z 2009-12-02T08:46:21Z <p>I feel a bit blind developing on an emulator for Android and not being able to see the file system on the AVD (.img).</p> <p>Is there a way to mount it in Windows or Linux, so that I could at least see the file listing and maybe contents?</p> <p>Bonus if it's mounted with write permissions as well.</p> <p>Thank you.</p> http://stackoverflow.com/questions/999066/why-does-php-5-2-disallow-abstract-static-class-methods 3 Why does PHP 5.2 disallow abstract static class methods? Artem Russakovskii 2009-06-16T00:07:03Z 2009-11-30T06:51:21Z <p>After enabling strict warnings in PHP 5.2, I saw a load of strict standards warnings from a project that was originally written without strict warnings:</p> <blockquote> <p><strong>Strict Standards</strong>: <strong>Static function</strong> Program::getSelectSQL() <strong>should not be abstract</strong> in Program.class.inc</p> </blockquote> <p>The function in question belongs to an abstract parent class Program and is declared abstract static because it should be implemented in its child classes, such as TVProgram.</p> <p>I did find references to this change <a href="http://php.mirror.facebook.net/manual/en/migration52.incompatible.php" rel="nofollow">here</a>:</p> <blockquote> <p>Dropped abstract static class functions. Due to an oversight, PHP 5.0.x and 5.1.x allowed abstract static functions in classes. As of PHP 5.2.x, only interfaces can have them. </p> </blockquote> <p>My question is: can someone explain in a clear way why there shouldn't be an abstract static function in PHP?</p> http://stackoverflow.com/questions/1811680/dial-number-without-prompt/1811825#1811825 1 Answer by Artem Russakovskii for Dial Number Without Prompt Artem Russakovskii 2009-11-28T06:58:26Z 2009-11-28T06:58:26Z <p>According to the API, <a href="http://developer.android.com/reference/android/content/Intent.html#ACTION%5FCALL" rel="nofollow">ACTION_CALL</a> will do what you need but not to emergency numbers, while <a href="http://developer.android.com/reference/android/content/Intent.html#ACTION%5FDIAL" rel="nofollow">ACTION_DIAL</a> will display a dialer with the dial prompt but allows to call emergency numbers.</p> <p>I'm afraid there is no way to do what you want, for a good reason - to prevent misdials to emergency services. It's a precautionary measure.</p> http://stackoverflow.com/questions/778564/phpdoc-type-hinting-for-array-of-objects 3 PHPDoc type hinting for array of objects? Artem Russakovskii 2009-04-22T18:29:13Z 2009-11-26T13:56:04Z <p>So, in PHPDoc one can specify @var above the member variable declaration to hint at its type. Then an IDE, for ex. PHPEd, will know what type of object it's working with and will be able to provide a code insight for that variable.</p> <pre><code>&lt;?php class Test { /** @var SomeObj */ private $someObjInstance; } ?&gt; </code></pre> <p>This works great until I need to do the same to an array of objects to be able to get a proper hint when I iterate through those objects later on.</p> <p>So, is there a way to declare a PHPDoc tag to specify that the member variable is an array of SomeObj's? @var array is not enough, and @var array(SomeObj) doesn't seem to be valid, for example.</p> http://stackoverflow.com/questions/1160680/hidden-features-tricks-of-flash-development-flash-language-as2-3-and-flash-id 5 Hidden features/tricks of Flash development, Flash language (AS2/3), and Flash IDE Artem Russakovskii 2009-07-21T17:49:17Z 2009-11-16T00:56:59Z <p>Guys, I am thoroughly surprised that there is no Flash <em>Hidden Features</em> post yet in the <a href="http://beerpla.net/2009/06/21/hidden-features-of-perl-php-javascript-c-c-c-java-ruby-python-and-others-collection-of-incredibly-useful-lists/" rel="nofollow">Hidden Features series</a> that I've been tracking for a while now.</p> <p>There is a recent <a href="http://stackoverflow.com/questions/1103705/hidden-features-of-actionscript3-flex">AS3/Flex one</a> but it's not very active and I don't exactly mean just AS3 when I say Flash here.</p> <p>The Hidden Features series is great for people who are new to a certain language. It shows the ropes and certain valuable tricks, all in one place. I think it's a brilliant idea. Even experts sometimes find tricks they'd never heard about.</p> <p>When I started with Flash, I was taken aback by the Flash IDE and odd concepts of Flash, compared to other programming languages.</p> <p>So, here goes: what are some <strong>hidden features</strong> of <strong>Flash</strong> as a <strong>language (AS2/3)</strong> and the <strong>Flash IDE</strong>?</p> <p>Let the fun begin.</p> http://stackoverflow.com/questions/1736900/how-to-pull-most-recent-post-data-from-a-wordpress-blog/1736915#1736915 1 Answer by Artem Russakovskii for How to pull "most recent post" data from a Wordpress blog? Artem Russakovskii 2009-11-15T07:47:06Z 2009-11-15T07:47:06Z <p>What you need to use here is an RSS from the first blog and display it using a plugin or something you'd code yourself on the 2nd blog. The reasons for this approach are:</p> <ul> <li>simplicity of implementation</li> <li>security - functions that pull data from the database in blog 1 are not available to blog 2 (db settings, etc). I'm not sure if wordpress provides some sort of an oAuth API yet to pull this data in a secure way</li> </ul> <p>Something like <a href="http://wordpress.org/extend/plugins/kb-advanced-rss-widget/" rel="nofollow">KB Advanced RSS Widget</a> should do for your case.</p> http://stackoverflow.com/questions/1675937/eclipse-doesnt-recognize-style-in-the-android-layout-builder 0 Eclipse doesn’t recognize style in the Android Layout builder? Artem Russakovskii 2009-11-04T19:06:47Z 2009-11-06T21:42:57Z <p>Since Android supports <a href="http://developer.android.com/guide/topics/ui/themes.html" rel="nofollow">styles</a> and it's good practice to use them (similar to CSS), I made a new style and applied it to 3 buttons.</p> <p>The Layout builder in Eclipse did not register the changes and either broke (showed nothing) or didn't apply styles at all.</p> <p>After running the app in the emulator, styles are correctly applied.</p> <p>So is there something I'm missing or the Android plugin doesn't support styles?</p> http://stackoverflow.com/questions/1677110/eclipse-auto-format-xml-files-on-save 1 Eclipse: auto format XML files on save Artem Russakovskii 2009-11-04T22:28:25Z 2009-11-05T08:36:18Z <p>Is it possible to somehow auto-format when saving XML files in Eclipse?</p> <p>I know it's <a href="http://stackoverflow.com/questions/234594/eclipse-can-you-format-code-on-save">possible to do it</a> for Java files, but I would like it to happen for XML files as well.</p> <p>Specifically, I'm using and loving the auto format feature for XML files while developing for Android, as Android is quite heavy on using XML files.</p> http://stackoverflow.com/questions/1678990/php-parse-urls-with-multiple-variables-with-get-request/1679025#1679025 0 Answer by Artem Russakovskii for php parse urls with multiple variables with get request Artem Russakovskii 2009-11-05T08:02:15Z 2009-11-05T08:02:15Z <p>Since you didn't url encode your url param, everything after the first &amp; is treated as the param to the original url.</p> http://stackoverflow.com/questions/1675977/trouble-with-mysql-5-1-and-range/1676046#1676046 3 Answer by Artem Russakovskii for Trouble with MySQL 5.1 and RANGE? Artem Russakovskii 2009-11-04T19:28:08Z 2009-11-04T19:28:08Z <p>Can you not just use the ` character to surround any usage of the word range?</p> http://stackoverflow.com/questions/1671984/how-can-you-dynamically-put-different-patterns-on-images-in-a-webpage/1672028#1672028 10 Answer by Artem Russakovskii for How can you dynamically put different patterns on images in a webpage . . Artem Russakovskii 2009-11-04T06:34:35Z 2009-11-04T07:31:45Z <p>You could use the ImageMagick libraries to make any combination of superimpositions your and your users' hearts desire. This way, you're not limited to just something simple that can be achieved with CSS.</p> <p><a href="http://www.imagemagick.org/script/examples.php" rel="nofollow">ImageMagick examples</a></p> http://stackoverflow.com/questions/1671967/android-database/1672045#1672045 1 Answer by Artem Russakovskii for android database Artem Russakovskii 2009-11-04T06:40:37Z 2009-11-04T06:40:37Z <p><a href="http://almondmendoza.com/2009/10/12/how-to-insert-image-data-to-sqlite-database-in-android-and-how-to-retrieve-it-back/" rel="nofollow">This tutorial</a> should answer your question.</p> http://stackoverflow.com/questions/1619133/hidden-features-of-android-development 26 Hidden features of Android development? Artem Russakovskii 2009-10-24T21:09:52Z 2009-11-03T22:33:04Z <p>Guys, I am surprised that there is no Android <em>Hidden Features</em> post yet in the <strong><a href="http://beerpla.net/2009/06/21/hidden-features-of-perl-php-javascript-c-c-c-java-ruby-python-and-others-collection-of-incredibly-useful-lists/" rel="nofollow">Hidden Features series</a></strong> that I've been tracking for a while now.</p> <p>The Hidden Features series is great for people who are new to a certain language. It shows the ropes and certain valuable tricks, all in one place. I think it's a brilliant idea. Even experts sometimes find tricks they'd never heard about.</p> <p>I am starting Android development and I'd love to hear about its hidden features, tips, tricks, and pitfalls.</p> <p>So, here goes: what are some <strong>hidden features</strong> of <strong>Android</strong>?</p> <p><strong>Update:</strong> Started a bounty due to lack of answers. The topic is definitely prevalent, especially now that Android is gaining popularity.</p> http://stackoverflow.com/questions/1669215/flash-and-android-common-future/1670330#1670330 0 Answer by Artem Russakovskii for Flash and Android - common future? Artem Russakovskii 2009-11-03T21:45:03Z 2009-11-03T21:45:03Z <p>I think that the big guys follow the money. By that I mean, the more popular the platform/product/whatever, the higher the chances are that it will be developed for and the higher the priority.</p> <p>Considering Android is and will continue exploding, combined with Adobe's already existing interest to port Flash to mobile phones, and the whole fact that mobile is the future of tech, I would say it's very safe to say we will see Flash for Android, Pre, and other devices in full strength [most likely in very buggy shapes] in the near future.</p> <p>Of course, we ARE talking about Adobe here, so the real answer is 'who the hell knows'.</p> http://stackoverflow.com/questions/1619133/hidden-features-of-android-development/1620501#1620501 9 Answer by Artem Russakovskii for Hidden features of Android development? Artem Russakovskii 2009-10-25T10:05:21Z 2009-11-03T20:39:25Z <p>I guess I'll start then.</p> <p><hr /></p> <p>A nice hidden feature I think is the Best Practices of the Android documentation. It lists plenty of great tips for designing responsive and fast apps.</p> <p><a href="http://developer.android.com/guide/index.html" rel="nofollow">Best Practices</a> sections are:</p> <ul> <li>Supporting Multiple Screens</li> <li>UI Guidelines <ul> <li>Icon Design</li> <li>App Widget Design</li> <li>Activity and Task Design</li> <li>Menu Design</li> </ul></li> <li>Designing for Performance</li> <li>Designing for Responsiveness</li> <li>Designing for Seamlessness</li> </ul> <p><hr /></p> <p>Another hidden feature is that these docs are available offline as part of the SDK. At first I was loading up a few pages every day for my morning train ride but didn't need to do that anymore after I found them in the SDK directory.</p> <p><hr /></p> <p>If you use Eclipse, you will notice that it doesn't format XML files very well and when it does, it's very inconsistent (sometimes it splits the attributes by new lines, sometimes it doesn't). To fix it, you can press Ctrl-Shift-F (auto-format). The rules Ctrl-Shift-F uses are in Window->Preferences->XML->XML Files->Editor.</p> http://stackoverflow.com/questions/1658204/backing-up-views-with-mysql-dump/1658227#1658227 1 Answer by Artem Russakovskii for Backing Up Views with Mysql Dump Artem Russakovskii 2009-11-01T20:27:31Z 2009-11-01T20:27:31Z <p>By backup, I'm assuming you mean just the definition without the data.</p> <p>It seems that right now mysqldump doesn't distinguish between VIEWs and TABLEs, so perhaps the best thing to do is to either specify the VIEWs explicitly on the command line to mysqldump or figure out this list dynamically before mysqldump and then passing it down like before.</p> <p>You can get all the VIEWs in a specific database using this query:</p> <p><code>SHOW FULL TABLES WHERE table_type='view';</code></p> http://stackoverflow.com/questions/1528537/what-is-the-best-gnu-screen-taskbar-youve-used-seen 1 What is the best GNU screen "taskbar" you've used/seen? [closed] Artem Russakovskii 2009-10-06T23:00:10Z 2009-10-06T23:51:23Z <p>As some of you may know, screen offers an ability to have a "taskbar"-like bar that is always present and helps navigating around windows, etc. I find this bar irreplaceable.</p> <p><strong>What is the best configuration you've seen or one that you think is the most optimal/useful?</strong></p> <p>Mine is described and explained here: <a href="http://beerpla.net/2009/10/06/supercharge-your-gnu-screen-with-a-power-taskbar-and-never-feel-lost-again/" rel="nofollow">Supercharge Your GNU Screen With A Power "Taskbar" And Never Feel Lost Again</a></p> <p><img src="http://beerpla.net/wp-content/uploads/SuperchargeYourGNUScreenWithAPowerBar%5FB381/image%5Fthumb%5F3.png" alt="screen powerbar" /></p> http://stackoverflow.com/questions/1518748/free-source-control-system-that-doesnt-require-storing-local-copies-of-every-fil 1 Free Source Control system that doesn't require storing local copies of every file, thus doubling space usage? Artem Russakovskii 2009-10-05T07:59:33Z 2009-10-05T16:44:22Z <p>Is there a source control system (besides CVS) that can be configured to NOT store local copies of files? Or perhaps it just doesn't do it by design? Ideally, one could configure such option by extension or file size.</p> <p>For example, if I do sometimes want to store large movies or pictures in SVN, the end result is double the space usage on the client - and there's no way around it.</p> <p>I realize one solution is just not to commit such files but my question is searching for that other solution.</p> <p>For the record, I just tried Mercurial (Hg) and it used up twice the space as well. I suspect Git would do the same.</p> <p>P.S. I don't see why SVN couldn't implement support for this already. How simple would it be - if a file is not stored locally, get it remotely, like CVS, I believe, does. If network is not available right now, show error. /vent</p> http://stackoverflow.com/questions/1468957/should-i-use-hashstring-or-hashstring-in-perl/1468964#1468964 10 Answer by Artem Russakovskii for Should I use $hash{"string"} or $hash{string} in Perl? Artem Russakovskii 2009-09-23T23:04:26Z 2009-09-24T07:32:44Z <p>They're functionally identical, that is until your key has a space or some other non-alphanumeric character in it. Then you have to use the quoted approach.</p> <p>I prefer to not quote and use names that contain alpha_num and the underscore. That lets me get away with not quoting most of the time.</p> http://stackoverflow.com/questions/1455399/cant-delete-a-local-copy-of-svn/1455473#1455473 1 Answer by Artem Russakovskii for Cant delete a local copy of SVN Artem Russakovskii 2009-09-21T16:33:37Z 2009-09-21T16:33:37Z <p>This can happen when the total path to the file, plus its name is too long for Windows. Try renaming some of the top directories to something shorter and retrying the deletion.</p> <p>I'm assuming you're on Windows because I don't think Linux has this problem and you mention tortoisesvn.</p> <p>Edit: oh, and also not a programming question - belongs on SU.</p> http://stackoverflow.com/questions/989654/palm-pre-emulator/989687#989687 6 Answer by Artem Russakovskii for PALM Pre Emulator Artem Russakovskii 2009-06-13T01:11:32Z 2009-09-15T17:25:47Z <p><strong>Update:</strong></p> <p>The SDK has been released to the general public. More information <a href="http://developer.palm.com/" rel="nofollow">here</a>.</p> <p><hr /></p> <p><strong>Original Answer</strong></p> <p>From <a href="http://developer.palm.com/" rel="nofollow">http://developer.palm.com/</a></p> <blockquote> <p>Only a select few partners received the initial release of the Mojo SDK. Now we’re expanding access to it, which could mean access for you. If you’re interested in participating, complete the application at the link below. Not everyone will receive the Mojo SDK right away. But when you do, you’ll see how easy it is to develop for the Palm webOS™ platform. </p> <p>(Source: <a href="http://www.engadgetmobile.com/2009/01/13/palms-mojo-sdk-for-webos-in-pictures/" rel="nofollow">Engadget: Palm's Mojo SDK for webOS in pictures</a>)</p> </blockquote> http://stackoverflow.com/questions/1425386/how-to-get-the-directory-of-file-inside-itself-with-php/1425398#1425398 6 Answer by Artem Russakovskii for How to get the directory of file inside itself with PHP? Artem Russakovskii 2009-09-15T06:05:24Z 2009-09-15T06:05:24Z <p><code>dirname(__FILE__)</code></p> <p><a href="http://us.php.net/dirname" rel="nofollow">dirname</a> reference.</p> http://stackoverflow.com/questions/1416582/integrating-wordpress-authorization-user-sign-on-w-a-ruby-on-rails-app/1416603#1416603 0 Answer by Artem Russakovskii for Integrating WordPress Authorization/User Sign-On w/ a Ruby on Rails App Artem Russakovskii 2009-09-13T01:23:33Z 2009-09-13T01:29:17Z <p>Something like this? <a href="http://wordpress.org/extend/plugins/rails-integration-api/" rel="nofollow">Rails Integration API</a>, although it might be the opposite of what you want (i.e. it makes WP talk to existing rails authentication system, not the other way around).</p> <p>If not, you can just write some code to interact directly with the WP database. This seems to be the best bet right now.</p> http://stackoverflow.com/questions/1400892/search-engine-lucene-or-solr/1406136#1406136 3 Answer by Artem Russakovskii for Search Engine - Lucene or Solr Artem Russakovskii 2009-09-10T15:54:48Z 2009-09-10T15:54:48Z <p>I created this quick summary of Solr VS Sphinx a few days ago, based mostly on StackOverflow answers: <a href="http://beerpla.net/2009/09/03/comparison-between-solr-and-sphinx-search-servers-solr-vs-sphinx-fight" rel="nofollow">http://beerpla.net/2009/09/03/comparison-between-solr-and-sphinx-search-servers-solr-vs-sphinx-fight</a>. It should answer at least some of your questions.</p> <p>P.S. My vote is for Solr.</p> http://stackoverflow.com/questions/1372146/issue-with-simple-regex/1372156#1372156 2 Answer by Artem Russakovskii for Issue with simple regex Artem Russakovskii 2009-09-03T08:34:47Z 2009-09-03T08:34:47Z <p><code>^123$</code> doesn't match 1234 - exactly what you want. So what's the problem?</p> <p><code>^</code> means start of string to be matched</p> <p><code>$</code> means end of that string</p> http://stackoverflow.com/questions/1886763/android-and-storing-loading-preferences-for-resources-how-to-achieve-consistenc/1886832#1886832 Comment by Artem Russakovskii on Android and storing/loading preferences for resources - how to achieve consistency? Artem Russakovskii 2009-12-11T09:54:11Z 2009-12-11T09:54:11Z Thank you - I think this is exactly what I was looking for. http://stackoverflow.com/questions/1886654/android-how-do-you-mix-and-match-colors-styles-and-sizes-in-a-single-view/1886683#1886683 Comment by Artem Russakovskii on Android: how do you mix and match colors, styles, and sizes in a single view? Artem Russakovskii 2009-12-11T09:14:51Z 2009-12-11T09:14:51Z Additionally, it looks like string resources can be styled individually without tricks: &quot;If you use a string resource, you can add some simple styling, such as bold or italic using HTML notation. The currently supported tags are: B (bold), I (italic), U (underline), TT (monospace), BIG, SMALL, SUP (superscript), SUB (subscript), and STRIKE (strikethrough). So, for example, in res/values/strings.xml you could declare this: &lt;resource&gt; &lt;string&gt;id=&quot;@+id/styled_welcome_message&quot;&gt;We are &lt;b&gt;&lt;i&gt;so&lt;/i&gt;&lt;/b&gt; glad to see you.&lt;/string&gt; &lt;/resources&gt;&quot; http://stackoverflow.com/questions/1886654/android-how-do-you-mix-and-match-colors-styles-and-sizes-in-a-single-view/1886683#1886683 Comment by Artem Russakovskii on Android: how do you mix and match colors, styles, and sizes in a single view? Artem Russakovskii 2009-12-11T09:13:08Z 2009-12-11T09:13:08Z But holy crap - is this approach absolutely horrible and ugly or what? What is this - 1995? http://stackoverflow.com/questions/1886654/android-how-do-you-mix-and-match-colors-styles-and-sizes-in-a-single-view/1886683#1886683 Comment by Artem Russakovskii on Android: how do you mix and match colors, styles, and sizes in a single view? Artem Russakovskii 2009-12-11T09:11:42Z 2009-12-11T09:11:42Z Thank you - I was not aware of the Spannables. They remind me of &lt;span&gt; or &lt;div&gt; tags and related CSS properties. I just found a recipe in the Android SDK API doc itself: <a href="http://developer.android.com/guide/appendix/faq/commontasks.html#selectingtext" rel="nofollow">developer.android.com/guide/appendix/&hellip;</a>. http://stackoverflow.com/questions/1831440/is-there-a-way-to-mount-android-img-to-access-the-avd-android-virtual-device-c/1831528#1831528 Comment by Artem Russakovskii on Is there a way to mount Android .img to access the AVD (Android Virtual Device) contents? Artem Russakovskii 2009-12-02T09:02:41Z 2009-12-02T09:02:41Z Looks like cat is my best friend with this primitive system. Also someone suggested installing busybox which has vi in it, which I may try. http://stackoverflow.com/questions/1831440/is-there-a-way-to-mount-android-img-to-access-the-avd-android-virtual-device-c/1831528#1831528 Comment by Artem Russakovskii on Is there a way to mount Android .img to access the AVD (Android Virtual Device) contents? Artem Russakovskii 2009-12-02T08:56:10Z 2009-12-02T08:56:10Z Alright, that's a start (though such a pain in the a$$ on Windows. TAB doesn't work and it is highly primitive). Is there any editor available on it? I tried vi, emacs, nano. http://stackoverflow.com/questions/1146270/eclipse-is-trying-to-build-the-files-in-my-svn-directories-how-can-i-tell-it/1146319#1146319 Comment by Artem Russakovskii on Eclipse is trying to build the files in my .svn directories... how can I tell it to stop? Artem Russakovskii 2009-12-01T18:56:37Z 2009-12-01T18:56:37Z I've just tried the same and it didn't work for me either. http://stackoverflow.com/questions/1736900/how-to-pull-most-recent-post-data-from-a-wordpress-blog/1736918#1736918 Comment by Artem Russakovskii on How to pull "most recent post" data from a Wordpress blog? Artem Russakovskii 2009-11-15T07:51:50Z 2009-11-15T07:51:50Z Did you even read the question? Andrew needs to display the contents of one blog on the other. http://stackoverflow.com/questions/1677110/eclipse-auto-format-xml-files-on-save/1679138#1679138 Comment by Artem Russakovskii on Eclipse: auto format XML files on save Artem Russakovskii 2009-11-05T16:52:17Z 2009-11-05T16:52:17Z The only thing that comes up for 221696 and wtp on google is <a href="http://www.eclipse.org/forums/index.php?t=msg&amp;goto=221696&amp;S=e6f102c17d33af4f02ce5982371ff40e" rel="nofollow">eclipse.org/forums/&hellip;</a> which doesn't seem to be related. Can you provide a link please? http://stackoverflow.com/questions/1671984/how-can-you-dynamically-put-different-patterns-on-images-in-a-webpage/1672028#1672028 Comment by Artem Russakovskii on How can you dynamically put different patterns on images in a webpage . . Artem Russakovskii 2009-11-04T16:19:15Z 2009-11-04T16:19:15Z Something like that. I used ImageMagick to implement watermarking, which is very similar to this. http://stackoverflow.com/questions/1671997/android-java-keystore-was-tampered-with-or-password-was-incorrect/1672019#1672019 Comment by Artem Russakovskii on Android Java [Keystore was tampered with, or password was incorrect] Artem Russakovskii 2009-11-04T06:37:06Z 2009-11-04T06:37:06Z Show commands - that's the best way to explain. http://stackoverflow.com/questions/1669215/flash-and-android-common-future Comment by Artem Russakovskii on Flash and Android - common future? Artem Russakovskii 2009-11-03T21:41:12Z 2009-11-03T21:41:12Z Perhaps you all can contribute to <a href="http://stackoverflow.com/questions/1619133/hidden-features-of-android-development" rel="nofollow" title="hidden features of android development">stackoverflow.com/questions/1619133/&hellip;</a> then? Bounty of 200 is a nice extra bonus. http://stackoverflow.com/questions/541322/dump-mysql-view-as-a-table-with-data/541355#541355 Comment by Artem Russakovskii on Dump mysql view as a table with data Artem Russakovskii 2009-11-01T20:33:35Z 2009-11-01T20:33:35Z If you don't have access to the mysql server shell, this wouldn't work. Any other solutions? http://stackoverflow.com/questions/726894/what-are-the-dark-corners-of-vim-your-mom-never-told-you-about/821767#821767 Comment by Artem Russakovskii on What are the dark corners of Vim your mom never told you about? Artem Russakovskii 2009-10-23T22:09:31Z 2009-10-23T22:09:31Z Excellent tip - exactly what I was looking for today. http://stackoverflow.com/questions/1534475/origin-of-the-name-jquery Comment by Artem Russakovskii on Origin of the name jQuery Artem Russakovskii 2009-10-07T22:07:56Z 2009-10-07T22:07:56Z Should be a community wiki.