User Armin Ronacher - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T15:17:16Zhttp://stackoverflow.com/feeds/user/19990http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1737710/c-structs-dont-define-types/1737725#17377251Answer by Armin Ronacher for C structs don't define types?Armin Ronacher2009-11-15T14:54:07Z2009-11-16T10:35:39Z<p>Structs are not types. You can create a point from a struct as follows:</p>
<pre><code>struct Point p;
p.x = 0;
p.y = 0;
</code></pre>
<p>If you want to use a struct as a type, you have to typedef it. This works in both C and C++:</p>
<pre><code>typedef struct _point {
int x;
int y;
} Point;
</code></pre>
<p>Always give your struct a name though, if you have to forward declare it to be able to have pointers to a struct of the same type or circular dependencies.</p>
http://stackoverflow.com/questions/1734072/official-end-of-support-for-php4/1734080#17340803Answer by Armin Ronacher for Official end of support for PHP4?Armin Ronacher2009-11-14T12:12:56Z2009-11-14T12:12:56Z<p>PHP4 is already way past the support. I think support ended more than a year ago.</p>
http://stackoverflow.com/questions/1734060/lock-os-x-on-application-start-and-kill-application-on-unlock0Lock OS X on Application Start and kill Application on UnlockArmin Ronacher2009-11-14T12:00:55Z2009-11-14T12:00:55Z
<p>Hi,</p>
<p>I'm trying to lock the system when my application starts up. I went with the obvious, executing <code>CGSession -suspend</code> but that disables the audio system. What I do now is invoking the screen saver and setting the preferences to "require password to unlock".</p>
<p>The problem here however is that I cannot detect when the screensaver unlocks.</p>
<p>This code works mostly, but the screensaver engine shuts down if the user is prompted for the password, killing my program even though it's still active:</p>
<pre><code>int pid = fork();
if (pid == 0) {
system("/System/Library/Frameworks/ScreenSaver.framework/"
"Versions/A/Resources/ScreenSaverEngine.app/"
"Contents/MacOS/ScreenSaverEngine");
kill(pid, SIGKILL);
return 0;
}
</code></pre>
<p>Any ideas?</p>
http://stackoverflow.com/questions/136168/get-last-n-lines-of-a-file-with-python-similar-to-tail7Get last n lines of a file with Python, similar to tailArmin Ronacher2008-09-25T21:11:11Z2009-11-09T23:07:17Z
<p>I'm writing a log file viewer for a web application and for that I want to paginate through the lines of the log file. The items in the file are line based with the newest item on the bottom.</p>
<p>So I need a <code>tail()</code> method that can read <code>n</code> lines from the bottom and supports an offset. What I came up with looks like this:</p>
<pre><code>def tail(f, n, offset=0):
"""Reads a n lines from f with an offset of offset lines."""
avg_line_length = 74
to_read = n + offset
while 1:
try:
f.seek(-(avg_line_length * to_read), 2)
except IOError:
# woops. apparently file is smaller than what we want
# to step back, go to the beginning instead
f.seek(0)
pos = f.tell()
lines = f.read().splitlines()
if len(lines) >= to_read or pos == 0:
return lines[-to_read:offset and -offset or None]
avg_line_length *= 1.3
</code></pre>
<p>Is this a reasonable approach? What is the recommended way to tail log files with offsets?</p>
http://stackoverflow.com/questions/1205722/how-do-i-get-monotonic-time-durations-in-python/1205762#12057625Answer by Armin Ronacher for How do I get monotonic time durations in python?Armin Ronacher2009-07-30T10:33:40Z2009-10-12T17:49:17Z<p>That function is simple enough that you can use ctypes to access it:</p>
<pre><code>import ctypes
CLOCK_MONOTONIC = 1 # not sure about this one, check the headers
class timespec(ctypes.Structure):
_fields_ = [
('tv_sec', ctypes.c_long),
('tv_nsec', ctypes.c_long)
]
librt = ctypes.CDLL('librt.so.1')
clock_gettime = librt.clock_gettime
clock_gettime.argtypes = [ctypes.c_int, ctypes.POINTER(timespec)]
def get_ticks():
t = timespec()
clock_gettime(CLOCK_MONOTONIC, ctypes.pointer(t))
return t.tv_sec + t.tv_nsec / 1e9
</code></pre>
<p>(Untested code, i'm on OS X right now)</p>
http://stackoverflow.com/questions/1445992/vim-file-navigation/1446031#14460310Answer by Armin Ronacher for Vim file navigationArmin Ronacher2009-09-18T18:01:06Z2009-09-18T18:01:06Z<p>My workflow for finding files is the wildmenu, autocwd and <code>:e</code>.</p>
<p>Relevant parts in the <code>.vimrc</code>:</p>
<pre><code>set wildmenu
set wildignore=*.dll,*.o,*.pyc,*.bak,*.exe,*.jpg,*.jpeg,*.png,*.gif
set wildmode=list:full
set autochdir
let g:netrw_list_hide='^\.,.\(pyc\|pyo\|o\)$'
</code></pre>
<p>And how to use it:</p>
<pre><code>:e myf^D
</code></pre>
<p>That gives all the files in the current directory that start with myf. You can also <code><Tab></code> through them. Use return to open :)</p>
<p><code>^D</code> will always give you all the matches. Because autocmd always goes to the folder of the current file it's easy to work with. If you are in <code>foo/bar.py</code> and you want to go to <code>foo/baz.py</code> you only do <code>:e baz.py</code> and you're there. That also works with buffers (<code>:b foo^D</code> lists all buffers starting with foo)</p>
http://stackoverflow.com/questions/1046714/what-is-a-good-random-number-generator-for-a-game/1205808#12058081Answer by Armin Ronacher for What is a good random number generator for a game?Armin Ronacher2009-07-30T10:44:14Z2009-07-30T10:44:14Z<p>Based on the random number generator by Ian C. Bullard:</p>
<pre><code>// utils.hpp
namespace utils {
void srand(unsigned int seed);
void srand();
unsigned int rand();
}
// utils.cpp
#include "utils.hpp"
#include <time.h>
namespace {
static unsigned int s_rand_high = 1;
static unsigned int s_rand_low = 1 ^ 0x49616E42;
}
void utils::srand(unsigned int seed)
{
s_rand_high = seed;
s_rand_low = seed ^ 0x49616E42;
}
void utils::srand()
{
utils::srand(static_cast<unsigned int>(time(0)));
}
unsigned int utils::rand()
{
static const int shift = sizeof(int) / 2;
s_rand_high = (s_rand_high >> shift) + (s_rand_high << shift);
s_rand_high += s_rand_low;
s_rand_low += s_rand_high;
return s_rand_high;
}
</code></pre>
<p>Why?</p>
<ul>
<li>very, very fast</li>
<li>higher entropy than most standard <code>rand()</code> implementations</li>
<li>easy to understand</li>
</ul>
http://stackoverflow.com/questions/678684/how-do-you-read-a-file-line-by-line-in-your-language-of-choice/678943#6789438Answer by Armin Ronacher for How do you read a file line by line in your language of choice?Armin Ronacher2009-03-24T19:40:51Z2009-05-02T21:45:17Z<h1>Python</h1>
<pre><code>with open("me.txt") as f:
for number, line in enumerate(f):
print('%d\t%s' % (number + 1, line.strip()))
</code></pre>
<p>This version has the advantage over the one above that it closes the file descriptor even if an exception occurs. This runs in Python 2.6 and 3.0 with no modifications, and will run in Python 2.5 if you do <code>from __future__ import with_statement</code> first</p>
http://stackoverflow.com/questions/800355/generate-pdf-from-documented-c-code4Generate PDF from Documented C++ CodeArmin Ronacher2009-04-29T00:11:16Z2009-04-30T23:31:24Z
<p>I have a small C++ project (~60 classes) that I need a human readable PDF of. I tried using doxygen but the LaTeX code it generates does not compile because it's too deeply nested for the LaTeX compiler.</p>
<p>Before I start creating a PDF or HTML document myself using the XML sources doxygen generates, I wanted to know if anyone of you knows a tool I could use?</p>
http://stackoverflow.com/questions/800355/generate-pdf-from-documented-c-code/805548#8055481Answer by Armin Ronacher for Generate PDF from Documented C++ CodeArmin Ronacher2009-04-30T06:11:10Z2009-04-30T06:11:10Z<p>I did it the hard way now. I wrote a small script that generates a single HTML page from a doxygen XML output which I then convert into PDF later.</p>
<p>If anyone is interested, the code is available here: <a href="http://dev.pocoo.org/hg/simple-dd" rel="nofollow">http://dev.pocoo.org/hg/simple-dd</a></p>
http://stackoverflow.com/questions/693112/multiple-ie-instances-on-one-machine/693122#6931223Answer by Armin Ronacher for Multiple IE instances on one machine.Armin Ronacher2009-03-28T17:12:14Z2009-03-28T17:12:14Z<p>You can install multiple versions of IE using this installer: <a href="http://finalbuilds.edskes.net/iecollection.htm" rel="nofollow">http://finalbuilds.edskes.net/iecollection.htm</a></p>
http://stackoverflow.com/questions/593906/good-techniques-to-use-makefiles-in-visualstudio/693063#6930631Answer by Armin Ronacher for Good techniques to use Makefiles in VisualStudio?Armin Ronacher2009-03-28T16:37:28Z2009-03-28T16:37:28Z<p>I haven't tried it myself yet, but Microsoft has a Make implementation called NMake which seems to have a Visual Studio integration: </p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/dd9y37ha%28VS.80%29.aspx" rel="nofollow">NMake</a></li>
<li><a href="http://msdn.microsoft.com/en-gb/library/txcwa2xx.aspx" rel="nofollow">Creating NMake Projects</a></li>
</ul>
http://stackoverflow.com/questions/690283/how-to-locate-the-mouse-pointer-in-svg/692624#6926241Answer by Armin Ronacher for How to locate the mouse pointer in SVG?Armin Ronacher2009-03-28T11:17:59Z2009-03-28T11:17:59Z<p>You can hook to the <code>onmousemove</code> event and access the event object:</p>
<pre><code>function on_mouse_move(evt) {
var
x = evt.clientX,
y = evt.clientY;
}
</code></pre>
<p>(This assumes <code>on_mouse_move</code> is connected to the <code>onmousemove</code> event of your SVG document).</p>
http://stackoverflow.com/questions/136168/get-last-n-lines-of-a-file-with-python-similar-to-tail/692616#6926161Answer by Armin Ronacher for Get last n lines of a file with Python, similar to tailArmin Ronacher2009-03-28T11:13:44Z2009-03-28T11:13:44Z<p>The code I ended up using. I think this is the best so far:</p>
<pre><code>def tail(f, n, offset=None):
"""Reads a n lines from f with an offset of offset lines. The return
value is a tuple in the form ``(lines, has_more)`` where `has_more` is
an indicator that is `True` if there are more lines in the file.
"""
avg_line_length = 74
to_read = n + (offset or 0)
while 1:
try:
f.seek(-(avg_line_length * to_read), 2)
except IOError:
# woops. apparently file is smaller than what we want
# to step back, go to the beginning instead
f.seek(0)
pos = f.tell()
lines = f.read().splitlines()
if len(lines) >= to_read or pos == 0:
return lines[-to_read:offset and -offset or None], \
len(lines) > to_read or pos > 0
avg_line_length *= 1.3
</code></pre>
http://stackoverflow.com/questions/677577/distutils-how-to-pass-a-user-defined-parameter-to-setup-py/680473#6804732Answer by Armin Ronacher for distutils: How to pass a user defined parameter to setup.py?Armin Ronacher2009-03-25T06:48:40Z2009-03-25T06:48:40Z<p>You can't really pass custom parameters to the script. However the following things are possible and could solve your problem:</p>
<ul>
<li>optional features can be enabled using <code>--with-featurename</code>, standard features can be disabled using <code>--without-featurename</code>. [AFAIR this requires setuptools]</li>
<li>you can use environment variables, these however require to be <code>set</code> on windows whereas prefixing them works on linux/ OS X (<code>FOO=bar python setup.py</code>).</li>
<li>you can extend distutils with your own <code>cmd_class</code>es which can implement new features. They are also chainable, so you can use that to change variables in your script. (<code>python setup.py foo install</code>) will execute the <code>foo</code> command before it executes <code>install</code>.</li>
</ul>
<p>Hope that helps somehow. Generally speaking I would suggest providing a bit more information what exactly your extra parameter should do, maybe there is a better solution available.</p>
http://stackoverflow.com/questions/674704/how-is-an-openid-client-supposed-look-up-the-openid-delegate3How is an OpenID Client supposed look up the OpenID delegate?Armin Ronacher2009-03-23T18:42:54Z2009-03-24T06:25:37Z
<p>Hello everybody. I just noticed that stackoverflow had problems with my OpenID delegate and I noticed that this was caused by my website not using a <code><html></code> and <code><head></code> section.</p>
<p>Now even though this is valid HTML the question is if it's valid for OpenID delegate lookups. The official stuff I was able to find on the website just talks about “the head section” of the HTML document, which however by HTML4/5 standards is implicit.</p>
<p>I'm now interested if the bug is in the way I declared the delegate or the stackoverflow OpenID implementation.</p>
<p>The not working version:</p>
<pre><code><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<title>Index &raquo; Armin Ronacher</title>
<link rel="openid.server" href="http://www.myopenid.com/server">
<link rel="openid.delegate" href="http://mitsuhiko.myopenid.com/">
<meta content="Zine" name="generator">
<!-- more link/meta stuff here -->
<!-- page contents here -->
<div class="header">
</code></pre>
<p>The working version:</p>
<pre><code><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>Index &raquo; Armin Ronacher</title>
<link rel="openid.server" href="http://www.myopenid.com/server">
<link rel="openid.delegate" href="http://mitsuhiko.myopenid.com/">
<meta content="Zine" name="generator">
<!-- more link/meta stuff here -->
</head>
<!-- page contents here -->
<div class="header">
<!-- at the very end of the page -->
</html>
</code></pre>
http://stackoverflow.com/questions/675676/access-a-static-variable-by-varreference/675688#6756884Answer by Armin Ronacher for Access a static variable by $var::$referenceArmin Ronacher2009-03-24T00:04:32Z2009-03-24T00:04:32Z<p>For calling static members you can use a code like this:</p>
<pre><code>call_user_func("MyClass::my_static_method");
// or
call_user_func(array("MyClass", "my_static_method"));
</code></pre>
<p>Unfortunately the only way to get static members from an object seems to be <a href="http://at2.php.net/manual/de/function.get-class-vars.php" rel="nofollow">get_class_vars</a>:</p>
<pre><code>$vars = get_class_vars("MyClass");
$vars['my_static_attribute'];
</code></pre>
http://stackoverflow.com/questions/675612/using-get-vs-property-vs-method/675624#6756245Answer by Armin Ronacher for using get vs property vs methodArmin Ronacher2009-03-23T23:31:19Z2009-03-23T23:31:19Z<p>I personally prefer properties for things without side effects and explicit getter if something is calculate on the fly. Eg:</p>
<pre><code>class User {
private string username;
public string Username {
get { return username; }
set { username = value; }
}
public Post GetLatestPost() {
// query the database or whatever you do here.
}
}
</code></pre>
<p>And a lot of the APIs I've seen seem to do it similar. Hope that helps.</p>
http://stackoverflow.com/questions/674879/who-disposes-of-an-idisposable-public-property/674885#6748854Answer by Armin Ronacher for Who Disposes of an IDisposable public property?Armin Ronacher2009-03-23T19:27:48Z2009-03-23T19:27:48Z<p>If you have an disposable object on your class you implement <code>IDisposable</code> with a <code>Dispose</code> method that disposes wrapped disposables. Now the calling code has to ensure that <code>using()</code> is used or that an equivalent <code>try</code> / <code>finally</code> code that disposes the object.</p>
http://stackoverflow.com/questions/668591/why-is-beautiful-soup-truncating-this-page/674849#6748491Answer by Armin Ronacher for Why is Beautiful Soup truncating this page?Armin Ronacher2009-03-23T19:19:48Z2009-03-23T19:19:48Z<p>I strongly recommend using html5lib + lxml instead of beautiful soup. It uses a real HTML parser (very similar to the one in Firefox) and lxml provides a very flexible way to query the resulting tree (css-selectors or xpath).</p>
<p>There are tons of bugs or strange behavior in BeautifulSoup which makes it not the best solution for a lot of HTML markup you can't trust.</p>
http://stackoverflow.com/questions/674739/benchmarking-php-vs-pylons/674832#6748323Answer by Armin Ronacher for benchmarking PHP vs PylonsArmin Ronacher2009-03-23T19:15:57Z2009-03-23T19:15:57Z<p>If you're not using an ORM in PHP you should not use the SQLAlchemy ORM or SQL-Expression language either but use raw SQL commands. If you're using APC you should make sure that Python has write privileges to the folder your application is in, or that the .py files are precompiled.</p>
<p>Also if you're using the smarty cache consider enabling the Mako cache as well for fairness sake.</p>
<p>However there is a catch: the Python MySQL adapter is incredible bad. For the database connections you will probably notice either slow performance (if SQLAlchemy performs the unicode decoding for itself) or it leaks memory (if the MySQL adapter does that).</p>
<p>Both issues you don't have with PHP because there is no unicode support. So for total fairness you would have to disable unicode in the database connection (which however is an incredible bad idea).</p>
<p>So: there doesn't seem to be a fair way to compare PHP and Pylons :)</p>
http://stackoverflow.com/questions/674413/ignoring-eof-on-stdcin-in-c1Ignoring EOF on std::cin in C++Armin Ronacher2009-03-23T17:32:43Z2009-03-23T17:59:18Z
<p>I have an application that implements an interactive shell, similar to how the Python console / irb works. The problem now is that if the user accidentally hits <code>^D</code> EOF is issued and my <code>getline()</code> call returns an empty string which i treat as "no input" and display the prompt again.</p>
<p>This then results in an endless loop that prints the prompt.</p>
<p>Now in Python I would solve that problem by catching <code>EOFError</code>, but in C++ no exception is raised I could catch and there doesn't seem to be a setting on <code>cin</code> to ignore EOF.</p>
<p>Any hints?</p>
http://stackoverflow.com/questions/674413/ignoring-eof-on-stdcin-in-c/674491#6744911Answer by Armin Ronacher for Ignoring EOF on std::cin in C++Armin Ronacher2009-03-23T17:51:19Z2009-03-23T17:51:19Z<p>Correct solution thanks to litb:</p>
<pre><code>if (!getline(std::cin, str)) {
std::cin.clear();
std::cout << std::endl;
}
</code></pre>
http://stackoverflow.com/questions/61401/hidden-features-of-php/114001#11400121Answer by Armin Ronacher for Hidden Features of PHP?Armin Ronacher2008-09-22T09:39:15Z2008-11-16T16:07:36Z<p>One not so well known feature of PHP is <code>extract()</code>, a function that unpacks an associative array into the local namespace. This probably exists for the autoglobal abormination but is very useful for templating:</p>
<pre><code>function render_template($template_name, $context, $as_string=false)
{
extract($context);
if ($as_string)
ob_start();
include TEMPLATE_DIR . '/' . $template_name;
if ($as_string)
return ob_get_clean();
}
</code></pre>
<p>Now you can use <code>render_template('index.html', array('foo' => 'bar'))</code> and only <code>$foo</code> with the value <code>"bar"</code> appears in the template.</p>
http://stackoverflow.com/questions/128342/display-div-at-cursor-position-in-textarea7Display DIV at Cursor Position in TextareaArmin Ronacher2008-09-24T16:55:29Z2008-10-03T16:30:58Z
<p>For a project of mine I would love to provide auto completion for a specific textarea. Similar to how intellisense/omnicomplete works. For that however I have to find out the absolute cursor position so that I know where the DIV should appear.</p>
<p>Turns out: that's (nearly I hope) impossible to achieve. Does anyone has some neat ideas how to solve that problem?</p>
http://stackoverflow.com/questions/159541/nginx-fastcgi-truncation-problem/159819#1598192Answer by Armin Ronacher for Nginx + fastcgi truncation problemArmin Ronacher2008-10-01T21:21:52Z2008-10-01T21:21:52Z<p>What fastcgi interface are you using and how. Is it flup? If yes, paste the way you spawn the server and how it's hooked into nginx. Without that information it's just guessing what could go wrong.</p>
<p>Possible problems:</p>
<ul>
<li>nginx is buggy. At least lighttpd has horrible fastcgi bugs, I wouldn't wonder if nginx has some too :)</li>
<li>Django is dying with a traceback in an internal system that is not properly catched and closes the fastcgi server which you can't see from the client. In that situation wrap the fastcgi server application call and try/except it to print the exception.</li>
</ul>
<p>But server log and config would be great.</p>
http://stackoverflow.com/questions/76809/anyone-out-there-using-web2py/159804#1598044Answer by Armin Ronacher for Anyone out there using web2py?Armin Ronacher2008-10-01T21:18:40Z2008-10-01T21:18:40Z<p>I am not using web2py. But I had a look at the source code and it's horrible for so many reasons. For one the database definitions as well as the views and models and I don't know what, are evaluated against a global dictionary of values. It feels like PHP in that regard (it's bypassing Python semantics in name behaviour) and is very inefficient and I could imagine that it's hard to maintain.</p>
<p>I have no idea where all that fuzz about web2py is coming from lately, but I really can't see a reason why anyone would want to use it.</p>
<p>What's wrong with Django or Pylons? What does web2py do that you can't do with Django in a few lines of code with a better performance, code that's easier to read and on an established platform where tons of developers will jump in and fix problems in no time if they appear. (Well, there are exceptions I must admit, but in general the developers fix problems quickly)</p>
http://stackoverflow.com/questions/69546/how-do-i-get-javascript-created-with-document-write-to-execute/159789#1597890Answer by Armin Ronacher for How do I get JavaScript created with document.write() to execute?Armin Ronacher2008-10-01T21:14:58Z2008-10-01T21:14:58Z<p>In short: You can't really do that. However JavaScript libraries such as jQuery provide functionality to do exactly that. If you depend on that, give jQuery a try.</p>
http://stackoverflow.com/questions/159137/getting-mac-address/159195#1591958Answer by Armin Ronacher for Getting MAC AddressArmin Ronacher2008-10-01T19:06:30Z2008-10-01T19:06:30Z<p>Python 2.5 includes an uuid implementation which (in at least one version) needs the mac address. You can import the mac finding function into your own code easily:</p>
<pre><code>from uuid import getnode as get_mac
mac = get_mac()
</code></pre>
<p>The return value is the mac address as 48 bit integer.</p>
http://stackoverflow.com/questions/156853/what-is-the-best-snmp-implementation-for-python/159174#1591740Answer by Armin Ronacher for What is the best SNMP implementation for Python?Armin Ronacher2008-10-01T19:03:27Z2008-10-01T19:03:27Z<p>The most active project of "Security not my Problem" seems to be <a href="http://pypi.python.org/pypi/pycopia-SNMP" rel="nofollow">pycopia SNMP</a>. I have no experience with any of them, but if you have troubles finding the correct one have a look at the mailinglist archives of the libraries to find the most active one. Those usually have the better API/implementation or at least more users.</p>
http://stackoverflow.com/questions/1445992/vim-file-navigation/1446031#1446031Comment by Armin Ronacher on Vim file navigationArmin Ronacher2009-09-18T18:29:06Z2009-09-18T18:29:06ZIt does not recurse into subfolders, no. But I adapted my workflow to that. Also once the file i open, i can just mention the name of the buffer and am fine. You can tell Vim to remember the open buffers, then you usually don't need that feature at all.http://stackoverflow.com/questions/9033/hidden-features-of-c/9036#9036Comment by Armin Ronacher on Hidden Features of C#?Armin Ronacher2009-08-16T09:00:11Z2009-08-16T09:00:11Z"??" is very handy.http://stackoverflow.com/questions/1205722/how-do-i-get-monotonic-time-durations-in-python/1205762#1205762Comment by Armin Ronacher on How do I get monotonic time durations in python?Armin Ronacher2009-07-31T13:37:19Z2009-07-31T13:37:19Z@Thomas: fixed that, removed the self
@Kiv: byref should work, can't test that right now, but it should do the trick. I don't remember when byref() does not work, so i went the safe path here.http://stackoverflow.com/questions/693112/multiple-ie-instances-on-one-machine/693127#693127Comment by Armin Ronacher on Multiple IE instances on one machine.Armin Ronacher2009-03-28T17:44:48Z2009-03-28T17:44:48ZAfair that one does not work on Vista.http://stackoverflow.com/questions/678684/how-do-you-read-a-file-line-by-line-in-your-language-of-choice/678943#678943Comment by Armin Ronacher on How do you read a file line by line in your language of choice?Armin Ronacher2009-03-25T15:22:25Z2009-03-25T15:22:25ZAdded line number s:) @SilentGhost: print x, adds a soft space after the line.http://stackoverflow.com/questions/678684/how-do-you-read-a-file-line-by-line-in-your-language-of-choice/678943#678943Comment by Armin Ronacher on How do you read a file line by line in your language of choice?Armin Ronacher2009-03-25T00:23:33Z2009-03-25T00:23:33Zprint adds a newline to the end which is already in "line". Now either I could line.rstrip() whitespace or I just call sys.stdout.write :)http://stackoverflow.com/questions/674704/how-is-an-openid-client-supposed-look-up-the-openid-delegate/676263#676263Comment by Armin Ronacher on How is an OpenID Client supposed look up the OpenID delegate?Armin Ronacher2009-03-24T19:09:00Z2009-03-24T19:09:00ZAs I said. The HTML spec does not require it. You can check it yourself with a validator. The head section is implicit. It basically means that a <link> / <meta> tag can only appear inside <head> and thus it's considered part of a <head> tag even if not mentioned.http://stackoverflow.com/questions/675161/is-it-possible-to-implement-properties-in-languages-other-than-c/675198#675198Comment by Armin Ronacher on Is it possible to implement properties in languages other than C#?Armin Ronacher2009-03-23T23:34:13Z2009-03-23T23:34:13ZNot as neat and tidy, bug you can add some more sugar yourself. Also it's a tiny bit more flexible because you have access to the underlaying descriptor protocol that implements it which allows some neat tricks.http://stackoverflow.com/questions/674739/benchmarking-php-vs-pylons/674832#674832Comment by Armin Ronacher on benchmarking PHP vs PylonsArmin Ronacher2009-03-23T23:24:52Z2009-03-23T23:24:52ZI briefly blogged about it and there are some comments on the page acknowledging the problems and one of the sun guys proposing a solution: <a href="http://lucumr.pocoo.org/2009/1/8/the-sad-state-of-mysql-python" rel="nofollow">lucumr.pocoo.org/2009/1/…</a>http://stackoverflow.com/questions/674704/how-is-an-openid-client-supposed-look-up-the-openid-delegate/674967#674967Comment by Armin Ronacher on How is an OpenID Client supposed look up the OpenID delegate?Armin Ronacher2009-03-23T23:23:22Z2009-03-23T23:23:22ZThe reference i found: <a href="http://openid.net/specs/openid-authentication-1_1.html#anchor4" rel="nofollow">openid.net/specs/…</a>http://stackoverflow.com/questions/674879/who-disposes-of-an-idisposable-public-property/674885#674885Comment by Armin Ronacher on Who Disposes of an IDisposable public property?Armin Ronacher2009-03-23T19:28:57Z2009-03-23T19:28:57ZWith a clean setup there are no references to the inner disposable code that could depend on that object still exist after the wrapper was disposed. If you depend on that behavior, consider using reference counts.http://stackoverflow.com/questions/674704/how-is-an-openid-client-supposed-look-up-the-openid-delegateComment by Armin Ronacher on How is an OpenID Client supposed look up the OpenID delegate?Armin Ronacher2009-03-23T18:53:08Z2009-03-23T18:53:08ZSeems like the same behavior exists with python-openid.http://stackoverflow.com/questions/674413/ignoring-eof-on-stdcin-in-c/674491#674491Comment by Armin Ronacher on Ignoring EOF on std::cin in C++Armin Ronacher2009-03-23T18:17:56Z2009-03-23T18:17:56ZGot back my account. Seems like stackoverflows OpenID delegate support is a bit buggyhttp://stackoverflow.com/questions/674413/ignoring-eof-on-stdcin-in-c/674491#674491Comment by Armin Ronacher on Ignoring EOF on std::cin in C++Armin Ronacher2009-03-23T17:55:52Z2009-03-23T17:55:52ZCan't do that yet. For reasons unknown to my I just got a new account although I logged in with my existing one :-/http://stackoverflow.com/questions/674413/ignoring-eof-on-stdcin-in-c/674427#674427Comment by Armin Ronacher on Ignoring EOF on std::cin in C++Armin Ronacher2009-03-23T17:48:52Z2009-03-23T17:48:52Zthat did the trick. thanks