User Alexander Kojevnikov - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T05:20:07Z http://stackoverflow.com/feeds/user/712 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1591731/whats-the-best-size-for-toolbar-icons/1591791#1591791 0 Answer by Alexander Kojevnikov for What's the best size for toolbar icons? Alexander Kojevnikov 2009-10-20T00:06:19Z 2009-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#1591757 1 Answer by Alexander Kojevnikov for Position cursor at start/end of Word document Alexander Kojevnikov 2009-10-19T23:49:31Z 2009-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#1585429 0 Answer by Alexander Kojevnikov for xmonad and emacs : problem with 'mod' key Alexander Kojevnikov 2009-10-18T16:58:07Z 2009-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#235566 1 Answer by Alexander Kojevnikov for How to effectively implement sessions in GAE? Alexander Kojevnikov 2008-10-24T23:11:53Z 2009-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-p 1 Emacs Lisp: How to add a folder and all its first level sub-folders to the load-path Alexander Kojevnikov 2008-10-21T10:08:22Z 2009-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#118202 9 Answer by Alexander Kojevnikov for Hidden features of Python Alexander Kojevnikov 2008-09-22T23:22:54Z 2009-06-27T23:06:20Z <p><strong>Ternary operator</strong></p> <pre><code>&gt;&gt;&gt; 'ham' if True else 'spam' 'ham' &gt;&gt;&gt; 'ham' if False else 'spam' 'spam' </code></pre> <p>This was added in 2.5, prior to that you could use:</p> <pre><code>&gt;&gt;&gt; True and 'ham' or 'spam' 'ham' &gt;&gt;&gt; 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>&gt;&gt;&gt; [] if True else 'spam' [] &gt;&gt;&gt; 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#185338 4 Answer by Alexander Kojevnikov for Simplest, efficient ways to read binary and ascii files to string or similar in various languages. Alexander Kojevnikov 2008-10-08T23:24:19Z 2009-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#298499 1 Answer by Alexander Kojevnikov for Looping in Django forms Alexander Kojevnikov 2008-11-18T11:33:58Z 2008-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#298476 1 Answer by Alexander Kojevnikov for Fibonacci coding Alexander Kojevnikov 2008-11-18T11:20:39Z 2008-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#298455 8 Answer by Alexander Kojevnikov for What is a good reference guide for Django Alexander Kojevnikov 2008-11-18T11:10:40Z 2008-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#271184 4 Answer by Alexander Kojevnikov for Suggested initial emacs config? Alexander Kojevnikov 2008-11-07T03:45:30Z 2008-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#261545 6 Answer by Alexander Kojevnikov for What is the command to match brackets in Emacs? Alexander Kojevnikov 2008-11-04T11:10:20Z 2008-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#261475 3 Answer by Alexander Kojevnikov for Using backticks around field names Alexander Kojevnikov 2008-11-04T10:36:03Z 2008-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#261465 2 Answer by Alexander Kojevnikov for VisualStudio: How to save the obj folder somewhere else Alexander Kojevnikov 2008-11-04T10:33:08Z 2008-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#261380 3 Answer by Alexander Kojevnikov for Simple MySQL INSERT error... Alexander Kojevnikov 2008-11-04T09:56:32Z 2008-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#261371 1 Answer by Alexander Kojevnikov for Is there a planned release date for Entity Framework 2.0? Alexander Kojevnikov 2008-11-04T09:51:01Z 2008-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#261310 5 Answer by Alexander Kojevnikov for How do I use MSTest without Visual Studio? Alexander Kojevnikov 2008-11-04T09:17:17Z 2008-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#261156 16 Answer by Alexander Kojevnikov for NUnit vs. MbUnit vs. MSTest vs. xUnit.net Alexander Kojevnikov 2008-11-04T07:29:33Z 2008-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#256484 9 Answer by Alexander Kojevnikov for What IDE / Editor do you use for Ruby on Windows? Alexander Kojevnikov 2008-11-02T03:48:36Z 2008-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#245543 1 Answer by Alexander Kojevnikov for How does a website build popularity? Alexander Kojevnikov 2008-10-29T01:50:06Z 2008-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#245159 1 Answer by Alexander Kojevnikov for Upgrading Google Application Engine program to use unicode Alexander Kojevnikov 2008-10-28T22:43:27Z 2008-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#233726 4 Answer by Alexander Kojevnikov for Domain redirection to the same page and Google Alexander Kojevnikov 2008-10-24T14:19:11Z 2008-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#233159 0 Answer by Alexander Kojevnikov for When assigning a handler to an event should you always create a 'new' event handler Alexander Kojevnikov 2008-10-24T11:29:11Z 2008-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#221381 2 Answer by Alexander Kojevnikov for Putting Copyright Symbol into a Python File Alexander Kojevnikov 2008-10-21T10:17:51Z 2008-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#216395 0 Answer by Alexander Kojevnikov for online private source control system Alexander Kojevnikov 2008-10-19T12:59:45Z 2008-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#216335 7 Answer by Alexander Kojevnikov for How can I message intranet users to refrain from using client apps? Alexander Kojevnikov 2008-10-19T12:08:20Z 2008-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#215902 1 Answer by Alexander Kojevnikov for What's the difference between a parent and a reference property in Google App Engine? Alexander Kojevnikov 2008-10-19T02:23:47Z 2008-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#214353 10 Answer by Alexander Kojevnikov for Is there an actual difference in the 2 different ways of attaching event handlers in C#? Alexander Kojevnikov 2008-10-18T01:31:45Z 2008-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#214338 1 Answer by Alexander Kojevnikov for Do different databases use different name quote? Alexander Kojevnikov 2008-10-18T01:19:20Z 2008-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#210800 3 Answer by Alexander Kojevnikov for Good Resources For Emacs. Alexander Kojevnikov 2008-10-17T01:11:41Z 2008-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#235566 Comment by Alexander Kojevnikov on How to effectively implement sessions in GAE? Alexander Kojevnikov 2009-10-06T05:49:25Z 2009-10-06T05:49:25Z @Brian: Fixed, thanks! http://stackoverflow.com/questions/189765/7645-null-or-empty-full-text-predicate/347232#347232 Comment by Alexander Kojevnikov on 7645 Null or empty full-text predicate Alexander Kojevnikov 2009-09-07T11:13:39Z 2009-09-07T11:13:39Z Thanks Chris, that fixed it! http://stackoverflow.com/questions/261139/nunit-vs-mbunit-vs-mstest-vs-xunit-net/261156#261156 Comment by Alexander Kojevnikov on NUnit vs. MbUnit vs. MSTest vs. xUnit.net Alexander Kojevnikov 2009-06-08T07:27:06Z 2009-06-08T07:27:06Z I like Moq, RhinoMocks is also good. http://stackoverflow.com/questions/157018/emacs-and-python/158868#158868 Comment by Alexander Kojevnikov on Emacs and Python Alexander Kojevnikov 2008-12-12T08:35:55Z 2008-12-12T08:35:55Z Just installed ropemacs, it looks terrific, thanks a lot! http://stackoverflow.com/questions/298446/looping-in-django-forms/298499#298499 Comment by Alexander Kojevnikov on Looping in Django forms Alexander Kojevnikov 2008-11-18T11:52:35Z 2008-11-18T11:52:35Z Yep. Separation of concerns in action ;) http://stackoverflow.com/questions/261522/what-is-the-command-to-match-brackets-in-emacs/261545#261545 Comment by Alexander Kojevnikov on What is the command to match brackets in Emacs? Alexander Kojevnikov 2008-11-04T11:24:31Z 2008-11-04T11:24:31Z No worries mate :) http://stackoverflow.com/questions/261375/simple-mysql-insert-error/261380#261380 Comment by Alexander Kojevnikov on Simple MySQL INSERT error... Alexander Kojevnikov 2008-11-04T10:40:24Z 2008-11-04T10:40:24Z It's <code>condition</code>, see the answer from @gusmos http://stackoverflow.com/questions/261375/simple-mysql-insert-error/261406#261406 Comment by Alexander Kojevnikov on Simple MySQL INSERT error... Alexander Kojevnikov 2008-11-04T10:11:32Z 2008-11-04T10:11:32Z Does 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#261380 Comment by Alexander Kojevnikov on Simple MySQL INSERT error... Alexander Kojevnikov 2008-11-04T10:04:17Z 2008-11-04T10:04:17Z I 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#222122 Comment by Alexander Kojevnikov on Emacs Lisp: How to add a folder and all its first level sub-folders to the load-path Alexander Kojevnikov 2008-10-21T22:33:10Z 2008-10-21T22:33:10Z That'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#221449 Comment by Alexander Kojevnikov on Emacs Lisp: How to add a folder and all its first level sub-folders to the load-path Alexander Kojevnikov 2008-10-21T13:13:38Z 2008-10-21T13:13:38Z Works 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#221449 Comment by Alexander Kojevnikov on Emacs Lisp: How to add a folder and all its first level sub-folders to the load-path Alexander Kojevnikov 2008-10-21T12:05:50Z 2008-10-21T12:05:50Z Thanks Jouni! Unfortunately I receive an error: &quot;An error has occurred while loading `c:/Users/Alex/AppData/Roaming/.emacs': Symbol's function definition is void: do&quot;. I have Emacs 22.2.1 running under Vista. http://stackoverflow.com/questions/214309/do-different-databases-use-different-name-quote/214344#214344 Comment by Alexander Kojevnikov on Do different databases use different name quote? Alexander Kojevnikov 2008-10-18T01:29:57Z 2008-10-18T01:29:57Z Try this: &#96;ham spam&#96; http://stackoverflow.com/questions/197081/flatten-ruby-method-in-c/197087#197087 Comment by Alexander Kojevnikov on Flatten Ruby method in C# Alexander Kojevnikov 2008-10-13T10:11:15Z 2008-10-13T10:11:15Z @Jon, @Matt: I updated the answer with your suggestions. http://stackoverflow.com/questions/197081/flatten-ruby-method-in-c/197087#197087 Comment by Alexander Kojevnikov on Flatten Ruby method in C# Alexander Kojevnikov 2008-10-13T09:48:02Z 2008-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.