User chryss - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T22:30:31Zhttp://stackoverflow.com/feeds/user/5169http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/565163/how-to-mysql-how-to-retrieve-record-based-on-three-properties/565245#5652450Answer by chryss for How to: MySQL How to retrieve record based on three properties?chryss2009-02-19T13:09:25Z2009-02-19T13:09:25Z<p>Your DB schema is not clear to me. </p>
<p>Are these four different tables? If yes, how are they linked up, ie how do you retrieve width, height, length for a given solid?</p>
<p>Or are those four columns in 1 table, identified by s_id? </p>
<p>Please clarify.</p>
http://stackoverflow.com/questions/542596/benefits-of-os-path-splitext-over-regular-split/542610#5426100Answer by chryss for Benefits of os.path.splitext over regular .split?chryss2009-02-12T18:15:59Z2009-02-12T18:15:59Z<p>In the comment to the answer that provided this solution:</p>
<blockquote>
<p>"If the file has no extension this incorrectly returns the file name instead of an empty string."</p>
</blockquote>
<p>Not every file has an extension.</p>
http://stackoverflow.com/questions/531628/mysql-multi-column-search/531750#5317500Answer by chryss for mysql multi-column searchchryss2009-02-10T10:04:29Z2009-02-10T10:04:29Z<p>What data type are your columns? If they are VARCHAR or similar, you'd simply do </p>
<pre><code>select
*
from
tbl
where
description like '%(s1)%'
or colour like '%(s1)%'
</code></pre>
<p>(This is adapted from @Pax, who I believe misunderstood the question -- I take it to mean it should match whenever the search term appears in 'description' or 'colour'.)</p>
http://stackoverflow.com/questions/427858/jquery-toggle-display/427890#4278900Answer by chryss for jquery toggle displaychryss2009-01-09T12:30:05Z2009-01-09T12:30:05Z<p>A few notes: </p>
<ol>
<li>"i can't get it to work" is no problem description. What is displayed? What do you do? What do you expect to happen? What is in fact happening?</li>
<li>Without the HTML code this is very hard to answer.</li>
<li>dd is not normally a child of dt, but a sibling.</li>
</ol>
http://stackoverflow.com/questions/335399/detecting-if-a-module-is-imported-inside-the-app-engine-environment/335464#3354641Answer by chryss for detecting if a module is imported inside the app engine environmentchryss2008-12-02T21:13:13Z2008-12-02T21:13:13Z<p>You could simply use sys.modules to test if a module has been imported (I'm using unicodedata as an example):</p>
<pre><code>>>> import sys
>>> 'unicodedata' in sys.modules
False
>>> import unicodedata
>>> 'unicodedata' in sys.modules
True
</code></pre>
http://stackoverflow.com/questions/68085/looking-for-a-very-basic-introduction-to-sql/68133#681335Answer by chryss for Looking for a very basic introduction to SQLchryss2008-09-16T00:09:37Z2008-11-27T13:18:28Z<p><a href="http://sqlzoo.net/" rel="nofollow">SQL Zoo</a> is a very gentle <em>interactive</em> introduction. If you (or the intended student) have the prerequisites and aptitude for learning SQL at all, you just can't help picking up the basics.</p>
<p>I use it with new hires for a tech support team who need to learn some fundamentals and it's been working like a charm.</p>
http://stackoverflow.com/questions/290432/how-does-the-gpl-apply-if-you-are-using-a-tool-released-under-the-gpl-rather-than/290522#2905221Answer by chryss for How does the GPL apply if you are using a tool released under the GPL rather than integrating GPL code?chryss2008-11-14T15:53:22Z2008-11-14T15:53:22Z<p>I believe the requester is over-interpreting the Notepad++ authors' statement. I believe they are non-native speakers. </p>
<p>In my interpretation, what they write is equivalent to "It runs in the MS Windows environment and its use is governed by GPL License." Nothing wrong with that.</p>
http://stackoverflow.com/questions/168677/whats-a-programming-answer-you-hate-to-hear-the-most-yet-give-out-yourself-on-m/186543#1865431Answer by chryss for What's a programming answer you hate to hear the most, yet give out yourself on many occasions?chryss2008-10-09T09:37:28Z2008-10-09T09:37:28Z<p>"Rebooting the machine fixed the issue."</p>
http://stackoverflow.com/questions/124166/make-a-div-fade-away-nicely-after-a-given-amount-of-time/124183#1241832Answer by chryss for Make a <div> fade away nicely after a given amount of timechryss2008-09-23T21:58:42Z2008-09-23T21:58:42Z<p>These days, I would always use a library for that -- the progress they've made has been phenomenal, and the cross-browser functionality alone is worth it. So this answer is a non-answer. I'd just like to point out that jQuery is all of 15kB.</p>
http://stackoverflow.com/questions/107600/tools-to-annotate-images/107712#1077121Answer by chryss for Tools to annotate imageschryss2008-09-20T09:23:11Z2008-09-20T09:23:11Z<p>I second SnagIt. For something less "everything and the kitchen sink", I use <a href="http://www.jingproject.com/" rel="nofollow">Jing</a>. For Apple Mac, there's <a href="http://skitch.com/" rel="nofollow">Skitch</a>.</p>
http://stackoverflow.com/questions/77891/what-emails-clients-are-being-used-out-there/78098#780982Answer by chryss for What emails clients are being used out there?chryss2008-09-16T22:48:33Z2008-09-16T22:56:47Z<p>Raw market share figures will not help you much. When designing HTML email, the only thing that matters is what client your particular target population uses. This depends on geographical area, industry, B2B/B2C -- variations are huge in practice. In some industries (journalism...) you'll even have to reckon with a sizeable population using clients like Lotus Notes, which is notorious for supporting HTML barely more than nominally (shudder).</p>
<p>Outlook 2007 can certainly not be neglected any more, in particular if you send to business addresses, but with Vista on new PCs it's also got a noticeable presence for private accounts.</p>
<p>Return Path indeed have data according to industry.</p>
<p>However, in practice, a good approach is to follow "save" guidelines, in a lowest common denominator style. Outlook 2007 is not the only problematic client -- Gmail is also quite notorious for lacking support for a number of design elements others display just fine. You'll find that a surprising number of web designers do run a sideline with HTML email design (there is demand and it helps pay the rent). If you just start out, Campaign Monitor (an email marketing provider) has a wealth of good resources. You could start with their <a href="http://www.campaignmonitor.com/blog/archives/2008/05/2008_email_design_guidelines.html" rel="nofollow">2008 Email Design Guidelines</a>. They're also one of those behind the <a href="http://www.email-standards.org/" rel="nofollow">Email Standards Project</a>. </p>
<p>Oh, personally I use Thunderbird with IMAP, Gmail, and RoundCube. </p>
<p>(Disclaimer/full disclosure: I actually work for a competitor, in the loose sense, of Campaing Monitor.)</p>
http://stackoverflow.com/questions/60825/international-characters-in-javascript/60832#608320Answer by chryss for international characters in Javascriptchryss2008-09-13T20:25:35Z2008-09-13T20:33:20Z<p>This works as expected for me:</p>
<pre><code>alert("&aelig;&oslash;&aring;");
</code></pre>
<p>... creates an alert containing the string "&aelig;&oslash;&aring;" whereas</p>
<pre><code>alert("æøå");
</code></pre>
<p>... creates an alert with the non-ascii characters.</p>
<p>Javascript is pretty utf-8 clean and doesn't tend to put obstacles in your way.</p>
<p>Maybe you're putting this on a web server that serves it as ISO-8859-1? If you use Apache, in your Apache config file (or in .httaccess, if you can override), you should have a line</p>
<pre><code>AddCharset utf-8 .js
</code></pre>
<p>(Note: edited to escape the ampersands... otherwise it didn't make sense.)</p>
http://stackoverflow.com/questions/57708/convert-xml-html-entities-into-unicode-string-in-python/57877#578771Answer by chryss for Convert XML/HTML Entities into Unicode String in Pythonchryss2008-09-11T23:09:08Z2008-09-11T23:09:08Z<p>Use the builtin <code>unichr</code> -- BeautifulSoup isn't necessary:</p>
<pre><code>>>> entity = '&#x01ce'
>>> unichr(int(entity[3:],16))
u'\u01ce'
</code></pre>
http://stackoverflow.com/questions/51010/what-is-the-simplest-way-to-find-the-difference-between-2-times-in-python/51023#510233Answer by chryss for What is the simplest way to find the difference between 2 times in python?chryss2008-09-09T00:42:31Z2008-09-09T00:42:31Z<p>You could transform both into <a href="http://docs.python.org/lib/datetime-timedelta.html" rel="nofollow">timedelta objects</a> and subtract these from each other, taking care to handle carry-overs correctly (from sec to min etc).</p>
http://stackoverflow.com/questions/6426/graphing-javascript-library/50595#505958Answer by chryss for Graphing JavaScript Librarychryss2008-09-08T20:28:36Z2008-09-08T20:28:36Z<p>Here is my personal shortlist with comments:</p>
<ul>
<li>Flot: +beautiful presets +very easy to use (the hardest was converting ISO datetimes to Javascript dates, which isn't hard at all) +uses jQuery - doesn't do pie charts, -looks a little bit abandoned but I could be wrong about that</li>
<li>Flotr: ++even prettier charts than Flot +-uses Prototype (which I've never worked with), -no pie charts either</li>
<li>YUI: +pie charts! + support and strong team & community -uses Flash, ugh -doesn't handle time axes as nicely as Flot</li>
<li>Google charts API (not a JS library): +support & community +pretty, too -really tedious construction of the REST URLs for any more complex graph -no automatic date/time axis support</li>
</ul>
<p>In a nutshell, for tiny little simple graphs I'd use the Google charts API, but for my current project (an internal reporting tool) it'll likely be Flot, though if it was client-facing code I'd probably either look further or give Flotr/Prototype a try. </p>
http://stackoverflow.com/questions/50194/source-control-for-everyone/50519#505191Answer by chryss for Source Control for Everyone?chryss2008-09-08T19:55:08Z2008-09-08T19:55:08Z<p>I am currently exploring the extent to which SharePoint can provide non-techie friendly yet reliable version control in a similar context. The preliminary result is "meh". Even in the case we come to a conclusion, it is already becoming clear that revision control requires quite an important shift in users' attitudes to document management.</p>
<p>Now if this was for teams using Apple Macs, which I presume it isn't, I'd strongly recommend <a href="http://www.versionsapp.com/" rel="nofollow">Versions</a>, which is an extremely intuitive SVN client. This is the first and only software where I've seen revision control and its paradigm shifts being adopted easily by non-programmers. </p>
http://stackoverflow.com/questions/6426/graphing-javascript-library/50595#50595Comment by chryss on Graphing JavaScript Librarychryss2009-03-16T18:00:00Z2009-03-16T18:00:00ZI'm glad to hear that!http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218135#218135Comment by chryss on What was the strangest coding standard rule that you were forced to follow?chryss2009-02-13T19:59:10Z2009-02-13T19:59:10ZShouldn't that be "Number of peas"? http://stackoverflow.com/questions/541589/what-kind-of-team-building-activities-does-your-development-team-use/541619#541619Comment by chryss on What kind of team-building activities does your development team use?chryss2009-02-12T18:32:47Z2009-02-12T18:32:47Zyeah, it's an answer that makes you smile, and indeed, I often cite "not enough beers drunk together" why we're having strained relations with a team in another country, but it's no universal solution, and has dangers.http://stackoverflow.com/questions/509446/python-reading-lines-w-o-n/509482#509482Comment by chryss on python reading lines w/o \n ?chryss2009-02-04T15:19:16Z2009-02-04T15:19:16Zconcise, complete, to the point. http://stackoverflow.com/questions/510357/python-read-a-single-character-from-the-user/510404#510404Comment by chryss on Python read a single character from the userchryss2009-02-04T15:08:49Z2009-02-04T15:08:49ZOne character or one byte? That's not the same.http://stackoverflow.com/questions/468459/3rd-party-libraries-dangerous-or-the-right-way-to-go/468502#468502Comment by chryss on 3rd party libraries, dangerous or the right way to go?chryss2009-01-22T10:11:53Z2009-01-22T10:11:53Ztypo: " libraries with common, widely-accepted *licenses*". http://stackoverflow.com/questions/355796/how-do-you-explain-oo-to-new-programmers/356470#356470Comment by chryss on How do you explain OO to new programmers?chryss2008-12-10T17:41:49Z2008-12-10T17:41:49ZOr father, or brother? I keep having to explain to male non-techies...http://stackoverflow.com/questions/266648/python-check-if-uploaded-file-is-jpg/266774#266774Comment by chryss on Python: Check if uploaded file is jpgchryss2008-11-06T00:13:18Z2008-11-06T00:13:18ZThis is not going to work in App Engine: PIL contains C code and is therefore not available. The Images API (<a href="http://code.google.com/appengine/docs/images/" rel="nofollow">code.google.com/appengine/docs/images</a>) uses PIL, but it's stubbed out. http://stackoverflow.com/questions/190296/how-do-you-effectively-model-inheritance-in-a-database/190303#190303Comment by chryss on How do you effectively model inheritance in a database?chryss2008-10-10T07:03:45Z2008-10-10T07:03:45ZCould you add a reference where the illustration is from?http://stackoverflow.com/questions/163236/where-can-i-find-a-list-of-standard-http-header-values/163263#163263Comment by chryss on Where can I find a List of Standard HTTP Header Values?chryss2008-10-02T16:45:39Z2008-10-02T16:45:39ZFor even better quality of your answer, maybe edit it to say "RFC2616"?
Cheers!http://stackoverflow.com/questions/77352/how-do-i-reward-my-developers-for-the-little-things-they-get-right/77569#77569Comment by chryss on How do I reward my developers for the little things they get right?chryss2008-09-24T18:19:30Z2008-09-24T18:19:30ZAlso I wonder what your stake is in Amazon. Never heard of Fry's, but then, I'm in Europe.http://stackoverflow.com/questions/124076/what-do-these-abbreviations-in-network-hostnames-mean/124091#124091Comment by chryss on What do these abbreviations in network hostnames mean?chryss2008-09-23T21:51:53Z2008-09-23T21:51:53Zyour answer made me smile. d'oh.http://stackoverflow.com/questions/109488/is-it-bad-design-to-use-table-tags-when-displaying-forms-in-html/109516#109516Comment by chryss on Is it bad design to use table tags when displaying forms in html?chryss2008-09-20T23:24:27Z2008-09-20T23:24:27ZYou may want to add what @Mr Matt did -- wrap it all up in an <ol>. Together, this should be the best answer.http://stackoverflow.com/questions/109488/is-it-bad-design-to-use-table-tags-when-displaying-forms-in-html/109573#109573Comment by chryss on Is it bad design to use table tags when displaying forms in html?chryss2008-09-20T23:22:56Z2008-09-20T23:22:56ZThis is precisely what I use. Seconded. I do not consider it any more easy to style tables -- way too messy. http://stackoverflow.com/questions/3553/one-piece-of-advice/3663#3663Comment by chryss on One piece of advicechryss2008-09-20T20:24:37Z2008-09-20T20:24:37ZIt'll stay predominantly male as long as advice given to young programmers is geared to wards the boys. Downvoted.