User Artem Russakovskii - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T05:25:11Zhttp://stackoverflow.com/feeds/user/47680http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1280447/which-server-parameters-to-tweak-in-solr-if-i-expect-heavy-writes-and-light-reads0Which server parameters to tweak in Solr if I expect heavy writes and light reads?Artem Russakovskii2009-08-14T22:07:51Z2009-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-consistenc0Android and storing/loading preferences for resources - how to achieve consistency?Artem Russakovskii2009-12-11T09:07:04Z2009-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-view0Android: how do you mix and match colors, styles, and sizes in a single view?Artem Russakovskii2009-12-11T08:39:09Z2009-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#18866580Answer by Artem Russakovskii for Are there any stable and production quality nosql datastores ?Artem Russakovskii2009-12-11T08:40:39Z2009-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#18649270Answer by Artem Russakovskii for How to resolve 500 Internal Server Error ?Artem Russakovskii2009-12-08T06:09:05Z2009-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-c0Is there a way to mount Android .img to access the AVD (Android Virtual Device) contents?Artem Russakovskii2009-12-02T08:30:07Z2009-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-methods3Why does PHP 5.2 disallow abstract static class methods?Artem Russakovskii2009-06-16T00:07:03Z2009-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#18118251Answer by Artem Russakovskii for Dial Number Without PromptArtem Russakovskii2009-11-28T06:58:26Z2009-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-objects3PHPDoc type hinting for array of objects?Artem Russakovskii2009-04-22T18:29:13Z2009-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><?php
class Test
{
/** @var SomeObj */
private $someObjInstance;
}
?>
</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-id5Hidden features/tricks of Flash development, Flash language (AS2/3), and Flash IDEArtem Russakovskii2009-07-21T17:49:17Z2009-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#17369151Answer by Artem Russakovskii for How to pull "most recent post" data from a Wordpress blog?Artem Russakovskii2009-11-15T07:47:06Z2009-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-builder0Eclipse doesn’t recognize style in the Android Layout builder?Artem Russakovskii2009-11-04T19:06:47Z2009-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-save1Eclipse: auto format XML files on saveArtem Russakovskii2009-11-04T22:28:25Z2009-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#16790250Answer by Artem Russakovskii for php parse urls with multiple variables with get requestArtem Russakovskii2009-11-05T08:02:15Z2009-11-05T08:02:15Z<p>Since you didn't url encode your url param, everything after the first & is treated as the param to the original url.</p>
http://stackoverflow.com/questions/1675977/trouble-with-mysql-5-1-and-range/1676046#16760463Answer by Artem Russakovskii for Trouble with MySQL 5.1 and RANGE?Artem Russakovskii2009-11-04T19:28:08Z2009-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#167202810Answer by Artem Russakovskii for How can you dynamically put different patterns on images in a webpage . . Artem Russakovskii2009-11-04T06:34:35Z2009-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#16720451Answer by Artem Russakovskii for android databaseArtem Russakovskii2009-11-04T06:40:37Z2009-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-development26Hidden features of Android development?Artem Russakovskii2009-10-24T21:09:52Z2009-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#16703300Answer by Artem Russakovskii for Flash and Android - common future?Artem Russakovskii2009-11-03T21:45:03Z2009-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#16205019Answer by Artem Russakovskii for Hidden features of Android development?Artem Russakovskii2009-10-25T10:05:21Z2009-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#16582271Answer by Artem Russakovskii for Backing Up Views with Mysql DumpArtem Russakovskii2009-11-01T20:27:31Z2009-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-seen1What is the best GNU screen "taskbar" you've used/seen? [closed]Artem Russakovskii2009-10-06T23:00:10Z2009-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-fil1Free Source Control system that doesn't require storing local copies of every file, thus doubling space usage?Artem Russakovskii2009-10-05T07:59:33Z2009-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#146896410Answer by Artem Russakovskii for Should I use $hash{"string"} or $hash{string} in Perl?Artem Russakovskii2009-09-23T23:04:26Z2009-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#14554731Answer by Artem Russakovskii for Cant delete a local copy of SVNArtem Russakovskii2009-09-21T16:33:37Z2009-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#9896876Answer by Artem Russakovskii for PALM Pre EmulatorArtem Russakovskii2009-06-13T01:11:32Z2009-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#14253986Answer by Artem Russakovskii for How to get the directory of file inside itself with PHP?Artem Russakovskii2009-09-15T06:05:24Z2009-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#14166030Answer by Artem Russakovskii for Integrating WordPress Authorization/User Sign-On w/ a Ruby on Rails AppArtem Russakovskii2009-09-13T01:23:33Z2009-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#14061363Answer by Artem Russakovskii for Search Engine - Lucene or SolrArtem Russakovskii2009-09-10T15:54:48Z2009-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#13721562Answer by Artem Russakovskii for Issue with simple regexArtem Russakovskii2009-09-03T08:34:47Z2009-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#1886832Comment by Artem Russakovskii on Android and storing/loading preferences for resources - how to achieve consistency?Artem Russakovskii2009-12-11T09:54:11Z2009-12-11T09:54:11ZThank 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#1886683Comment by Artem Russakovskii on Android: how do you mix and match colors, styles, and sizes in a single view?Artem Russakovskii2009-12-11T09:14:51Z2009-12-11T09:14:51ZAdditionally, it looks like string resources can be styled individually without tricks: "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:
<resource>
<string>id="@+id/styled_welcome_message">We are <b><i>so</i></b> glad to see you.</string>
</resources>"http://stackoverflow.com/questions/1886654/android-how-do-you-mix-and-match-colors-styles-and-sizes-in-a-single-view/1886683#1886683Comment by Artem Russakovskii on Android: how do you mix and match colors, styles, and sizes in a single view?Artem Russakovskii2009-12-11T09:13:08Z2009-12-11T09:13:08ZBut 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#1886683Comment by Artem Russakovskii on Android: how do you mix and match colors, styles, and sizes in a single view?Artem Russakovskii2009-12-11T09:11:42Z2009-12-11T09:11:42ZThank you - I was not aware of the Spannables. They remind me of <span> or <div> 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/…</a>.http://stackoverflow.com/questions/1831440/is-there-a-way-to-mount-android-img-to-access-the-avd-android-virtual-device-c/1831528#1831528Comment by Artem Russakovskii on Is there a way to mount Android .img to access the AVD (Android Virtual Device) contents?Artem Russakovskii2009-12-02T09:02:41Z2009-12-02T09:02:41ZLooks 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#1831528Comment by Artem Russakovskii on Is there a way to mount Android .img to access the AVD (Android Virtual Device) contents?Artem Russakovskii2009-12-02T08:56:10Z2009-12-02T08:56:10ZAlright, 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#1146319Comment by Artem Russakovskii on Eclipse is trying to build the files in my .svn directories... how can I tell it to stop?Artem Russakovskii2009-12-01T18:56:37Z2009-12-01T18:56:37ZI'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#1736918Comment by Artem Russakovskii on How to pull "most recent post" data from a Wordpress blog?Artem Russakovskii2009-11-15T07:51:50Z2009-11-15T07:51:50ZDid 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#1679138Comment by Artem Russakovskii on Eclipse: auto format XML files on saveArtem Russakovskii2009-11-05T16:52:17Z2009-11-05T16:52:17ZThe only thing that comes up for 221696 and wtp on google is <a href="http://www.eclipse.org/forums/index.php?t=msg&goto=221696&S=e6f102c17d33af4f02ce5982371ff40e" rel="nofollow">eclipse.org/forums/…</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#1672028Comment by Artem Russakovskii on How can you dynamically put different patterns on images in a webpage . . Artem Russakovskii2009-11-04T16:19:15Z2009-11-04T16:19:15ZSomething 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#1672019Comment by Artem Russakovskii on Android Java [Keystore was tampered with, or password was incorrect]Artem Russakovskii2009-11-04T06:37:06Z2009-11-04T06:37:06ZShow commands - that's the best way to explain.http://stackoverflow.com/questions/1669215/flash-and-android-common-futureComment by Artem Russakovskii on Flash and Android - common future?Artem Russakovskii2009-11-03T21:41:12Z2009-11-03T21:41:12ZPerhaps 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/…</a> then? Bounty of 200 is a nice extra bonus.http://stackoverflow.com/questions/541322/dump-mysql-view-as-a-table-with-data/541355#541355Comment by Artem Russakovskii on Dump mysql view as a table with dataArtem Russakovskii2009-11-01T20:33:35Z2009-11-01T20:33:35ZIf 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#821767Comment by Artem Russakovskii on What are the dark corners of Vim your mom never told you about?Artem Russakovskii2009-10-23T22:09:31Z2009-10-23T22:09:31ZExcellent tip - exactly what I was looking for today.http://stackoverflow.com/questions/1534475/origin-of-the-name-jqueryComment by Artem Russakovskii on Origin of the name jQueryArtem Russakovskii2009-10-07T22:07:56Z2009-10-07T22:07:56ZShould be a community wiki.