User Berry Tsakala - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T01:49:31Z http://stackoverflow.com/feeds/user/84196 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1795410/can-nltk-pynltk-work-per-language-i-e-non-english-and-how 2 can NLTK/pyNLTK work "per language" (i.e. non-english), and how? Berry Tsakala 2009-11-25T08:17:32Z 2009-11-25T08:17:32Z <p>how can I tell nltk to treat the text in a particular language?</p> <p>BKG: once in a while i write a specialized NLP routine to do POS tagging, tokenizing etc. on a non-english (but still hindo-european) text domain.</p> <p>this question seem to address only different corpora, not the change in code / settings: <a href="http://stackoverflow.com/questions/1639855/nltk-tagging-in-german">http://stackoverflow.com/questions/1639855/nltk-tagging-in-german</a></p> <p>alternatively, are there any specialized hebrew / spanish / polish NLP module for python?</p> <p>thanks</p> http://stackoverflow.com/questions/1616505/writing-a-font-viewer-getting-font-properties-loading-ttf-dynamically 1 writing a font viewer - getting font properties, loading ttf dynamically Berry Tsakala 2009-10-23T23:49:33Z 2009-10-24T00:36:33Z <p>I'm trying to write a font viewer for TrueType / OpenType fonts with VB6 / VB5 code (under Windows).</p> <p>it is surprisingly difficult:</p> <p>1) in VB / winAPI, i did not find how to extract the font's name, or font properties in general.</p> <p>2) i can install the font (using AddFontResource API function), but then have to uninstall it. However, while (AddFontResource" expects a <strong>pathname</strong>, removing the font requires the font's <strong>name</strong> which is unknown to me.</p> <p>is there a way to use an non-installed font ttf) ?</p> <p>is there a way to extract a font's properties using vb6 ?</p> <p>(I can write the program in wxPython but i know even less about fonts in python than with VB)</p> http://stackoverflow.com/questions/81584/what-ide-to-use-for-python/707079#707079 2 Answer by Berry Tsakala for What IDE to use for Python Berry Tsakala 2009-04-01T19:55:51Z 2009-10-06T08:58:59Z <p>You should add Boa Constructor. I used it only once but it seems mature. <a href="http://sourceforge.net/projects/boa-constructor/" rel="nofollow">http://sourceforge.net/projects/boa-constructor/</a> It contains a usable RAD - GUI and a code designer (as Dabo). </p> <p>I'd suggest few more features to your list (in which I'm interested in particular):</p> <ul> <li><p>GUI Designer (e.g. Qt, Eric, ..)</p></li> <li><p>integrated database support</p></li> <li><p>RAD (rapid application development, which IMHO means that the GUI Designer integrates code generation in a way that the user doesn't need to know about, for basic needs (as Visual Basic, and as where Dabo is aiming).</p></li> </ul> <p>IMO Rapid dekstop development with seamless DB integration makes development rock for most common business applications, both in development and more importantly - for maintenance.</p> http://stackoverflow.com/questions/1011167/what-are-common-ui-misconceptions-and-annoyances/1011751#1011751 2 Answer by Berry Tsakala for What are common UI misconceptions and annoyances? Berry Tsakala 2009-06-18T09:35:02Z 2009-09-27T14:11:42Z <p>Don't change accelerators and basic UI (at least -- have a setting for backward compatibility).</p> <p>Programs that change their interface, starring Office 2007 as worst (but not the only) example.</p> <p>Being an MS Office power user in the past 10 years made me very fast and efficient. </p> <p>But in each version I have to <strong>learn</strong> how to do the same things. Even worse, since every person got a different version installed, I have to remember all differences.</p> <p>I don't want to accumulate useless bits of info, I want to <strong>use</strong> it.</p> <p>More examples:</p> <ul> <li>In Windows, the control panel was in My computer, now it's not</li> <li>In Linux, every distribution got its own shortcut keys, file locations, interfaces</li> <li>Every Python IDE I've used has slightly different way of autocompletion</li> <li>The same Browser software in different language has different accelerator keys.</li> </ul> http://stackoverflow.com/questions/1318839/how-to-concatenate-regular-expressions-in-javascript 2 how to concatenate regular expressions in javascript? Berry Tsakala 2009-08-23T15:41:42Z 2009-08-23T17:03:52Z <p>this is <strong>not</strong> what i'm asking for:</p> <p><a href="http://stackoverflow.com/questions/680446/concatenate-multiple-regexes-into-one-regex/680454">http://stackoverflow.com/questions/680446/concatenate-multiple-regexes-into-one-regex/680454</a></p> <p>is there a way to append a regex into another one <strong>(in javascript language)</strong> ?</p> <p>the reason for doing so is to simplify code maintenance (e.g. if the included string is long or easier to maintain by a non-programmer).</p> <p>in python, for example, i'd write something like:</p> <pre><code>regstr1 = 'dogs|cats|mice' regstr_container = '^animal: (cows|sheep|%s|zebra)$' % regstr1 re.compile(regstr_container) </code></pre> <p>however in javascript the regular expression is not a string.</p> <pre><code>re = /^animal: (rami|shmulik|dudu)$/; </code></pre> <p>or am i missing something?</p> http://stackoverflow.com/questions/1283181/is-there-a-better-way-to-structure-a-sql-table-handling-user-questionaires/1283192#1283192 1 Answer by Berry Tsakala for Is there a better way to structure a SQL table handling User Questionaires? Berry Tsakala 2009-08-16T00:23:09Z 2009-08-17T12:08:36Z <p>well, there are 2 better ideas i can think of:</p> <ol> <li><p>store a vector (i.e. a string/byte array variable containing all results), and handle everything related to the data in your program (this way you're more limited on SQL queries)</p></li> <li><p>store the key/value pair, keyed by survey-id, e.g.</p> <p>1134 age 68</p> <p>1134 prefer chocolate</p> <p>1134 width 6"</p> <p>1135 age 31</p> <p>1135 prefer vanilla</p> <p>1135 width 3.2"</p></li> </ol> <p>it depends on what you want to do with the results. but this is more "correct" than what you've suggested, since with my last option you're less likely to run into trouble</p> http://stackoverflow.com/questions/937511/selenium-rc-locators-referring-to-subsequent-elements 0 Selenium RC locators - referring to subsequent elements ? Berry Tsakala 2009-06-02T01:00:55Z 2009-08-13T04:39:42Z <p>When there is more than a single element with the same locator in a page, how should the next elements be referenced?</p> <p>Using Xpath locators it's possible to add array notation, e.g. xpath=(//span/div)[1] But with simple locators?</p> <p>For example, if there are 3 links identified by "link=Click Here", simply appending [3] won't get the 3rd element.</p> <p>And where is the authoritative reference for addressing array of elements? I couldn't find any.</p> http://stackoverflow.com/questions/1130764/which-exception-catches-xxxx-error-in-python 2 which exception catches xxxx error in python Berry Tsakala 2009-07-15T11:04:53Z 2009-07-15T11:55:44Z <p>Thanks! the question is solved in all the answers given.</p> <p><strong>Original question follows:</strong></p> <p>given a traceback error log, i don't always know how to catch a particular exception.</p> <p>my question is in general, how do i determine which "except" clause to write in order to handle a certain exception.</p> <p>example 1:</p> <pre><code> File "c:\programs\python\lib\httplib.py", line 683, in connect raise socket.error, msg error: (10065, 'No route to host') </code></pre> <p>example 2:</p> <pre><code>return codecs.charmap_encode(input,errors,encoding_table) UnicodeDecodeError: 'ascii' codec can't decode byte 0xd7 in position(...) </code></pre> <p>catching the 2nd example is obvious:</p> <pre><code>try: ... except UnicodeDecodeError: ... </code></pre> <p>how do i catch specifically the first error?</p> http://stackoverflow.com/questions/932818/retrieving-a-variables-name-in-python-at-runtime 2 retrieving a variable's name in python at runtime? Berry Tsakala 2009-05-31T20:44:07Z 2009-07-09T01:05:24Z <p>is there a way to know, during run-time, a variable's name (from the code) ? or do var names forgotten during compilation (byte-code or not) ?</p> <p>e.g.</p> <pre> >>> vari = 15 >>> print vari.~~name~~() 'vari' </pre> <p>note: i'm talking about plain data-type variables (int, str, list...)</p> http://stackoverflow.com/questions/1081802/which-programming-language-has-the-least-amount-of-syntax/1082031#1082031 2 Answer by Berry Tsakala for Which programming language has the least amount of syntax? Berry Tsakala 2009-07-04T11:30:16Z 2009-07-04T11:30:16Z <p>If I guess your purpose correctly, Python has no more or less "syntax" than any other language, but it has less "strange funny symbols" than any other language I know. And it uses simplified, mostly plain English syntax.</p> <p>If you're looking for a serious language in which it'd be easy to read and write, but still be prouctive, go for Python.</p> <p>Or visual basic, which is becoming more and more bloated over the years, and it has syntax incompatibility issues with earlier versions - so I can't recommend VB.</p> http://stackoverflow.com/questions/1079332/a-sortable-list-grid-control-in-boa-constructor 0 a sortable list/grid control in boa constructor Berry Tsakala 2009-07-03T13:19:51Z 2009-07-03T13:19:51Z <p>In my project there's a need for a multi-column list control.</p> <p>I wish the list could be <strong>automatically sorted</strong> upon clicking on the <strong>column header</strong>.</p> <p>Since i'm using <strong>Boa constructor</strong>, the solution should not be too obtrusive, i.e. compatible with Boa's ability to read and regenerate the code.</p> <p>So I thought, there can be either a built-in control that does just that, or I can create a User Control (which I currently don't know how, but I want to learn)</p> <p>For now I'm using either wx.ListView or wx.Grid, but i couldn't figure a simple way to make them <strong>sortable</strong>.</p> <p>How can I achieve tabular sorted control under these conditions?</p> http://stackoverflow.com/questions/464463/qt-being-now-released-under-lgpl-would-you-recommend-it-over-wxwidgets/1079154#1079154 1 Answer by Berry Tsakala for Qt being now released under LGPL, would you recommend it over wxWidgets ? Berry Tsakala 2009-07-03T12:31:50Z 2009-07-03T12:31:50Z <p>I chose wxPython for 2 main reasons:</p> <ol> <li>Boa Constructor, which is still a beta product, gives me unified control over 100% of the process, whereas PyQt indeed has better designer, but there's no connection between editing "event handlers".</li> </ol> <p>My ideal IDE designs, creates events, let me edit just the functional code needed, and run; without "compiling UICs", without switching editors, without going into the command line. While for Large scale applications it matters very little, my current domain is fast and small scale programs.</p> <ol> <li><p>Licensing... it doesn't matter right now, but it will once I start vending my stuff on small scale.</p></li> <li><p>autocompletion inside event functional code doesn't seem to work in QTDesigner, for event code. I might be missing something, yet the "broken" process described above prevent it from being a RAD.</p></li> </ol> http://stackoverflow.com/questions/993265/writing-text-with-diacritic-nikud-vocalization-marks-using-pil-python-image 2 writing text with diacritic ("nikud", vocalization marks) using PIL (python image library) Berry Tsakala 2009-06-14T17:28:14Z 2009-06-21T22:20:37Z <p>writing simple text on an image using PIL is easy. draw = ImageDraw.Draw(img) draw.text((10, y), text2, font=font, fill=forecolor )</p> <p>however, when I try to write Hebrew punctuation marks (called "nikud" or ניקוד), the characters does not overlap as it should. I guess this question is relevant also to Arabic and other similar languages.</p> <p>On supporting environment, these two words take up the same space/width (the below example depend on your system, hence the image):</p> <p>סֶפֶר ספר</p> <p>However when drawing the text with PIL i'd get </p> <p>ס ֶ פ ֶ ר</p> <p>since the library probably doesn't obey kerning(?) rules.</p> <p>Is that all possible without writing manually character positioning?</p> <p><img src="http://tinypic.com/r/jglhc5/5" alt="image - nikud and letter spacing" /></p> <p>image url: <a href="http://tinypic.com/r/jglhc5/5" rel="nofollow">http://tinypic.com/r/jglhc5/5</a></p> http://stackoverflow.com/questions/1023361/human-name-comparison-ways-to-approach-this-task 3 Human name comparison: ways to approach this task Berry Tsakala 2009-06-21T07:18:36Z 2009-06-21T18:53:52Z <p>I'm not a Natural Language Programming student, yet I know it's not trivial strcmp(n1,n2). </p> <p>Here's what i've learned so far:</p> <ul> <li>comparing Personal Names can't be solved 100%</li> <li>there are ways to achieve certain degree of accuracy. </li> <li>the answer will be locale-specific, that's OK. </li> </ul> <p>I'm not looking for spelling alternatives! The assumption is that the input's spelling is correct.</p> <p>For example, all the names below can refer to the same person:</p> <ul> <li>Berry Tsakala</li> <li>Bernard Tsakala</li> <li>Berry J. Tsakala</li> <li>Tsakala, Berry</li> </ul> <p>I'm trying to:</p> <ol> <li>build (or copy) an algorithm which grades the relationship 2 input names</li> <li>find an indexing method (for names in my database, for hash tables, etc.)</li> </ol> <p>note: My task isn't about finding names in text, but to compare 2 names. e.g. </p> <pre><code>name_compare( "James Brown", "Brown, James", "en-US" ) ---&gt; 99.0% </code></pre> http://stackoverflow.com/questions/996773/accelerator-keys-in-bilingual-multilingual-input-environment 1 accelerator keys in bilingual / multilingual input environment Berry Tsakala 2009-06-15T15:30:27Z 2009-06-18T16:10:27Z <p>On my Windows there are at least keyboard sets, for completely different languages.</p> <p>If, for example, I click Alt-T in Firefox, the Tools menu will open, both if the keyboard layout is Hebrew or English. (Mozilla's behavior is inconsistent in that respect, but forget it for now).</p> <p>When building a wxWidgets applications, the language must be English, since alt+ה is a different key.</p> <p>Is there a simple way, or a workaround, as the GUI developer, to get WX or any other environment to response identically regardless of the keyboard mapping?</p> <p>Is it "correct"? (oh, yes, it is, since the keyboard switch is shifting too often)</p> <p>How is it done in Firefox?</p> <p>How can this be done in wxPython? in VB6?</p> http://stackoverflow.com/questions/816704/save-an-image-with-selenium-firefox 1 save an image with selenium & firefox Berry Tsakala 2009-05-03T09:51:07Z 2009-06-17T04:00:02Z <p>i'm trying to save an image from a website using selenium server &amp; python client. i know the image's URL, but i can't find the code to save it, either when it's the the document itself, or when it's embedded in the current browser session.</p> <p>the workaround i found so far is to save the page's screenshot (there are 2 selenium methods for doing just that), but i want the original image.</p> <p>i don't mind fiddling with the clicking menu options etc. but i couldn't found how.</p> <p>thanks</p> http://stackoverflow.com/questions/1003259/end-of-the-road-for-captchas/1003573#1003573 2 Answer by Berry Tsakala for End of the road for Captchas? Berry Tsakala 2009-06-16T19:46:39Z 2009-06-16T19:46:39Z <p>Captchas were doomed from day 1, since it's always possible (given a good reason &amp; resources) to hire cheap labor to solve it for you. I won't enlist the solution here, but the trick has been invented and implemented years ago.</p> <p>The crux of all doors and barriers isn't about blocking, but about the cost to either side to overcome the barrier.</p> <p>if a safe is too expensive to crack, but cheap enough for you, the thief won't take it.</p> http://stackoverflow.com/questions/994273/how-to-change-command-prompt-console-window-title-from-command-line-java-app/994742#994742 1 Answer by Berry Tsakala for How to change command prompt (console) window title from command line Java app? Berry Tsakala 2009-06-15T06:36:40Z 2009-06-15T06:36:40Z <p>following dlamblin's revelation ;-) here's a python code. note that there are 2 different commands in most programming languages: </p> <ul> <li>system</li> <li>exec</li> </ul> <p>system will issue a system command, exec indeed spawns a new process. thus:</p> <pre><code>C:\&gt;python &gt;&gt;&gt; import os &gt;&gt;&gt; os.system("title berry tsakala") </code></pre> <p>which works inside a running program. Just find the java equivalent.</p> http://stackoverflow.com/questions/956971/retrieving-current-drive-letters-in-windows-from-python 1 retrieving current drive letters in windows (from python) [closed] Berry Tsakala 2009-06-05T16:59:00Z 2009-06-05T19:40:00Z <blockquote> <p><strong>Possible Duplicate:</strong><br /> <a href="http://stackoverflow.com/questions/827371/is-there-a-way-to-list-all-the-available-drive-letters-in-python">Is there a way to list all the available drive letters in python?</a> </p> </blockquote> <p>What's the way to retrieve currently mounted drive list in Windows incl. Thumb drives, and mapped networks.</p> <p>i currently do</p> <pre> drives=[] for c in string.lowercase: if os.path.isdir(c+':'): drives.append(c+':') </pre> <p>which looks ugly, but is completely KISS proof :)</p> http://stackoverflow.com/questions/119064/tips-for-reducing-eye-strain/924788#924788 0 Answer by Berry Tsakala for Tips for reducing eye strain Berry Tsakala 2009-05-29T07:20:42Z 2009-05-29T07:20:42Z <p>read and try this booklet called</p> <blockquote> <p>Better eyesight without glasses \ Harry Benjamin</p> </blockquote> <p>it's very small, accurate, simple and natural approach for eye health.\ By practicing it for a year or so i removed my need for glasses(!). He has good daily life tips, which some of them are written in other answers here.</p> http://stackoverflow.com/questions/818026/it-concepts-that-help-helped-you-in-the-real-world 2 IT concepts that help/helped you in the "real" world. Berry Tsakala 2009-05-03T21:15:00Z 2009-05-04T16:00:34Z <p>Which IT concept (e.g. programming) you implement successfully outside the IT world?</p> <p>For example, </p> <ul> <li>normalizing databases are relevant to organizing my items.</li> <li>Understanding the real scale of information and search engine forces my to stop accumulating data (books, articles, pictures) and improve the method by which I find relevant information.</li> <li>deciding when to write a script to do repetitive task --> deciding when i spend to much time on processing my salads manually...</li> </ul> <p>I know that after all, programming is a reflection of the real world. But some concepts were not tackled until computers did everything 10000000 time faster and bigger.</p> http://stackoverflow.com/questions/815292/programming-tips-with-japanese-language-characters/815497#815497 1 Answer by Berry Tsakala for Programming tips with Japanese Language/Characters Berry Tsakala 2009-05-02T20:00:30Z 2009-05-03T09:45:11Z <p>your question is totally unclear to me.</p> <p>however, i had some experience working with japanese language, so i'll give my 2 Cents.</p> <p>since japanese texts do not feature word separation (e.g. space character), the most important tool we had to acquire is a dictionary-based word recognizer.</p> <p>once you got the text split, it's easier to manipulate it with "normal" tools.</p> <p>there were only 2 tools which did the above, and as a by-product they also worked as a tagger (i.e. noun, verb, etc.).</p> <p>edit: always use unicode when working w languagers.</p> http://stackoverflow.com/questions/715166/design-decision-javascript-array-or-http-handler/715410#715410 2 Answer by Berry Tsakala for Design Decision - Javascript array or http handler Berry Tsakala 2009-04-03T19:43:11Z 2009-04-03T19:43:11Z <p>i'm against Ajax for such tasks, and vote (and implemented) the first option.</p> <p>As far as I understand, you won't create <a href="http://en.wikipedia.org/wiki/Code_smell" rel="nofollow">Code smells</a> if the JS part is being written by your server-side.</p> <p>From a user point-of-view, Ajax is an experience-killer for wireless browsing, since any little glitch or mis-service will fail or simply lengthen the interaction by factors of 20(!).</p> <p>I've implemented even more records than yours in my site, and the users love it. Since some of my users use internet-caffee, or dubious hotel wifi, it wouldn't work otherwise.</p> <p>Besides, Ajax makes your server-vs-client interaction code much more complex, IMO, which is the trickiest part in web programming.</p> http://stackoverflow.com/questions/694475/how-to-hook-to-events-messages-in-windows-using-python/707898#707898 1 Answer by Berry Tsakala for how to hook to events / messages in windows using python Berry Tsakala 2009-04-02T00:47:07Z 2009-04-02T00:47:07Z <p>I've found an ugly workaround: I wrote an <a href="http://www.autoitscript.com/autoit3/" rel="nofollow">AutoIt</a> script which detects the Excel's error MessageBox, closes it, and runs a sysinternals' utility which forces the computer to standby.</p> <pre> Opt("WinWaitDelay",400) ; -- exact text match, to save LOTS of cup cycles! Opt("WinTitleMatchMode",3) Opt("WinDetectHiddenText",1) Opt("MouseCoordMode",0) ; Opt("WinSearchChildren",1) dim $title = "Microsoft Excel" dim $text = "Windows cannot go on standby because Microsoft Office documents or application components are being accessed from the network. You must close the open documents or exit the applications before you can put the computer on standby." While True ; wait for excel's error msg WinWait($title, $text) Run("psshutdown.exe -c -d -accepteula -m mooshmoosh -t 5") ; the annoying msgbox doesn't close without the 'sleep' Sleep(1000) ; close the annoying modal msgbox! WinClose($title) ;1 minute delay, save cpu (?) Sleep(1*60*1000) WEnd </pre> <p>(this is an optimized version - the first trials were CPU intensive).<br> now it sits in the system-tray and just works.</p> <p>the lost messages question is still open. though i realized it has nothing to do with python in the first place.</p> http://stackoverflow.com/questions/694475/how-to-hook-to-events-messages-in-windows-using-python 4 how to hook to events / messages in windows using python Berry Tsakala 2009-03-29T11:15:10Z 2009-04-02T00:47:07Z <h2>in short:</h2> <p>i want to intercept <strong>suspend/standby messages</strong> on my laptop, but my program doesn't receives all relevant messages.</p> <h2>background:</h2> <p>there's a bug in ms-excel on windows xp/2k, which prevents system suspend if a file is opened on a network/usb drive.</p> <p>i'm trying to work-around it programmatically (my toolbox include python, vb6, or command line tools).</p> <p>i know nothing about windows instrumentation :-)</p> <p>i have a sysinternals utility that suspends the system anyhow. i want to hook it to the close-lid event!</p> <h2>in long:</h2> <p>The notebook lid close (fujitsu u810) initiate the standby procedure [how?]</p> <p>The system then send everybody WM_POWERBROADCAST: PBT_APMQUERYSUSPEND (i can trace them using <code>SPYXX.EXE</code>)</p> <p>Every program answers "True", until excel answers "false", and the whole process stops.</p> <h2>My questions:</h2> <p>1) my python program doesn't catch neither pbm_apmquerysuspend, nor PBT_APMQUERYSTANDBYFAILED, nor PBT_APMQUERYSUSPENDFAILED: ` ...</p> <pre><code>query = "SELECT * FROM Win32_PowerManagementEvent" power_watcher = wmi.ExecNotificationQuery ( query ) power_event = power_watcher.NextEvent () </code></pre> <p>` it receives only PBT_APMSUSPEND, if standby finally occurs.</p> <p>Why not - and how do i intercept it?</p> <p>2) Is there another way to intercept the standby process?</p> <p>in a prefect world, i would set the lid-close event to run a command i choose. in a perfect world, lid-closure is a documented event.</p> <p>thank you all :-)</p> http://stackoverflow.com/questions/185510/how-can-i-concatenate-regex-literals-in-javascript/185529#185529 Comment by Berry Tsakala on How can I concatenate regex literals in Javascript? Berry Tsakala 2009-08-23T16:16:33Z 2009-08-23T16:16:33Z a solution which includes literals: re = new RegExp(&quot;pattern1&quot; + &quot;pattern2&quot;, [&quot;flags&quot;]) HTH ;-) http://stackoverflow.com/questions/1318839/how-to-concatenate-regular-expressions-in-javascript Comment by Berry Tsakala on how to concatenate regular expressions in javascript? Berry Tsakala 2009-08-23T15:54:09Z 2009-08-23T15:54:09Z i've closed this question; but didn't delete it so others that use the keywords i've used will reach this link: <a href="http://stackoverflow.com/questions/185510/how-can-i-concatenate-regex-literals-in-javascript" rel="nofollow" title="how can i concatenate regex literals in javascript">stackoverflow.com/questions/185510/&hellip;</a> http://stackoverflow.com/questions/1283181/is-there-a-better-way-to-structure-a-sql-table-handling-user-questionaires/1283192#1283192 Comment by Berry Tsakala on Is there a better way to structure a SQL table handling User Questionaires? Berry Tsakala 2009-08-17T12:10:32Z 2009-08-17T12:10:32Z @Rex M -- i didn't understand your question. anyway, the SQL is not reduced, but with &quot;vectored&quot; data, it's more dificult to use conditional queries on individual fields (e.g. bit manipulations). it's not impossible though. http://stackoverflow.com/questions/937511/selenium-rc-locators-referring-to-subsequent-elements/1270052#1270052 Comment by Berry Tsakala on Selenium RC locators - referring to subsequent elements ? Berry Tsakala 2009-08-14T09:33:15Z 2009-08-14T09:33:15Z thanks! i had no idea it's possible (and is much more readable than xpath) http://stackoverflow.com/questions/1081802/which-programming-language-has-the-least-amount-of-syntax Comment by Berry Tsakala on Which programming language has the least amount of syntax? Berry Tsakala 2009-07-04T11:24:20Z 2009-07-04T11:24:20Z This is a good question, actually: 15%-20% of the population are dyslectic, this way or another; In addition, the less grammer a language have, the faster and a more readable code you produce, making it easy to maintain. http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/238378#238378 Comment by Berry Tsakala on Worst UI You've Ever Used Berry Tsakala 2009-06-26T16:01:29Z 2009-06-26T16:01:29Z see httrack as a positive example, for comparison of a tool doing exactly the same thing but a different http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/238245#238245 Comment by Berry Tsakala on Worst UI You've Ever Used Berry Tsakala 2009-06-26T15:54:43Z 2009-06-26T15:54:43Z Actually, gimp has improved and is improving in the past few years. It's getting much better http://stackoverflow.com/questions/1023361/human-name-comparison-ways-to-approach-this-task/1023410#1023410 Comment by Berry Tsakala on Human name comparison: ways to approach this task Berry Tsakala 2009-06-21T21:56:54Z 2009-06-21T21:56:54Z Very interesting! Thanks. It actually gives me a meaningful numerical result. (i'm trying to compile &lt;a href=&quot;<a href="http://www.dalkescientific.com/writings/diary/archive/2008/06/27/computing_tanimoto_scores.html&quot;&gt;this" rel="nofollow">dalkescientific.com/writings/diary/&hellip;</a> one&lt;/a&gt; for all our platforms... couldn't find a binary implementation) http://stackoverflow.com/questions/1023361/human-name-comparison-ways-to-approach-this-task/1024522#1024522 Comment by Berry Tsakala on Human name comparison: ways to approach this task Berry Tsakala 2009-06-21T21:50:18Z 2009-06-21T21:50:18Z Nice, although middle names play very important role in distinguishing common names from each other. Take, for example, Spanish names: adding a single letter or middle name narrows down significantly a possible match against a list of alternative names. http://stackoverflow.com/questions/101268/hidden-features-of-python/117116#117116 Comment by Berry Tsakala on Hidden features of Python Berry Tsakala 2009-06-21T21:04:50Z 2009-06-21T21:04:50Z i think it's been deprecated in python3 http://stackoverflow.com/questions/101268/hidden-features-of-python/101840#101840 Comment by Berry Tsakala on Hidden features of Python Berry Tsakala 2009-06-21T20:56:00Z 2009-06-21T20:56:00Z then how to write &quot;this i a string&quot;[::-1] in a better way? reversed doesnt seem to help http://stackoverflow.com/questions/1023361/human-name-comparison-ways-to-approach-this-task/1023379#1023379 Comment by Berry Tsakala on Human name comparison: ways to approach this task Berry Tsakala 2009-06-21T13:05:07Z 2009-06-21T13:05:07Z Wrong answer. Soundex overcomes bad spelling, not different order. I wrote explicitly - spelling is always correct. http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164663#164663 Comment by Berry Tsakala on What real life bad habits has programming given you? Berry Tsakala 2009-06-21T06:16:20Z 2009-06-21T06:16:20Z thought to right &quot;carmagedon&quot;, but then i horrified to realize i'm not the only one! IT'S DANGEROUS! was playing 6 hours strait and once i've hit the road, i had to stop for few minutes again, and recalibrate myself. http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164454#164454 Comment by Berry Tsakala on What real life bad habits has programming given you? Berry Tsakala 2009-06-21T06:12:54Z 2009-06-21T06:12:54Z i do it too and have no regrets http://stackoverflow.com/questions/993265/writing-text-with-diacritic-nikud-vocalization-marks-using-pil-python-image/1020099#1020099 Comment by Berry Tsakala on writing text with diacritic ("nikud", vocalization marks) using PIL (python image library) Berry Tsakala 2009-06-21T05:44:27Z 2009-06-21T05:44:27Z You didn't really answer, but you help seeing the bug: Only DejaVuSans.ttf and Lucidaxxx.ttf behave correctly under PIL! All the rest of my TTF files produced wrong output (but they behave nicely outside of PIL) You can try other fonts, e.g. Arial.ttf