User chryss - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T22:30:31Z http://stackoverflow.com/feeds/user/5169 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/565163/how-to-mysql-how-to-retrieve-record-based-on-three-properties/565245#565245 0 Answer by chryss for How to: MySQL How to retrieve record based on three properties? chryss 2009-02-19T13:09:25Z 2009-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#542610 0 Answer by chryss for Benefits of os.path.splitext over regular .split? chryss 2009-02-12T18:15:59Z 2009-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#531750 0 Answer by chryss for mysql multi-column search chryss 2009-02-10T10:04:29Z 2009-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#427890 0 Answer by chryss for jquery toggle display chryss 2009-01-09T12:30:05Z 2009-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#335464 1 Answer by chryss for detecting if a module is imported inside the app engine environment chryss 2008-12-02T21:13:13Z 2008-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>&gt;&gt;&gt; import sys &gt;&gt;&gt; 'unicodedata' in sys.modules False &gt;&gt;&gt; import unicodedata &gt;&gt;&gt; 'unicodedata' in sys.modules True </code></pre> http://stackoverflow.com/questions/68085/looking-for-a-very-basic-introduction-to-sql/68133#68133 5 Answer by chryss for Looking for a very basic introduction to SQL chryss 2008-09-16T00:09:37Z 2008-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#290522 1 Answer by chryss for How does the GPL apply if you are using a tool released under the GPL rather than integrating GPL code? chryss 2008-11-14T15:53:22Z 2008-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#186543 1 Answer by chryss for What's a programming answer you hate to hear the most, yet give out yourself on many occasions? chryss 2008-10-09T09:37:28Z 2008-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#124183 2 Answer by chryss for Make a <div> fade away nicely after a given amount of time chryss 2008-09-23T21:58:42Z 2008-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#107712 1 Answer by chryss for Tools to annotate images chryss 2008-09-20T09:23:11Z 2008-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#78098 2 Answer by chryss for What emails clients are being used out there? chryss 2008-09-16T22:48:33Z 2008-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#60832 0 Answer by chryss for international characters in Javascript chryss 2008-09-13T20:25:35Z 2008-09-13T20:33:20Z <p>This works as expected for me:</p> <pre><code>alert("&amp;aelig;&amp;oslash;&amp;aring;"); </code></pre> <p>... creates an alert containing the string "&amp;aelig;&amp;oslash;&amp;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#57877 1 Answer by chryss for Convert XML/HTML Entities into Unicode String in Python chryss 2008-09-11T23:09:08Z 2008-09-11T23:09:08Z <p>Use the builtin <code>unichr</code> -- BeautifulSoup isn't necessary:</p> <pre><code>&gt;&gt;&gt; entity = '&amp;#x01ce' &gt;&gt;&gt; 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#51023 3 Answer by chryss for What is the simplest way to find the difference between 2 times in python? chryss 2008-09-09T00:42:31Z 2008-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#50595 8 Answer by chryss for Graphing JavaScript Library chryss 2008-09-08T20:28:36Z 2008-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 &amp; community -uses Flash, ugh -doesn't handle time axes as nicely as Flot</li> <li>Google charts API (not a JS library): +support &amp; 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#50519 1 Answer by chryss for Source Control for Everyone? chryss 2008-09-08T19:55:08Z 2008-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#50595 Comment by chryss on Graphing JavaScript Library chryss 2009-03-16T18:00:00Z 2009-03-16T18:00:00Z I'm glad to hear that! http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218135#218135 Comment by chryss on What was the strangest coding standard rule that you were forced to follow? chryss 2009-02-13T19:59:10Z 2009-02-13T19:59:10Z Shouldn't that be &quot;Number of peas&quot;? http://stackoverflow.com/questions/541589/what-kind-of-team-building-activities-does-your-development-team-use/541619#541619 Comment by chryss on What kind of team-building activities does your development team use? chryss 2009-02-12T18:32:47Z 2009-02-12T18:32:47Z yeah, it's an answer that makes you smile, and indeed, I often cite &quot;not enough beers drunk together&quot; 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#509482 Comment by chryss on python reading lines w/o \n ? chryss 2009-02-04T15:19:16Z 2009-02-04T15:19:16Z concise, complete, to the point. http://stackoverflow.com/questions/510357/python-read-a-single-character-from-the-user/510404#510404 Comment by chryss on Python read a single character from the user chryss 2009-02-04T15:08:49Z 2009-02-04T15:08:49Z One 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#468502 Comment by chryss on 3rd party libraries, dangerous or the right way to go? chryss 2009-01-22T10:11:53Z 2009-01-22T10:11:53Z typo: &quot; libraries with common, widely-accepted *licenses*&quot;. http://stackoverflow.com/questions/355796/how-do-you-explain-oo-to-new-programmers/356470#356470 Comment by chryss on How do you explain OO to new programmers? chryss 2008-12-10T17:41:49Z 2008-12-10T17:41:49Z Or 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#266774 Comment by chryss on Python: Check if uploaded file is jpg chryss 2008-11-06T00:13:18Z 2008-11-06T00:13:18Z This 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#190303 Comment by chryss on How do you effectively model inheritance in a database? chryss 2008-10-10T07:03:45Z 2008-10-10T07:03:45Z Could 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#163263 Comment by chryss on Where can I find a List of Standard HTTP Header Values? chryss 2008-10-02T16:45:39Z 2008-10-02T16:45:39Z For even better quality of your answer, maybe edit it to say &quot;RFC2616&quot;? Cheers! http://stackoverflow.com/questions/77352/how-do-i-reward-my-developers-for-the-little-things-they-get-right/77569#77569 Comment by chryss on How do I reward my developers for the little things they get right? chryss 2008-09-24T18:19:30Z 2008-09-24T18:19:30Z Also 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#124091 Comment by chryss on What do these abbreviations in network hostnames mean? chryss 2008-09-23T21:51:53Z 2008-09-23T21:51:53Z your 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#109516 Comment by chryss on Is it bad design to use table tags when displaying forms in html? chryss 2008-09-20T23:24:27Z 2008-09-20T23:24:27Z You may want to add what @Mr Matt did -- wrap it all up in an &lt;ol&gt;. 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#109573 Comment by chryss on Is it bad design to use table tags when displaying forms in html? chryss 2008-09-20T23:22:56Z 2008-09-20T23:22:56Z This 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#3663 Comment by chryss on One piece of advice chryss 2008-09-20T20:24:37Z 2008-09-20T20:24:37Z It'll stay predominantly male as long as advice given to young programmers is geared to wards the boys. Downvoted.