User nachik - Stack Overflowmost recent 30 from stackoverflow.com2010-03-19T22:48:14Zhttp://stackoverflow.com/feeds/user/61314http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/586503/complete-monospaced-unicode-font8complete, monospaced Unicode font?nachikhttp://stackoverflow.com/users/613142009-02-25T15:35:36Z2009-11-04T04:23:42Z
<p>I'm looking for a good programming font that lets me add comments and string literals in Unicode, usually Japanese and Chinese along with some Latin and Cyrillic languages.</p>
<p>So far the situation seems to be "complete, monospace, free, pick 2" and Google is failing me with this (maybe because there are no good ones?).</p>
<p>The best I found is Arial Unicode but it's not monospace, which is a big nuisance for me and the editors I use. Not to mention Python indentation when I'm coding Python.</p>
<p><hr /></p>
<p>(Links, edits are welcome)</p>
http://stackoverflow.com/questions/520015/cross-platform-gui-toolkit-for-deploying-python-applications8Cross-platform gui toolkit for deploying Python applicationsnachikhttp://stackoverflow.com/users/613142009-02-06T11:43:30Z2009-10-09T11:03:02Z
<p>Building on:
<a href="http://www.reddit.com/r/Python/comments/7v5ra/whats_your_favorite_gui_toolkit_and_why/" rel="nofollow">http://www.reddit.com/r/Python/comments/7v5ra/whats_your_favorite_gui_toolkit_and_why/</a></p>
<h1>Merits:</h1>
<p>1 - ease of design / integration - learning curve</p>
<p>2 - support / availability for *nix, Windows, Mac, extra points for native l&f, support for mobile or web</p>
<p>3 - pythonic API</p>
<p>4 - quality of documentation - I want to do something a bit more complicated, now what?</p>
<p>5 - light weight packaging so it's not necessary to include a full installer (py2exe, py2app would ideally work as-is and not generate a gazillion MBs file)</p>
<p>6 - licensing</p>
<p>7 - others? (specify)
<hr /></p>
<h1>Contenders:</h1>
<p>1 - tkinter, as currently supported (as of 2.6, 3.0)</p>
<p>2 - pyttk library</p>
<p>3 - pyGTK</p>
<p>4 - pyQt</p>
<p>5 - wxPython</p>
<p>6 - HTML-CGI via Python-based framework (Django, Turbogears, web.py, Pylons...) or Paste</p>
<p>7 - others? (specify)</p>
http://stackoverflow.com/questions/552890/what-do-you-think-about-the-new-debian-release-cycle-2What do you think about the new Debian release cycle?nachikhttp://stackoverflow.com/users/613142009-02-16T10:34:28Z2009-03-03T15:27:55Z
<p>I was surprised to know that Lenny already promoted to "stable" - among some of my clients there is some fear that Debian would want to compete with Ubuntu for the desktop and forget its server devotion.</p>
<p>"Only" 2 years between 4.0 Etch and 5.0 Lenny is unprecedented in Debian time scale. Version inflation? is it because SPARC-32 support is being dropped? otherwise the changes between 4.0 Etch and Lenny don't seem bigger than say 3.0 Woody to 3.1 Sarge (3 years apart).</p>
<p>Support was longest for Woody (4 full years), then it was dropped to just under 3 years for both 3.1 and 4.0 (still pretty good, I reckon).</p>
<p>It's still undecided for Lenny but I'd like to know about this before making my next server distro decision.</p>
<p>What are your thoughts about this?</p>
<p>Reference:
- <a href="http://en.wikipedia.org/wiki/Debian#Releases" rel="nofollow">http://en.wikipedia.org/wiki/Debian#Releases</a>
- <a href="http://en.wikipedia.org/wiki/File:Debian_releases.svg" rel="nofollow">http://en.wikipedia.org/wiki/File:Debian_releases.svg</a></p>
http://stackoverflow.com/questions/115495/is-python-any-good-for-gui-development/552847#5528471Answer by nachik for Is Python any good for GUI development?nachikhttp://stackoverflow.com/users/613142009-02-16T10:17:22Z2009-02-16T10:17:22Z<p>I made a similar/related question a while ago, might serve as reference:</p>
<p><a href="http://stackoverflow.com/questions/520015/cross-platform-gui-toolkit-for-deploying-python-applications">http://stackoverflow.com/questions/520015/cross-platform-gui-toolkit-for-deploying-python-applications</a></p>
http://stackoverflow.com/questions/515061/where-do-you-use-smalltalk/518208#5182083Answer by nachik for Where do you use Smalltalk?nachikhttp://stackoverflow.com/users/613142009-02-05T22:11:56Z2009-02-05T22:11:56Z<p>I use it to teach O.O. programming, so far to a few friends and my girlfriend, with a lot of success. I only miss a better (more mature) deployment system, a la wxsqueak so they can make seamless native apps. That's what they miss the most.</p>
<p>I have also used it for prototyping, but so far not at work. Hopefully soon!</p>
http://stackoverflow.com/questions/511612/ethics-of-using-a-fringe-language-for-your-job/511766#5117661Answer by nachik for Ethics of using a "fringe" language for your job?nachikhttp://stackoverflow.com/users/613142009-02-04T15:13:13Z2009-02-04T15:13:13Z<p>I had this same problem very often. Coincidentally, it was with those two languages you mention: .NET forced on me, when I preferred to use Python (among others). Could be the opposite, I don't judge.</p>
<p>I refrained to use Python, because of the reasons already mentioned in other answers. I did what I thought was best for the company. Using IronPython won't make your python code any more maintainable for an unexperienced Python programmer.</p>
<p>However, I left the company and now I work in something more in line with my tastes. I'm much happier. In this economy you may not have this option... but it will pass. Do the right thing.</p>
<p>Cheers.</p>
http://stackoverflow.com/questions/510357/python-read-a-single-character-from-the-user/510897#5108971Answer by nachik for Python read a single character from the usernachikhttp://stackoverflow.com/users/613142009-02-04T11:04:26Z2009-02-04T11:04:26Z<p>I think it gets extremely clunky at this point, and debugging on the different platforms is a big mess.</p>
<p>You'd be better off using something like pyglet, pygame, cocos2d - if you are doing something more elaborate than this and will need visuals, OR <strong>curses</strong> if you are going to work with the terminal.</p>
<p>Curses is standard: <a href="http://docs.python.org/library/curses.html" rel="nofollow">http://docs.python.org/library/curses.html</a></p>
http://stackoverflow.com/questions/501585/how-can-you-use-python-in-vim/506938#5069380Answer by nachik for How can you use Python in Vim?nachikhttp://stackoverflow.com/users/613142009-02-03T12:41:55Z2009-02-03T12:41:55Z<p>If you want to do some python calls without compiling vim with the python interpreter (that would allow you to write plug-ins in Python, and it's also needed for Omnicomplete anyway) you can try as this:</p>
<pre><code>:.!python -c "import os; print os.getcwd()"
</code></pre>
<p>That would tell you where you are in the drive (current path).</p>
<p>Now let's number a few lines, starting from an empty file so we can see the result easily:</p>
<pre><code>:.!python -c "for i in range(1,101): print i"
</code></pre>
<p>(vim numbers lines from 1 not 0)
Now we have just the number of each line in every line up to line 100.</p>
<p>Let's now put a small script in your current path (as shown above) and run it, see how it works. Let's copy paste this silly one. In reality you will find most useful to do script that output one line per line, but you don't have to do that as this script shows:</p>
<pre><code>print "hi"
try:
while True:
i=raw_input()
print "this was:",i
except EOFError:
print "bye"
</code></pre>
<p>So you can call, for instance (imagine you called it "what.py"):</p>
<p>:10,20!python what.py</p>
<p>(Note that tab completion of file names works, so you can verify it's actually in the path)</p>
<p>As you can see, everyline is fed to the script as standard input. First it outputs "hi", at the end "bye" and in between, for each line you output "this was: " plus the line. This way you can process line-by-line. Notice you can do more complex stuff than processing line by line, you can actually consider previous lines. For such stuff I'd rather import sys and do it like this:</p>
<pre><code>import sys
print "hello"
for i in sys.stdin.readlines():
i = i.rstrip("\n") # you can also prevent print from doing \n instead
print "here lyeth",i
print "see you"
</code></pre>
<p>Hope that helps.</p>
http://stackoverflow.com/questions/504943/text-editor-with-scripting-for-linux/505085#5050853Answer by nachik for Text Editor with Scripting...for Linuxnachikhttp://stackoverflow.com/users/613142009-02-02T21:43:34Z2009-02-03T00:53:31Z<p>Vim is omnipresent and vimscript is really easy and text-editing oriented: <a href="http://vimdoc.sourceforge.net/htmldoc/usr_41.html" rel="nofollow">http://vimdoc.sourceforge.net/htmldoc/usr_41.html</a></p>
<p>That comes by default. You can also use Python, Ruby, Perl, Scheme... but that requires compiling.</p>
<p>Python might be a good choice, since omnicomplete requires it. I run a separate binary for omnicomplete anyway since I like the ultra-lean vim for other usage, check here:
<a href="http://vim.wikia.com/wiki/Compile_a_separate_copy_of_Vim_for_Python_coding" rel="nofollow">http://vim.wikia.com/wiki/Compile_a_separate_copy_of_Vim_for_Python_coding</a></p>
<p>Honestly I haven't used python to script vim per se. I usually code, python or not, with vanilla vim and no auto-complete. I do however call python and any other command from vim to process my files line by line, might reply with more about that if you are interested, but that doesn't require to compile anything, works as is.</p>
<p>EDIT: if you want a point-and-click editor, you can run Cream on gVim <a href="http://cream.sourceforge.net/download.html" rel="nofollow">http://cream.sourceforge.net/download.html</a>
I still think that vim takes little time to get used to and is VERY worth learning, more so considering you can use your basic vi knowledge to connect to a server via SSH no problem, and it's installed in any *nix. I like knowledge I can reuse, saves me time and trouble long term.</p>
http://stackoverflow.com/questions/481976/is-there-a-dive-into-smalltalk-book/501890#5018901Answer by nachik for Is There a "Dive Into Smalltalk" Booknachikhttp://stackoverflow.com/users/613142009-02-02T00:21:00Z2009-02-02T00:21:00Z<p>I wanted to reply to @norman-ramsey but I just registered and I don't have enough reputation to reply (??). </p>
<p>The Blue Book is actually available for free:
<a href="http://stephane.ducasse.free.fr/FreeBooks/BlueBook/" rel="nofollow">http://stephane.ducasse.free.fr/FreeBooks/BlueBook/</a></p>
<p>It got old in some respects though, I wouldn't go into much detail about Bitblt ... morphic is not there, etc. Some details might differ, but the general idea is there.</p>
<p>He looks like he wants a hands-on experience, and I think <a href="http://www.squeakbyexample.org/" rel="nofollow">http://www.squeakbyexample.org/</a> is the way to go. Download away.</p>
<p>Cheers.</p>
http://stackoverflow.com/questions/586503/complete-monospaced-unicode-font/586618#586618Comment by nachik on complete, monospaced Unicode font?nachikhttp://stackoverflow.com/users/613142009-02-25T23:17:50Z2009-02-25T23:17:50ZI reckon monospace is hard for Arabic and some others, but my main needs are Latin subsets, Cyrillic, CJK (Chinese-Japanese-Korean).
Arial Unicode covers all this then some. I'd like something like that but monospace. Gothic, Mincho are not Chinese-complete. Simsun, Mingliu etc are not jp-complete.http://stackoverflow.com/questions/586503/complete-monospaced-unicode-font/586516#586516Comment by nachik on complete, monospaced Unicode font?nachikhttp://stackoverflow.com/users/613142009-02-25T16:22:14Z2009-02-25T16:22:14ZConsolas covers only Latin, Greek and Cyrillic. It's a beautiful font but it doesn't cut it for me. Forces me to use multiple fonts, which is no-go for some editors.http://stackoverflow.com/questions/586503/complete-monospaced-unicode-font/586635#586635Comment by nachik on complete, monospaced Unicode font?nachikhttp://stackoverflow.com/users/613142009-02-25T16:09:26Z2009-02-25T16:09:26ZI take it you don't ever use Python? ;)
Even when coding other stuff, I just like having my stuff aligned.
I use vim mostly, or gvim. I also use Komodo and Eclipse every now and then.http://stackoverflow.com/questions/586503/complete-monospaced-unicode-font/586618#586618Comment by nachik on complete, monospaced Unicode font?nachikhttp://stackoverflow.com/users/613142009-02-25T16:07:16Z2009-02-25T16:07:16ZI believe it's big and I don't mind it being big :)
I'd settle for something as complete as Arial but monospace.http://stackoverflow.com/questions/568665/from-a-development-perspective-how-do-i-convice-the-bosses-to-upgrade-to-vista/568769#568769Comment by nachik on From a development perspective: How do I convice the bosses to upgrade to Vista / Windows 7?nachikhttp://stackoverflow.com/users/613142009-02-20T18:40:44Z2009-02-20T18:40:44ZCan't remove the -1 until you edit...http://stackoverflow.com/questions/568665/from-a-development-perspective-how-do-i-convice-the-bosses-to-upgrade-to-vista/568769#568769Comment by nachik on From a development perspective: How do I convice the bosses to upgrade to Vista / Windows 7?nachikhttp://stackoverflow.com/users/613142009-02-20T18:38:15Z2009-02-20T18:38:15ZI honestly don't see any logic in adding 64 bit to the question. Apples to oranges.
But I'm removing my -1 since I think it's a bad idea to rush a move to Vista when Windows 7 looks so much better and it's almost there. I take it my advice won't help him and retreat.http://stackoverflow.com/questions/568665/from-a-development-perspective-how-do-i-convice-the-bosses-to-upgrade-to-vista/568769#568769Comment by nachik on From a development perspective: How do I convice the bosses to upgrade to Vista / Windows 7?nachikhttp://stackoverflow.com/users/613142009-02-20T09:01:04Z2009-02-20T09:01:04ZYou can't be serious about switching to Vista "to utilize hardware better" can you?? that would be the first reason not to.
XP 64bit will use 8GB just fine. My guess is that they're not using more than 2 or 3GB in the first place, but anyway.
Waiting for Windows 7 makes a lot of sense.http://stackoverflow.com/questions/98245/what-is-your-single-favorite-python-templating-engine/99291#99291Comment by nachik on What is your single favorite Python templating engine?nachikhttp://stackoverflow.com/users/613142009-02-16T14:40:03Z2009-02-16T14:40:03Zoh, and the StringTemplate - after that, 3rd parties for more functionality.http://stackoverflow.com/questions/98245/what-is-your-single-favorite-python-templating-engine/99291#99291Comment by nachik on What is your single favorite Python templating engine?nachikhttp://stackoverflow.com/users/613142009-02-16T14:38:09Z2009-02-16T14:38:09Z@Jim : Agreed, but it's often more than enough as an alternative to require a whole template engine. It's all about awareness :)http://stackoverflow.com/questions/552890/what-do-you-think-about-the-new-debian-release-cycle/552903#552903Comment by nachik on What do you think about the new Debian release cycle?nachikhttp://stackoverflow.com/users/613142009-02-16T13:38:36Z2009-02-16T13:38:36ZYes, that's great when you can afford the downtime, and you can tell all your users to just stop using their legacy stuff.
Still, Debian is the best as for long-term support that doesn't cost you half a lung.http://stackoverflow.com/questions/552890/what-do-you-think-about-the-new-debian-release-cycle/552903#552903Comment by nachik on What do you think about the new Debian release cycle?nachikhttp://stackoverflow.com/users/613142009-02-16T11:08:06Z2009-02-16T11:08:06ZThis can break many applications, I don't recommend you do that in a system where other users are running applications you don't know 100% and even then you can never be sure.http://stackoverflow.com/questions/552890/what-do-you-think-about-the-new-debian-release-cycleComment by nachik on What do you think about the new Debian release cycle?nachikhttp://stackoverflow.com/users/613142009-02-16T11:05:34Z2009-02-16T11:05:34Z@Keltia : I fail to see where is the flame-bait, you zealot. I'm just making a question about something that concerns me as maintainer of several Debian systems.
----
This is a sys-admin related question. I've seen MANY of those, just look in related.http://stackoverflow.com/questions/371966/are-there-any-good-reasons-why-i-should-not-use-python/371975#371975Comment by nachik on Are there any good reasons why I should not use Python?nachikhttp://stackoverflow.com/users/613142009-02-16T10:44:00Z2009-02-16T10:44:00ZAlso, see this: <a href="http://stackoverflow.com/questions/118643/is-there-a-way-to-convert-indentation-in-python-code-to-braces" rel="nofollow" title="is there a way to convert indentation in python code to braces">stackoverflow.com/questions/118643/…</a>
If I was blind, I would find the jokes even less amusing.
There are parsers already in the code. Include the option for Kthulu's sake.http://stackoverflow.com/questions/371966/are-there-any-good-reasons-why-i-should-not-use-python/371975#371975Comment by nachik on Are there any good reasons why I should not use Python?nachikhttp://stackoverflow.com/users/613142009-02-16T10:41:45Z2009-02-16T10:41:45ZThis is a big one for me. Every time <i>standard support</i> for braces is proposed it's mocked, and I don't find it funny in the slightest.
Many times I've missed it. When I'm using a terminal and I can't install my editor, when working with others code, when using 3rd-party code analyzing tools...http://stackoverflow.com/questions/81584/what-ide-to-use-for-python/81609#81609Comment by nachik on What IDE to use for Pythonnachikhttp://stackoverflow.com/users/613142009-02-16T10:39:05Z2009-02-16T10:39:05ZI second vim, not only because of its power, but also because it pays off to learn it since you can reuse this knowledge a lot. Vim is omnipresent across platforms and is a great option for terminal editing, shining especially through telnet/ssh.