User Alexander Kojevnikov - Stack Overflowmost recent 30 from stackoverflow.com2009-11-09T05:20:07Zhttp://stackoverflow.com/feeds/user/712http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1591731/whats-the-best-size-for-toolbar-icons/1591791#15917910Answer by Alexander Kojevnikov for What's the best size for toolbar icons?Alexander Kojevnikov2009-10-20T00:06:19Z2009-10-20T00:06:19Z<blockquote>
<p>Are there any guidelines as to the best size to use on different platforms?</p>
</blockquote>
<p>It's 24x24 and 48x48 in <a href="http://library.gnome.org/devel/hig-book/stable/icons-types.html.en" rel="nofollow">GNOME</a>.</p>
http://stackoverflow.com/questions/1591682/position-cursor-at-start-end-of-word-document/1591757#15917571Answer by Alexander Kojevnikov for Position cursor at start/end of Word documentAlexander Kojevnikov2009-10-19T23:49:31Z2009-10-19T23:49:31Z<p>This is how it looks in C#:</p>
<pre><code>object missing = Missing.Value;
object what = Word.WdGoToItem.wdGoToLine;
object which = Word.WdGoToDirection.wdGoToLast;
doc.GoTo(ref what, ref which, ref missing, ref missing);
</code></pre>
<p>I guess it will be even easier in VB.Net as it supports optional parameters.</p>
http://stackoverflow.com/questions/803606/xmonad-and-emacs-problem-with-mod-key/1585429#15854290Answer by Alexander Kojevnikov for xmonad and emacs : problem with 'mod' keyAlexander Kojevnikov2009-10-18T16:58:07Z2009-10-18T16:58:07Z<p>You can configure xmonad to use Emacsey key sequences instead of the default Mod-X or Mod-Shift-X. Details are <a href="http://versia.com/2009/10/18/xmonad-metacity-gnome/" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/235470/how-to-effectively-implement-sessions-in-gae/235566#2355661Answer by Alexander Kojevnikov for How to effectively implement sessions in GAE?Alexander Kojevnikov2008-10-24T23:11:53Z2009-10-06T05:49:05Z<p>I suggest checking out (and contributing to) these two implementations of appengine sessions before rolling out your own:</p>
<ul>
<li><a href="http://code.google.com/p/app-engine-patch/" rel="nofollow">app-engine-patch</a></li>
<li><a href="http://gaeutilities.appspot.com/" rel="nofollow">gaeutilities</a></li>
</ul>
<p>Your options look fine but choosing between them probably depends on the size of the session data in your application.</p>
http://stackoverflow.com/questions/221365/emacs-lisp-how-to-add-a-folder-and-all-its-first-level-sub-folders-to-the-load-p1Emacs Lisp: How to add a folder and all its first level sub-folders to the load-pathAlexander Kojevnikov2008-10-21T10:08:22Z2009-10-04T08:56:37Z
<p>If I have a folder structure set up like this:</p>
<pre><code>~/Projects
emacs
package1
package1-helpers
package2
package2-helpers
package2-more-helpers
package3
package3-helpers
</code></pre>
<p>How do I add these folders:</p>
<ul>
<li>~/Projects/emacs</li>
<li>~/Projects/emacs/package1</li>
<li>~/Projects/emacs/package2</li>
<li>~/Projects/emacs/package3</li>
</ul>
<p>...to the <code>load-path</code> from my .emacs file?</p>
<p>I basically need a short automated version of this code:</p>
<pre><code>(add-to-list 'load-path "~/Projects/emacs")
(add-to-list 'load-path "~/Projects/emacs/package1")
(add-to-list 'load-path "~/Projects/emacs/package2")
(add-to-list 'load-path "~/Projects/emacs/package3")
</code></pre>
http://stackoverflow.com/questions/101268/hidden-features-of-python/118202#1182029Answer by Alexander Kojevnikov for Hidden features of PythonAlexander Kojevnikov2008-09-22T23:22:54Z2009-06-27T23:06:20Z<p><strong>Ternary operator</strong></p>
<pre><code>>>> 'ham' if True else 'spam'
'ham'
>>> 'ham' if False else 'spam'
'spam'
</code></pre>
<p>This was added in 2.5, prior to that you could use:</p>
<pre><code>>>> True and 'ham' or 'spam'
'ham'
>>> False and 'ham' or 'spam'
'spam'
</code></pre>
<p>However, if the values you want to work with would be considered false, there is a difference:</p>
<pre><code>>>> [] if True else 'spam'
[]
>>> True and [] or 'spam'
'spam'
</code></pre>
http://stackoverflow.com/questions/181634/simplest-efficient-ways-to-read-binary-and-ascii-files-to-string-or-similar-in-v/185338#1853384Answer by Alexander Kojevnikov for Simplest, efficient ways to read binary and ascii files to string or similar in various languages.Alexander Kojevnikov2008-10-08T23:24:19Z2009-03-19T20:55:48Z<p><strong>Python 2.6+ or 2.5 with <code>from __future__ import with_statement</code></strong></p>
<p><strong>1/3:</strong></p>
<pre><code>with open('filename') as f:
s = f.read()
</code></pre>
<p><strong>2/4:</strong></p>
<pre><code>with open('filename', 'w') as f:
f.write('data')
</code></pre>
http://stackoverflow.com/questions/298446/looping-in-django-forms/298499#2984991Answer by Alexander Kojevnikov for Looping in Django formsAlexander Kojevnikov2008-11-18T11:33:58Z2008-11-18T11:33:58Z<blockquote>
<p>I feel like there must be a way to
create a simple loop that counts from
1 to 10 that would generate most of
those options for me, but I can't
figure out how to do that...</p>
</blockquote>
<p>If you don't want to use Django forms (why btw?), check out this <a href="http://www.djangosnippets.org/snippets/779/" rel="nofollow">custom range tag</a> or just pass a range(1, 11) object into your template and use it in the <code>{% for %}</code> loop.</p>
http://stackoverflow.com/questions/298448/fibonacci-coding/298476#2984761Answer by Alexander Kojevnikov for Fibonacci codingAlexander Kojevnikov2008-11-18T11:20:39Z2008-11-18T11:20:39Z<p><a href="http://www.inference.phy.cam.ac.uk/mackay/itila/book.html" rel="nofollow">Information Theory, Inference, and Learning Algorithms</a> has a chapter on codes. It has a free pdf version, check it out.</p>
http://stackoverflow.com/questions/298447/what-is-a-good-reference-guide-for-django/298455#2984558Answer by Alexander Kojevnikov for What is a good reference guide for DjangoAlexander Kojevnikov2008-11-18T11:10:40Z2008-11-18T11:10:40Z<p>You want <a href="http://www.djangobook.com/" rel="nofollow">The Django Book</a>. <a href="http://docs.djangoproject.com/en/dev/" rel="nofollow">The official documentation</a> is also quite good.</p>
http://stackoverflow.com/questions/271063/suggested-initial-emacs-config/271184#2711844Answer by Alexander Kojevnikov for Suggested initial emacs config?Alexander Kojevnikov2008-11-07T03:45:30Z2008-11-07T03:45:30Z<p>See these related questions:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/154097/whats-in-your-emacs">What’s in your .emacs?</a></li>
<li><a href="http://stackoverflow.com/questions/157018/emacs-and-python">Emacs and Python</a></li>
</ul>
http://stackoverflow.com/questions/261522/what-is-the-command-to-match-brackets-in-emacs/261545#2615456Answer by Alexander Kojevnikov for What is the command to match brackets in Emacs?Alexander Kojevnikov2008-11-04T11:10:20Z2008-11-04T11:10:20Z<p><a href="http://www.gnu.org/software/emacs/emacs-faq.html#Matching-parentheses" rel="nofollow">5.29 How do I show which parenthesis matches the one I'm looking at?</a></p>
http://stackoverflow.com/questions/261455/using-backticks-around-field-names/261475#2614753Answer by Alexander Kojevnikov for Using backticks around field namesAlexander Kojevnikov2008-11-04T10:36:03Z2008-11-04T10:36:03Z<p>The only problem with backticks is that they are not ANSI-SQL compliant, e.g. they don't work in SQL Server.</p>
<p>If there is a chance you would have to port your SQL to another database, use double quotes.</p>
http://stackoverflow.com/questions/261422/visualstudio-how-to-save-the-obj-folder-somewhere-else/261465#2614652Answer by Alexander Kojevnikov for VisualStudio: How to save the obj folder somewhere else Alexander Kojevnikov2008-11-04T10:33:08Z2008-11-04T10:33:08Z<p>Do you use version control? If you do, there's an alternative:</p>
<p>You can <a href="http://svnbook.red-bean.com/en/1.5/svn.advanced.props.special.ignore.html" rel="nofollow">exclude</a> bin/ and obj/ from version control and check out your project instead of e-mailing. If you use <a href="http://subversion.tigris.org/" rel="nofollow">Subversion</a>, you could also <a href="http://svnbook.red-bean.com/en/1.5/svn.ref.svn.c.export.html" rel="nofollow">Export</a> your project and e-mail the exported and zipped folder.</p>
http://stackoverflow.com/questions/261375/simple-mysql-insert-error/261380#2613803Answer by Alexander Kojevnikov for Simple MySQL INSERT error...Alexander Kojevnikov2008-11-04T09:56:32Z2008-11-04T09:56:32Z<p>Shouldn't you use back ticks instead of single quotes in column names?</p>
<pre><code>INSERT INTO ads( `ad_id`, `author`, `ad_date`, `category`, `title`, `description`, `condition`, `price`, `fullname`, `telephone`, `email`, `status`, `photo`, `photothumb` )
VALUES (
NULL , 'justal', '1225790938', 'Windsurf Boards', 'test', 'test', 'Excellent', '12', 'test', 'test', 'test', '', '', ''
);
</code></pre>
http://stackoverflow.com/questions/261235/is-there-a-planned-release-date-for-entity-framework-2-0/261371#2613711Answer by Alexander Kojevnikov for Is there a planned release date for Entity Framework 2.0?Alexander Kojevnikov2008-11-04T09:51:01Z2008-11-04T09:51:01Z<p>AFAIK it hasn't been officially announced. The best hint I saw is <a href="http://blogs.msdn.com/adonet/archive/2008/10/29/update-on-linq-to-sql-and-linq-to-entities-roadmap.aspx" rel="nofollow">here</a>, so it's probably coming with .NET 4.0. I bet they will release a CTP before that.</p>
http://stackoverflow.com/questions/261290/how-do-i-use-mstest-without-visual-studio/261310#2613105Answer by Alexander Kojevnikov for How do I use MSTest without Visual Studio?Alexander Kojevnikov2008-11-04T09:17:17Z2008-11-04T09:17:17Z<p>It doesn't have a GUI (apart from Visual Studio) but there's a command line tool: <a href="http://msdn.microsoft.com/en-us/library/ms182489.aspx" rel="nofollow">MSTest.exe</a></p>
<p>Here is the official documentation on <a href="http://msdn.microsoft.com/en-us/library/ms182469.aspx" rel="nofollow">running MSTest tests</a>.</p>
http://stackoverflow.com/questions/261139/nunit-vs-mbunit-vs-mstest-vs-xunit-net/261156#26115616Answer by Alexander Kojevnikov for NUnit vs. MbUnit vs. MSTest vs. xUnit.net Alexander Kojevnikov2008-11-04T07:29:33Z2008-11-04T07:29:33Z<p>NUnit is probably the most supported by the 3rd party tools. It's also been around longer than the other three.</p>
<p>I personally don't care much about unit test frameworks, mocking libraries are IMHO much more important (and lock you in much more). Just pick one and stick with it.</p>
http://stackoverflow.com/questions/256365/what-ide-editor-do-you-use-for-ruby-on-windows/256484#2564849Answer by Alexander Kojevnikov for What IDE / Editor do you use for Ruby on Windows?Alexander Kojevnikov2008-11-02T03:48:36Z2008-11-02T03:48:36Z<p><a href="http://www.netbeans.org/" rel="nofollow">Netbeans IDE</a> is quite good.</p>
http://stackoverflow.com/questions/245528/how-does-a-website-build-popularity/245543#2455431Answer by Alexander Kojevnikov for How does a website build popularity?Alexander Kojevnikov2008-10-29T01:50:06Z2008-10-29T01:50:06Z<p><a href="http://news.ycombinator.com/item?id=341138" rel="nofollow">This thread at Hacker News</a> is a good starting point.</p>
http://stackoverflow.com/questions/245094/upgrading-google-application-engine-program-to-use-unicode/245159#2451591Answer by Alexander Kojevnikov for Upgrading Google Application Engine program to use unicodeAlexander Kojevnikov2008-10-28T22:43:27Z2008-10-28T22:43:27Z<p>The datastore internally keeps all strings <a href="http://code.google.com/appengine/docs/datastore/typesandpropertyclasses.html#str" rel="nofollow">in unicode</a>.</p>
http://stackoverflow.com/questions/233710/domain-redirection-to-the-same-page-and-google/233726#2337264Answer by Alexander Kojevnikov for Domain redirection to the same page and GoogleAlexander Kojevnikov2008-10-24T14:19:11Z2008-10-24T14:19:11Z<p>Just use the <a href="http://en.wikipedia.org/wiki/HTTP_301" rel="nofollow">permanent redirect</a>.</p>
http://stackoverflow.com/questions/233095/when-assigning-a-handler-to-an-event-should-you-always-create-a-new-event-handl/233159#2331590Answer by Alexander Kojevnikov for When assigning a handler to an event should you always create a 'new' event handlerAlexander Kojevnikov2008-10-24T11:29:11Z2008-10-24T11:29:11Z<p>Duplicates:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/214346/is-there-an-actual-difference-in-the-2-different-ways-of-attaching-event-handle#214353">Thread 1</a></li>
<li><a href="http://stackoverflow.com/questions/119160/what-is-the-difference-between-events-with-delegate-handlers-and-those-without">Thread 2</a></li>
</ul>
http://stackoverflow.com/questions/221376/putting-copyright-symbol-into-a-python-file/221381#2213812Answer by Alexander Kojevnikov for Putting Copyright Symbol into a Python FileAlexander Kojevnikov2008-10-21T10:17:51Z2008-10-21T10:17:51Z<p>You can always revert to good old (c)</p>
http://stackoverflow.com/questions/216349/online-private-source-control-system/216395#2163950Answer by Alexander Kojevnikov for online private source control systemAlexander Kojevnikov2008-10-19T12:59:45Z2008-10-19T12:59:45Z<p>For Subversion I use <a href="http://www.devjavu.com/" rel="nofollow">DevjaVu</a>.</p>
http://stackoverflow.com/questions/216331/how-can-i-message-intranet-users-to-refrain-from-using-client-apps/216335#2163357Answer by Alexander Kojevnikov for How can I message intranet users to refrain from using client apps?Alexander Kojevnikov2008-10-19T12:08:20Z2008-10-19T12:08:20Z<p><a href="http://en.wikipedia.org/wiki/Messenger_Service" rel="nofollow">net send * "This is a message."</a></p>
http://stackoverflow.com/questions/215570/whats-the-difference-between-a-parent-and-a-reference-property-in-google-app-eng/215902#2159021Answer by Alexander Kojevnikov for What's the difference between a parent and a reference property in Google App Engine?Alexander Kojevnikov2008-10-19T02:23:47Z2008-10-19T02:23:47Z<p>The only purpose of entity groups (defined by the parent attribute) is to enable transactions among different entities. If you don't need the transactions, don't use the entity group relationships.</p>
<p>I suggest you re-reading the <a href="http://code.google.com/appengine/docs/datastore/keysandentitygroups.html" rel="nofollow">Keys and Entity Groups</a> section of the docs, it took me quite a few reads to grasp the idea.</p>
<p>Also watch these talks, among other things they discuss transactions and entity groups:</p>
<ul>
<li><a href="http://sites.google.com/site/io/building-scalable-web-applications-with-google-app-engine" rel="nofollow">Building Scalable Web Applications with Google App Engine</a></li>
<li><a href="http://sites.google.com/site/io/under-the-covers-of-the-google-app-engine-datastore" rel="nofollow">Under the Covers of the Google App Engine Datastore</a></li>
</ul>
http://stackoverflow.com/questions/214346/is-there-an-actual-difference-in-the-2-different-ways-of-attaching-event-handlers/214353#21435310Answer by Alexander Kojevnikov for Is there an actual difference in the 2 different ways of attaching event handlers in C#?Alexander Kojevnikov2008-10-18T01:31:45Z2008-10-18T01:31:45Z<p>The second method is a shortcut to the first one, it was introduced in C# 2.0</p>
<p>See also <a href="http://stackoverflow.com/questions/119160/what-is-the-difference-between-events-with-delegate-handlers-and-those-without">this thread</a>.</p>
http://stackoverflow.com/questions/214309/do-different-databases-use-different-name-quote/214338#2143381Answer by Alexander Kojevnikov for Do different databases use different name quote?Alexander Kojevnikov2008-10-18T01:19:20Z2008-10-18T01:19:20Z<p>SQL Server uses [square brackets] or "double quotes" when QUOTED_IDENTIFIER option is ON.</p>
<p>I believe double quotes are in the SQL-92 standard.</p>
http://stackoverflow.com/questions/210791/good-resources-for-emacs/210800#2108003Answer by Alexander Kojevnikov for Good Resources For Emacs.Alexander Kojevnikov2008-10-17T01:11:41Z2008-10-17T01:11:41Z<p><a href="http://www.emacswiki.org/" rel="nofollow">EmacsWiki</a> has a lot of great content, check their <a href="http://www.emacswiki.org/emacs/EmacsNewbie" rel="nofollow">newbie section</a>.</p>
http://stackoverflow.com/questions/235470/how-to-effectively-implement-sessions-in-gae/235566#235566Comment by Alexander Kojevnikov on How to effectively implement sessions in GAE?Alexander Kojevnikov2009-10-06T05:49:25Z2009-10-06T05:49:25Z@Brian: Fixed, thanks!http://stackoverflow.com/questions/189765/7645-null-or-empty-full-text-predicate/347232#347232Comment by Alexander Kojevnikov on 7645 Null or empty full-text predicateAlexander Kojevnikov2009-09-07T11:13:39Z2009-09-07T11:13:39ZThanks Chris, that fixed it!http://stackoverflow.com/questions/261139/nunit-vs-mbunit-vs-mstest-vs-xunit-net/261156#261156Comment by Alexander Kojevnikov on NUnit vs. MbUnit vs. MSTest vs. xUnit.net Alexander Kojevnikov2009-06-08T07:27:06Z2009-06-08T07:27:06ZI like Moq, RhinoMocks is also good.http://stackoverflow.com/questions/157018/emacs-and-python/158868#158868Comment by Alexander Kojevnikov on Emacs and PythonAlexander Kojevnikov2008-12-12T08:35:55Z2008-12-12T08:35:55ZJust installed ropemacs, it looks terrific, thanks a lot!http://stackoverflow.com/questions/298446/looping-in-django-forms/298499#298499Comment by Alexander Kojevnikov on Looping in Django formsAlexander Kojevnikov2008-11-18T11:52:35Z2008-11-18T11:52:35ZYep. Separation of concerns in action ;)http://stackoverflow.com/questions/261522/what-is-the-command-to-match-brackets-in-emacs/261545#261545Comment by Alexander Kojevnikov on What is the command to match brackets in Emacs?Alexander Kojevnikov2008-11-04T11:24:31Z2008-11-04T11:24:31ZNo worries mate :)http://stackoverflow.com/questions/261375/simple-mysql-insert-error/261380#261380Comment by Alexander Kojevnikov on Simple MySQL INSERT error...Alexander Kojevnikov2008-11-04T10:40:24Z2008-11-04T10:40:24ZIt's <code>condition</code>, see the answer from @gusmoshttp://stackoverflow.com/questions/261375/simple-mysql-insert-error/261406#261406Comment by Alexander Kojevnikov on Simple MySQL INSERT error...Alexander Kojevnikov2008-11-04T10:11:32Z2008-11-04T10:11:32ZDoes my version work? On a side note, you should rather edit your original question or add a comment to the corresponding answer than adding a new answer.http://stackoverflow.com/questions/261375/simple-mysql-insert-error/261380#261380Comment by Alexander Kojevnikov on Simple MySQL INSERT error...Alexander Kojevnikov2008-11-04T10:04:17Z2008-11-04T10:04:17ZI tend to agree with Nick.http://stackoverflow.com/questions/221365/emacs-lisp-how-to-add-a-folder-and-all-its-first-level-sub-folders-to-the-load-p/222122#222122Comment by Alexander Kojevnikov on Emacs Lisp: How to add a folder and all its first level sub-folders to the load-pathAlexander Kojevnikov2008-10-21T22:33:10Z2008-10-21T22:33:10ZThat's good to know, thanks!http://stackoverflow.com/questions/221365/emacs-lisp-how-to-add-a-folder-and-all-its-first-level-sub-folders-to-the-load-p/221449#221449Comment by Alexander Kojevnikov on Emacs Lisp: How to add a folder and all its first level sub-folders to the load-pathAlexander Kojevnikov2008-10-21T13:13:38Z2008-10-21T13:13:38ZWorks as a charm, many thanks!http://stackoverflow.com/questions/221365/emacs-lisp-how-to-add-a-folder-and-all-its-first-level-sub-folders-to-the-load-p/221449#221449Comment by Alexander Kojevnikov on Emacs Lisp: How to add a folder and all its first level sub-folders to the load-pathAlexander Kojevnikov2008-10-21T12:05:50Z2008-10-21T12:05:50ZThanks Jouni! Unfortunately I receive an error: "An error has occurred while loading `c:/Users/Alex/AppData/Roaming/.emacs':
Symbol's function definition is void: do". I have Emacs 22.2.1 running under Vista.
http://stackoverflow.com/questions/214309/do-different-databases-use-different-name-quote/214344#214344Comment by Alexander Kojevnikov on Do different databases use different name quote?Alexander Kojevnikov2008-10-18T01:29:57Z2008-10-18T01:29:57ZTry this:
`ham spam`
http://stackoverflow.com/questions/197081/flatten-ruby-method-in-c/197087#197087Comment by Alexander Kojevnikov on Flatten Ruby method in C#Alexander Kojevnikov2008-10-13T10:11:15Z2008-10-13T10:11:15Z@Jon, @Matt: I updated the answer with your suggestions.http://stackoverflow.com/questions/197081/flatten-ruby-method-in-c/197087#197087Comment by Alexander Kojevnikov on Flatten Ruby method in C#Alexander Kojevnikov2008-10-13T09:48:02Z2008-10-13T09:48:02Z@Jon: I always try to do the easiest approach that works first. Apparently it's also the most generic: int[][] and int[,] are both IEnumerables. If the caller of flatten() knows the types in advance she can always cast to them.