User okoman - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T23:07:47Z http://stackoverflow.com/feeds/user/35903 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/655847/how-to-determine-the-number-of-pages-most-effectively 2 How to determine the "number of pages" most effectively? okoman 2009-03-17T20:13:17Z 2009-09-22T21:29:55Z <p>Hi!</p> <p>I hope I'm not writing a duplicate, but I haven't found anything that answers my question. (Although it seems to me to be quite common problem.)</p> <p>The problem occurs in nearly every web project: You have a table with many many entries and want them to be displayed on single pages. </p> <p>Now I wonder what's the best way to compute the number of pages needed for a certain set of table rows.</p> <p>Here some approaches I've been thinking of. I'd like to get some response on how effective they are. I'll give PHP-specific examples, but I bet there are similar techniques in other languages.</p> <ol> <li><p>The probably best way is to save the number of pages statically and modify the value every time a new entry is added. (Nevertheless... I'm looking for a dynamic solution :-) )</p></li> <li><p>Do a <code>SELECT COUNT(*)</code> over the rows of interest and compute the page number every time the page is displayed.</p></li> <li><p>Do a ordinary select to get a result set for all rows. Now don't load the rows by calling <code>mysql_fetch_row</code> or so, but get the number of rows with <code>mysql_num_rows</code>. (Since I have no idea how this is implemented I cannot say whether it is effective or not. Anyone who knows?) Then I could comfortably move the result set pointer. (For <code>mysqli</code> there is <code>mysql_data_seek</code>, but the native MySQL extension has no similar function. Therefore I assume that this is just some buffering behaviour of <code>mysqli</code>)</p></li> </ol> <p>Can anyone say how to count the number of rows (number of pages) most effectively?</p> http://stackoverflow.com/questions/875415/php-only-include-files-when-running-phing 0 PHP: Only include files when running phing? okoman 2009-05-17T20:24:05Z 2009-08-07T07:40:40Z <p>I have the following folder structure:</p> <pre><code>/main /loader.php /build.xml /components /package1 /class1.php /package2 /class2.php /tests /package1 /class1.test.php /package2 /class2.test.php </code></pre> <p>When I run the web application I load <code>loader.php</code> at first and include other components by calling <code>Loader::load( 'package_name' )</code>. Then all neccessary files are included. The good thing here is that I don't need to include <code>loader.php</code> within the class files because I can rely on having a working instance of <code>Loader</code>.</p> <p>The Unit Test classes simulate this behaviour by including all neccessary classes explicitly. So there is also no problem with phing and PHPUnit.</p> <p>But now I want to generate a coverage report with phing and Xdebug. The problem here is that phing seems to load every single PHP file to create the coverage database. Unfortunately it stops because it cannot find the <code>Loader</code> class that is used in the PHP files.</p> <p>I could easily add an <code>include</code> statement to every class file, but I wonder whether there is a way to include files only if code coverage analysis is inspecting the file? </p> <p>Other idea: I could also configure the coverage analysis in a way that it scans the unit tests directory and therefore finds all neccessary includes. Then I'd need to filter classes that match to a pattern like <code>/Test$/i</code> or so. Possible?</p> http://stackoverflow.com/questions/1229202/convert-list-of-floats-into-buffer-in-python 1 Convert list of floats into buffer in Python? okoman 2009-08-04T18:43:04Z 2009-08-04T19:10:17Z <p>I am playing around with PortAudio and Python.</p> <pre><code>data = getData() stream.write( data ) </code></pre> <p>I want my stream to play sound data, that is represented in Float32 values. Therefore I use the following function:</p> <pre><code>def getData(): data = [] for i in range( 0, 1024 ): data.append( 0.25 * math.sin( math.radians( i ) ) ) return data </code></pre> <p>Unfortunately that doesn't work because <code>stream.write</code> wants a buffer object to be passed in:</p> <pre><code>TypeError: argument 2 must be string or read-only buffer, not list </code></pre> <p>So my question is: How can I convert my list of floats in to a buffer object?</p> http://stackoverflow.com/questions/1074660/with-a-browser-how-do-i-know-which-decimal-separator-does-the-client-use/1075032#1075032 -1 Answer by okoman for With a browser, how do I know which decimal separator does the client use? okoman 2009-07-02T15:21:18Z 2009-07-02T15:21:18Z <p>Another possible solution: You could use something like <a href="http://www.php.net/manual/de/book.geoip.php" rel="nofollow">GeoIP</a> (example in PHP) to determine the user's location and decide based on these information.</p> http://stackoverflow.com/questions/1071035/css-stop-element-from-having-greater-height-than-parent/1071066#1071066 0 Answer by okoman for CSS stop element from having greater height than parent okoman 2009-07-01T20:02:43Z 2009-07-01T20:02:43Z <p>You can use the overflow setting:</p> <pre><code>#id { overflow: scroll; } </code></pre> http://stackoverflow.com/questions/1070244/how-to-determine-the-first-and-last-iteration-in-a-foreach-loop/1070520#1070520 0 Answer by okoman for How to determine the first and last iteration in a foreach loop? okoman 2009-07-01T18:03:22Z 2009-07-01T18:09:17Z <p>1: Why not use a simple <code>for</code> statement? Assuming you're using a real array and not an <code>Iterator</code> you could easily check whether the counter variable is 0 or one less than the whole number of elements. In my opinion this is the most clean and understandable solution...</p> <pre><code>$array = array( ... ); $count = count( $array ); for ( $i = 0; $i &lt; $count; $i++ ) { $current = $array[ $i ]; if ( $i == 0 ) { // process first element } if ( $i == $count - 1 ) { // process last element } } </code></pre> <p>2: You should consider using <a href="http://dev.mysql.com/tech-resources/articles/hierarchical-data.html" rel="nofollow">Nested Sets</a> to store your tree structure. Additionally you can improve the whole thing by using recursive functions.</p> http://stackoverflow.com/questions/1069800/sprites-vs-image-slicing/1069835#1069835 9 Answer by okoman for sprites vs image slicing okoman 2009-07-01T15:32:39Z 2009-07-01T15:32:39Z <p>The main advantage of sprites is that the browser has to request less pictures from the webserver. That reduces the number of HTTP requests and makes it possible to compress the parts of the design more effectively. These two points also represent the disadvantages of sliced images.</p> <p>Here you can see some good examples how sprites improve the loading speed of web pages: </p> <p><a href="http://css-tricks.com/css-sprites/" rel="nofollow">http://css-tricks.com/css-sprites/</a></p> http://stackoverflow.com/questions/917920/whats-the-most-easy-to-parse-format-for-php/917951#917951 0 Answer by okoman for what's the most easy-to-parse format for PHP? okoman 2009-05-27T20:49:15Z 2009-05-27T20:49:15Z <p>You could use <a href="http://de2.php.net/de/dom" rel="nofollow">DOM</a> or <a href="http://de2.php.net/manual/de/book.simplexml.php" rel="nofollow">SimpleXML</a> to parse XML files, but also <a href="http://de2.php.net/manual/de/book.json.php" rel="nofollow">JSON</a> or <a href="http://code.google.com/p/spyc/" rel="nofollow">YAML</a>. All are quite easy to use as you can rely on high-level parsers for PHP. They have advantages and disadvantages depending on how you want to use the format.</p> http://stackoverflow.com/questions/901663/study-informatics-because-i-like-programming 2 Study Informatics because I like programming? okoman 2009-05-23T14:55:01Z 2009-05-26T10:01:21Z <p>Maybe this question is not really programming related, but since I believe that a good number of SOlers had to ask themselves the same question once SO seems to be the right place to ask.</p> <p>Next year I want to study here in Germany. Since I have many interests there are many possible branches of study. One of my favorites is Informatics, because I like to program and arguably am good at it. Last year I wrote a paper on CMSs. Also I like setting up servers and all that administration stuff.</p> <p>Needless to say that Informatics is not nearly only about these two topics. But nonetheless I'd like to know whether it is a good idea to make a decision for Informatics because of these interests?</p> <p>What I'm looking for are people who may already have made experiences with studying Informatics, just because they liked to write programs.</p> http://stackoverflow.com/questions/900594/php-subversion-setup-ftp/901309#901309 0 Answer by okoman for PHP Subversion Setup FTP okoman 2009-05-23T10:57:52Z 2009-05-23T10:57:52Z <p>Just an idea:</p> <p>You could hold a revision of your project on a host you have access to and where subversion is installed. This single revision reflects the production server's version. You could now write a PHP script that makes this repository update over svn and then find all files that have been changed since the rep was updated. These files you can upload.</p> <p>Such a script could look like this:</p> <pre><code>$path = realpath( '/path/to/production/mirror' ); chdir( $path ); $start = time(); shell_exec( 'svn co' ); $list = array(); $i = new RecursiveIteratorIterator( new RecursiveDirectoryIterator( $path ), RecursiveIteratorIterator::SELF_FIRST ); foreach( $i as $node ) { if ( $node-&gt;isFile() &amp;&amp; $node-&gt;getCTime() &gt; $start ) { $list[] = $node-&gt;getPathname(); } // directories should also be handled } $conn = ftp_connect( ... ); // and so on </code></pre> <p>Just as it came to my mind.</p> http://stackoverflow.com/questions/876962/php-logical-coding-style/877009#877009 -1 Answer by okoman for PHP logical coding style okoman 2009-05-18T10:07:03Z 2009-05-18T10:12:05Z <p>I think HTML and PHP should be seperated as much as possible. It makes the whole code easier to read and creates a clear structure. That means for me that PHP should not output HTML, since you can use HTML to do that part...</p> <p>So I'd also prefer the last example, but with one difference: I think using the bracket-style mixed into HTML makes it very hard to read the code. The <code>if...endif</code> style is the better alternative I think. Also printing HTML with PHP seems unlogic. </p> <p>I'd do it this way:</p> <pre><code> &lt;td valign="top"&gt;&lt;form name="form5" method="GET" action=""&gt;&lt;select name="m" onchange="this.form.submit()"&gt;; &lt;? if ( empty($_GET['p']) ): ?&gt; &lt;option value=" "&gt;All&lt;/option&gt; &lt;? else: ?&gt; &lt;option value="&lt;?=$_GET['m']?&gt;"&gt;&lt;?=$_GET['m']?&lt;/option&gt; &lt;? endif; ?&gt; &lt;? $query = "SELECT DISTINCT maoie FROM ".$BD."site"; $res = mysql_query($query); while ( $row = mysql_fetch_assoc($res) ): ?&gt; &lt;? if( !empty($row['maoie']) ): ?&gt; &lt;option value="&lt;?=$row['maoie']?&gt;"&gt;&lt;?=$row['maoie']?&gt;&lt;/option&gt; &lt;? endif; ?&gt; &lt;? endwhile; ?&gt; &lt;/select&gt;&lt;/form&gt;&lt;/td&gt; &lt;? echo add_more_stuff(); ?&gt; </code></pre> <p>At least this is a bit more logic. Nevertheless things like database interaction should be excluded to somewhere else in your web application. If you seperate the data and the design of your page it gets much clearer.</p> <p>Nevertheless I think using PHP as a <em>template language</em> is totally fine as long as you only use some replacement variables and simple if-statements.</p> http://stackoverflow.com/questions/856604/is-it-a-good-idea-to-use-xml-and-xslt-for-websites 1 Is it a good idea to use XML and XSLT for websites? okoman 2009-05-13T07:45:26Z 2009-05-13T12:46:44Z <p>I'm wondering whether it brings advantages or disadvantages when using a XML document for the content of a web page and XSLT to manage the display part and not using plain HTML.</p> <p>The first condition in my eyes is browser support for XML and XSLT. But as far as I know no modern browser has a problem with it. (Correct me if I'm wrong.)</p> <p>But are there for instance benefits (semantic web and so on) or losses (HTML tags are more common) in the ranking of search engines? </p> <p>Or do you see other reasons why one should or should not use the combination of XML and XSLT for web pages?</p> <h3>Related:</h3> <blockquote> <p><a href="http://stackoverflow.com/questions/803007/why-choose-an-xsl-transformation">Why choose an XSL-transformation?</a></p> <p><a href="http://stackoverflow.com/questions/560635/is-there-a-point-creating-a-site-using-xslt">Is there a point creating a site using XSLT</a></p> </blockquote> http://stackoverflow.com/questions/443885/python-callbacks-delegates-what-is-common 7 Python: Callbacks, Delegates, ... ? What is common? okoman 2009-01-14T17:20:28Z 2009-05-12T04:13:31Z <p>Hi!</p> <p>Just want to know what's the common way to react on events in python. There are several ways in other languages like callback functions, delegates, listener-structures and so on. Is there a common way? Which default language concepts or additional modules are there and which can you recommend?</p> http://stackoverflow.com/questions/778581/plotting-a-function-with-centered-axes 0 Plotting a function with centered axes okoman 2009-04-22T18:35:25Z 2009-05-10T12:09:20Z <p>I had a short look at some popular plotting libraries but haven't found what I need until now. </p> <p>Basically I'm looking for a library or tool that generates a graph as it is known from school. That means not an axis description at the outer left and one at the bottom, but two crossed axes, mostly positioned in the center of the graph. You can find an example <a href="http://upload.wikimedia.org/wikibooks/de/3/31/Functiony%3D2x%5F3%5Ffx.svg" rel="nofollow">here</a>.</p> <p>Maybe I didn't notice that gnuplot/octave/matplotlib or any others already have that feature. If so, I'd like to get a clue where to find the information.</p> http://stackoverflow.com/questions/799354/configure-apache-to-use-python-just-like-cgi-php 0 Configure Apache to use Python just like CGI PHP okoman 2009-04-28T18:51:59Z 2009-04-29T14:31:37Z <p>Hi, I think one commonly known way of adding PHP to an Apache webserver is to configure it like this:</p> <pre><code>ScriptAlias /php5.3 /usr/local/php5.3/bin Action application/php5.3 /php5.3/php-cgi AddType application/php5.3 .php </code></pre> <p>Now I tried to write a similar configuration for Python:</p> <pre><code>ScriptAlias /python /usr/bin Action application/python /python/python AddType application/python .py </code></pre> <p>I have a small test script that looks like this:</p> <pre><code>print "Content-Type: text/html\n\n" print "Test" </code></pre> <p>But something seems to be wrong since the apache error log says the following:</p> <pre><code>Premature end of script headers: python </code></pre> <p>So my first though was that my python response is not right. But there is the Content-Type and also both linebreaks. Also the output of a similar PHP script called with <code>php-cgi</code> gives exactly the same output.</p> <p>Also I haven't found a tutorial that shows how to get python working this way. So maybe it is not possible, but then I'm curious why this is the case? Or am I missing something?</p> http://stackoverflow.com/questions/671277/eval-formula-in-as3 1 Eval formula in AS3? okoman 2009-03-22T16:50:06Z 2009-04-23T19:24:38Z <p>I'm playing around a bit with ActionScript. What I want is that I can display a mathematical function from a string. </p> <p>E.g. in my working python script I do something like that:</p> <pre><code>formula = 'x**2 + 3*x' for x in range( 0, 100 ): y = eval( formula ) graph.display( x, y ) </code></pre> <p>I want to port this to ActionScript, but it seems like there is no more eval since version 3. How can I compute my function values anyway?</p> http://stackoverflow.com/questions/782846/php-recommended-replacement-for-deprecated-callusermethod 0 PHP: Recommended replacement for deprecated call_user_method? okoman 2009-04-23T17:53:35Z 2009-04-23T18:06:18Z <p>Since PHP's <a href="http://de3.php.net/call%5Fuser%5Fmethod" rel="nofollow">call_user_method</a> and <a href="http://de3.php.net/manual/de/function.call-user-method-array.php" rel="nofollow">call_user_method_array</a> are marked deprecated I'm wondering what alternative is recommended?</p> <p>One way would be to use <a href="http://de3.php.net/manual/de/function.call-user-func.php" rel="nofollow">call_user_func</a>, because by giving an array with an object and a method name as the first argument does the same like the deprecated functions. Since this function is not marked deprecated I assume the reason isn't the non-OOP-stylish usage of them?</p> <p>The other way I can think of is using the <a href="http://de3.php.net/manual/de/language.oop5.reflection.php" rel="nofollow">Reflection API</a>, which might be the most comfortable and future-oriented alternative. Nevertheless it's more code and I could image that it's slower than using the functions mentioned above.</p> <p>What I'm interested in:</p> <ul> <li>Is there a completely new technique for calling an object's methods by name?</li> <li>Which is the fastest/best/official replacement?</li> <li>What's the reason for deprecation?</li> </ul> http://stackoverflow.com/questions/623378/get-revision-number-of-a-remote-repository 1 Get revision number of a remote repository okoman 2009-03-08T10:30:33Z 2009-04-17T22:38:19Z <p>Hi!</p> <p>On the local machine it is no problem to get the revision number of a subversion repository with <code>svnversion</code>. Now I want to get the revision number from my online repository (WebDAV with Apache2).</p> <p>I tried this: </p> <pre><code>svnversion http://nick:password@www.myhost.de/svn/test` </code></pre> <p>In a browser it worked as usual (jsut to ensure there weren't typos or so), but <code>svnversion</code> said that the directory cannot be found. So I presume I was on the wrong track.</p> <p>How can I get the revision number?</p> http://stackoverflow.com/questions/562608/aggregation-with-two-joins-mysql 1 Aggregation with two Joins (MySQL) okoman 2009-02-18T20:09:08Z 2009-03-24T20:41:36Z <p>Hi! </p> <p>I have one table called <strong>gallery</strong>. For each row in <strong>gallery</strong> there are several rows in the table <strong>picture</strong>. One picture belongs to one gallery. Then there is the table <strong>vote</strong>. There each row is an upvote or a downvote for a certain gallery. Here is the (simplified) structure:</p> <pre><code>gallery ( gallery_id ) picture ( picture_id, picture_gallery_ref ) vote ( vote_id, vote_value, vote_gallery_ref ) </code></pre> <p>Now I want one query to give me the following information: All galleries with their own data fields and the number of pictures that are connected to the gallery and the sumarized value of the votes.</p> <p>Here is my query, but due to the multiple joining the aggregated values are not the right ones. (At least when there is more than one row of either pictures or votes.)</p> <pre><code>SELECT *, SUM( vote_value ) as score, COUNT( picture_id ) AS pictures FROM gallery LEFT JOIN vote ON gallery_id = vote_gallery_ref LEFT JOIN picture ON gallery_id = picture_gallery_ref GROUP BY gallery_id </code></pre> <p>Because I have noticed that <code>COUNT( DISTINCT picture_id )</code> gives me the correct number of pictures I tried this:</p> <pre><code>( SUM( vote_value ) / GREATEST( COUNT( DISTINCT picture_id ), 1 ) ) AS score </code></pre> <p>It works in this example, but what if there were more joins in one query? </p> <p>Just want to know whether there is a better or more 'elegant' way this problem can be solved. Also I'd like to know whether my solution is MySQL-specific or standard SQL?</p> http://stackoverflow.com/questions/678655/how-do-i-run-a-custom-function-bit-of-code-when-php-has-a-parse-error/678812#678812 3 Answer by okoman for How do I run a custom function/bit of code when PHP has a parse error okoman 2009-03-24T19:12:51Z 2009-03-24T19:12:51Z <p>Another idea: If you have an own root server or just want to execute the script on your local PC you could do the following:</p> <p>Put the code to test in a new file, say <code>failure.php</code>. In your script (same directory), where you want to check for errors, do it this way:</p> <pre><code>$path_to_test = 'failure.php'; $result = `php -l $path_to_test`; </code></pre> <p>Then you have the parse error messages in <code>$result</code>, because the flag <code>-l</code> makes PHP only parse the code. It will never execute anything. You can parse the error messages if any on your own and even get the line numbers out of them.</p> http://stackoverflow.com/questions/678655/how-do-i-run-a-custom-function-bit-of-code-when-php-has-a-parse-error/678689#678689 1 Answer by okoman for How do I run a custom function/bit of code when PHP has a parse error okoman 2009-03-24T18:47:16Z 2009-03-24T18:47:16Z <p>It isn't a <em>Fatal error</em> as the term is used in PHP. It is a <em>Parse error</em>. This means that PHP cannot understand your code and it thus never comes to execution of the code at all. Therefore you can't catch such errors. If you're sure the code to test does not contain any harmful injections, you can eval it:</p> <pre><code>if ( !@eval( 'if () {' ) ) { echo "An error occured."; } </code></pre> <p>But be sure to read advices on how and when to use <a href="http://www.php.net/de/eval" rel="nofollow">eval</a>. It can be quite dangerous.</p> http://stackoverflow.com/questions/670770/root-servers-for-web-development-how-much-power-is-enough 0 Root servers for web development - how much power is enough? okoman 2009-03-22T09:46:43Z 2009-03-22T10:22:58Z <p>I think this question has not to do with programming in general, but nevertheless the answers might be interesting to other web developers.</p> <p>I just wondered how to estimate the minimum requirements to have a fast website. Obviously there are some facts that have to be considered like the expected number of visitors, the derived number of clicks per seconds and so on... Also running services like web servers (Apache/lighttpd) or mail servers (Exim, sendmail, ...) could end up in different needs.</p> <p>Maybe you know a good website or can give some explanations on how to estimate the needed server configuration from such information?</p> http://stackoverflow.com/questions/463101/lua-current-time-in-milliseconds 4 Lua - Current time in milliseconds okoman 2009-01-20T21:03:34Z 2009-03-17T17:20:31Z <p>Hi, another Lua question: Is there a common way to get the current time in or with milliseconds? There is <code>os.time()</code>, but it only provides full seconds.</p> http://stackoverflow.com/questions/646116/open-source-cross-platform-multiplayer-networking-libraries/646282#646282 1 Answer by okoman for Open Source & Cross Platform Multiplayer/Networking Libraries? okoman 2009-03-14T17:12:25Z 2009-03-14T17:12:25Z <p>The <a href="http://www.ogre3d.org/wiki/index.php/Libraries#Networking" rel="nofollow">wiki of Ogre3D</a> provides a list of networking libraries and a short description for them.</p> http://stackoverflow.com/questions/599777/css-background-color-disappears-with-doctype/599787#599787 1 Answer by okoman for css background color disappears with doctype okoman 2009-03-01T13:06:14Z 2009-03-01T13:06:14Z <p>In CSS you can define colors in RGB or Hex. This is what you did. But Hex-Colors are written like <code>#rrggbb</code>. You missed the <strong>#</strong>. Seems like when it comes to validation because a doctype is set, then such "almost-correct" color definitions are not interpreted correctly.</p> http://stackoverflow.com/questions/590747/using-regular-expressions-to-parse-html-why-not/590780#590780 2 Answer by okoman for Using regular expressions to parse HTML: why not? okoman 2009-02-26T14:30:34Z 2009-02-26T14:30:34Z <p>The problem is that most users who ask a question that has to do with HTML and regex do this because they can't find an own regex that works. Then one has to think whether everything would be easier when using a DOM or SAX parser or something similar. They are optimized and constructed for the purpose of working with XML-like document structures.</p> <p>Sure, there are problems that can be solved easily with regular expressions. But the emphasis lies on <strong>easily</strong>. </p> <p>If you just want to find all URLs that look like <a href="http://.../" rel="nofollow">http://.../</a> you're fine with regexps. But if you want to find all URLs that are in a a-Element that has the class 'mylink' you probebly better use a appropriate parser.</p> http://stackoverflow.com/questions/586484/php-class-diagram-that-generates-the-code/586533#586533 1 Answer by okoman for PHP Class diagram that generates the code okoman 2009-02-25T15:43:50Z 2009-02-25T15:43:50Z <p><a href="http://argouml.tigris.org/" rel="nofollow">ArgoUML</a> is a free UML modeler and supports PHP5 code generation.</p> http://stackoverflow.com/questions/578804/how-to-set-the-mouse-position-under-x11-linux-desktop 1 How to set the mouse position under X11 (linux desktop)? okoman 2009-02-23T18:45:32Z 2009-02-23T23:20:15Z <p>I'm wondering how to set the mouse cursor position under X11? Is it possible at all and if, where do I have to look for appropriate functions? X window system, KDE/Gnome/...? </p> http://stackoverflow.com/questions/553038/treat-null-as-0-in-django-model 3 Treat NULL as '0' in Django model okoman 2009-02-16T11:38:30Z 2009-02-17T11:30:34Z <p>Hi! I use the following bit of code in my Django app:</p> <pre><code>pictures = gallery.picture_set.annotate( score=models.Sum( 'picturevote__value' ) ).order_by( '-score' ) </code></pre> <p>There is a table of galleries. In each of them are some pictures. When a user votes up or down a picture, a new row in 'picturevote' is inserted and connected to the picture. Then I can get the total score for the pictures. Now I want to order the pictures of one gallery by their score values. But due to the table joins there can be the value NULL for score when there were no votes at all. Nevertheless a score of 'NULL' shall be treated as '0'.</p> <p>Any ideas?</p> <p>edit: Okay, here some additional explanation: The problem is that the aggregation in the above example sets <code>score</code> to NULL. When I want to display the score I use something like this:</p> <pre><code>score = self.picturevote_set.aggregate( models.Sum( 'value' ) )[ 'value__sum' ] or 0 </code></pre> <p>Then the aggregation leads either to NULL (if there are no picturevote rows) or a certain value. If it is NULL the or-expression converts it to a displayable integer value. But this solves just the display problems which are caused by the NULL value. When I want to sort the pictures by this <code>score</code> value as in the first code example all entries with NULL are put at the end of the ordered result set. First there are pictures with positive scores, then there are the pictures with negative values and THEN there are the pictures that were not voted up or down so far, because they have NULL as <code>score</code>.</p> <p>My question is how this behaviour can be changed so that the order is correct.</p> http://stackoverflow.com/questions/553246/jquery-href-returns-undefined/553274#553274 1 Answer by okoman for jquery href returns undefined okoman 2009-02-16T13:20:04Z 2009-02-16T13:20:04Z <p>Now I see what you want to do.</p> <p>Try this:</p> <pre><code>alert( $("a.deleteLink")[0].href ); </code></pre> http://stackoverflow.com/questions/1229202/convert-list-of-floats-into-buffer-in-python/1229222#1229222 Comment by okoman on Convert list of floats into buffer in Python? okoman 2009-08-04T18:50:34Z 2009-08-04T18:50:34Z Since getData() returns a sequence of floats I get the following error message: TypeError: sequence item 0: expected string, float found. Nonetheless I want to get a buffer... in C I would certainly use a pointer, not concatenate the float values.. http://stackoverflow.com/questions/934918/how-to-set-the-vertical-scroll-bar-in-firefox-to-be-in-the-left-side Comment by okoman on how to set the vertical scroll bar in firefox to be in the left side ? okoman 2009-06-01T14:21:08Z 2009-06-01T14:21:08Z I wonder why people like to discuss whether something is useful or good or whatever instead of giving a helpful answer... http://stackoverflow.com/questions/934236/is-php-suitable-for-very-large-projects-can-it-be-transaction-safe Comment by okoman on Is PHP suitable for very large projects? Can it be transaction-safe? okoman 2009-06-01T12:13:22Z 2009-06-01T12:13:22Z Of course you can define how much time script execution in PHP may take. On your own server it is as easy as putting a new value into the php.ini file. With a simple webhosting solution you'll hardly have a chance to do this. http://stackoverflow.com/questions/901663/study-informatics-because-i-like-programming Comment by okoman on Study Informatics because I like programming? okoman 2009-05-23T19:01:34Z 2009-05-23T19:01:34Z Such a course is about computers in general. You learn things like programming, but also robotics and electronics to a certain degree. But especially the letter never interested me very much. On the other hand I saw some robots at university and this indeed was interesting... Nevertheless at the moment I tend to studying something else. Maybe it's better to have studied something that covers more topics one is interested in and having the additional qualification of being able to program, than studying Informatics and not having this 'special' ability. :-) http://stackoverflow.com/questions/799354/configure-apache-to-use-python-just-like-cgi-php/799432#799432 Comment by okoman on Configure Apache to use Python just like CGI PHP okoman 2009-04-29T14:13:04Z 2009-04-29T14:13:04Z With a config like that above I managed to change the PHP interpreter version by accessing the server with a different port. (http://...:80/test.php -&gt; PHP 5.2 ; http://...:85/test.php -&gt; PHP 5.3) My hope was to get the same working with Python. An ordinary CGI script is not the right choice since the interpreter version shall be chosen automatically. Think I'm gonna have a look at FastCGI or mess around with mod_python, although it seems to need a bit more of doc reading :-) http://stackoverflow.com/questions/799354/configure-apache-to-use-python-just-like-cgi-php/799630#799630 Comment by okoman on Configure Apache to use Python just like CGI PHP okoman 2009-04-29T14:08:18Z 2009-04-29T14:08:18Z Right, but I didn't want the 'ordinary' cgi script, but avoid the interpreter line. http://stackoverflow.com/questions/799354/configure-apache-to-use-python-just-like-cgi-php/799432#799432 Comment by okoman on Configure Apache to use Python just like CGI PHP okoman 2009-04-28T20:04:55Z 2009-04-28T20:04:55Z Okay, I read some more detailed articles about CGI now and think I see the point. http://stackoverflow.com/questions/799354/configure-apache-to-use-python-just-like-cgi-php/799382#799382 Comment by okoman on Configure Apache to use Python just like CGI PHP okoman 2009-04-28T19:00:34Z 2009-04-28T19:00:34Z See my comment. But thanks anyway ;) http://stackoverflow.com/questions/799354/configure-apache-to-use-python-just-like-cgi-php Comment by okoman on Configure Apache to use Python just like CGI PHP okoman 2009-04-28T19:00:03Z 2009-04-28T19:00:03Z Just to clarify: I know the alternatives and how to set up python properly. Just wondering why this configuration does not work... http://stackoverflow.com/questions/782846/php-recommended-replacement-for-deprecated-callusermethod/782867#782867 Comment by okoman on PHP: Recommended replacement for deprecated call_user_method? okoman 2009-04-23T18:03:38Z 2009-04-23T18:03:38Z No problem... I was just curious ;) http://stackoverflow.com/questions/778581/plotting-a-function-with-centered-axes Comment by okoman on Plotting a function with centered axes okoman 2009-04-22T18:52:14Z 2009-04-22T18:52:14Z Yes, I want to generate graphs on a web page. I'd like to do it in PHP, but I haven't found anything related to graph plotting for PHP. Python would be also okay, but the language doesn't really matter at all. http://stackoverflow.com/questions/671277/eval-formula-in-as3/673451#673451 Comment by okoman on Eval formula in AS3? okoman 2009-03-24T15:10:45Z 2009-03-24T15:10:45Z oh well, that's pretty easy. Thank you! http://stackoverflow.com/questions/671277/eval-formula-in-as3/673451#673451 Comment by okoman on Eval formula in AS3? okoman 2009-03-23T15:58:16Z 2009-03-23T15:58:16Z &quot;You can even write the entire javascript inside as3, so that you do not need to touch the actual html page.&quot; Do you have links / tutorials? http://stackoverflow.com/questions/671277/eval-formula-in-as3/671283#671283 Comment by okoman on Eval formula in AS3? okoman 2009-03-22T16:56:32Z 2009-03-22T16:56:32Z Gonna generate some easy-to-parse formula in another languages and send it to flash... http://stackoverflow.com/questions/671277/eval-formula-in-as3/671283#671283 Comment by okoman on Eval formula in AS3? okoman 2009-03-22T16:54:36Z 2009-03-22T16:54:36Z That's exactly what I want to avoid. ;) Nevertheless seems there is no other solution.