Comments for Ikke's blog http://eikke.com 'cause this is what I do Tue, 04 Dec 2012 00:03:23 +0000 hourly 1 http://wordpress.org/?v=3.4.1 Comment on Pyparsing introduction: BNF to code by Wayne http://eikke.com/pyparsing-introduction-bnf-to-code/comment-page-1/#comment-88650 Wayne Tue, 04 Dec 2012 00:03:23 +0000 http://eikke.com/pyparsing-introduction-bnf-to-code/#comment-88650 Good introduction to pyparsing. Thanks Nicolas! Good introduction to pyparsing. Thanks Nicolas!

]]>
Comment on Articles by autóbérléS újraegyesítés http://eikke.com/articles/comment-page-1/#comment-85961 autóbérléS újraegyesítés Thu, 18 Oct 2012 14:38:38 +0000 http://eikke.com/articles/#comment-85961 What i do not understood is actually how you are no longer really a lot more neatly-favored than you might be right now. You're so intelligent. You already know therefore significantly when it comes to this subject, produced me personally believe it from so many varied angles. Its like men and women are not fascinated unless it's something to accomplish with Woman gaga! Your own stuffs great. Always take care of it up! What i do not understood is actually how you are no longer really a lot more neatly-favored than you might
be right now. You’re so intelligent. You already know therefore significantly when it comes to this subject, produced me personally believe it from so many varied angles. Its like men and women are not fascinated unless it’s something to accomplish with Woman gaga!
Your own stuffs great. Always take care of it up!

]]>
Comment on django-validation: an introduction by django python | Rahul's Work http://eikke.com/django-validation-an-introduction/comment-page-1/#comment-85252 django python | Rahul's Work Fri, 05 Oct 2012 06:18:48 +0000 http://eikke.com/django-validation-an-introduction/#comment-85252 [...] http://eikke.com/django-validation-an-introduction/ [...] [...] http://eikke.com/django-validation-an-introduction/ [...]

]]>
Comment on KDE4 reviewed by Bertie http://eikke.com/kde4-reviewed/comment-page-1/#comment-83038 Bertie Tue, 21 Aug 2012 04:32:38 +0000 http://eikke.com/kde4-reviewed/#comment-83038 Everyone would beineft from reading this post Everyone would beineft from reading this post

]]>
Comment on Importing a Git tree into a Subversion repository by Xeross http://eikke.com/importing-a-git-tree-into-a-subversion-repository/comment-page-1/#comment-80647 Xeross Fri, 13 Jul 2012 09:36:20 +0000 http://eikke.com/?p=125#comment-80647 Couldn't figure out how to do this on my own, thanks for the pointers. Still one would think it should be easier than this :/ Couldn’t figure out how to do this on my own, thanks for the pointers. Still one would think it should be easier than this :/

]]>
Comment on Erlang, Python and Twisted mashup using TwOTP by Steve http://eikke.com/erlang-python-and-twisted-mashup-using-twotp/comment-page-1/#comment-76677 Steve Sat, 19 May 2012 23:33:01 +0000 http://eikke.com/?p=90#comment-76677 Also, if you've downloaded release 0.7, you'll probably need to apply the fix suggested here: https://bugs.launchpad.net/twotp/+bug/767842 Also, if you’ve downloaded release 0.7, you’ll probably need to apply the fix suggested here:

https://bugs.launchpad.net/twotp/+bug/767842

]]>
Comment on Erlang, Python and Twisted mashup using TwOTP by Steve http://eikke.com/erlang-python-and-twisted-mashup-using-twotp/comment-page-1/#comment-76676 Steve Sat, 19 May 2012 23:31:04 +0000 http://eikke.com/?p=90#comment-76676 Note for current readers: Since this blog entry was published, twotp introduced backwards incompatible changes. These changes invalidate this blog entry. Download the latest twotp release and look in the doc folder for a few samples to get you going. Note for current readers: Since this blog entry was published, twotp introduced backwards incompatible changes. These changes invalidate this blog entry. Download the latest twotp release and look in the doc folder for a few samples to get you going.

]]>
Comment on How not to write Python code by Trevor http://eikke.com/how-not-to-write-python-code/comment-page-1/#comment-73812 Trevor Thu, 19 Apr 2012 14:42:53 +0000 http://eikke.com/how-not-to-write-python-code/#comment-73812 Regarding the switch statement discussion going on, Ale is correct, his points are all logically sound. The question comes down to this: is the concept of the switch statement a good one? The reason I say this is because you can apply his points to any programming construct, so if you believe the concept of switch is good (regardless of how poorly other languages implement it) then it should be added. Anyone who says otherwise is bias based on their emotions for some strange reason. Regarding the switch statement discussion going on, Ale is correct, his points are all logically sound. The question comes down to this: is the concept of the switch statement a good one?

The reason I say this is because you can apply his points to any programming construct, so if you believe the concept of switch is good (regardless of how poorly other languages implement it) then it should be added.

Anyone who says otherwise is bias based on their emotions for some strange reason.

]]>
Comment on Django domain redirect middleware by Nicolas http://eikke.com/django-domain-redirect-middleware/comment-page-1/#comment-72281 Nicolas Wed, 28 Mar 2012 11:26:41 +0000 http://eikke.com/2007/12/26/django-domain-redirect-middleware/#comment-72281 oh and say host = request.get_host().split(':')[0] above there oh and say host = request.get_host().split(‘:’)[0] above there

]]>
Comment on Django domain redirect middleware by Nicolas http://eikke.com/django-domain-redirect-middleware/comment-page-1/#comment-72279 Nicolas Wed, 28 Mar 2012 09:59:15 +0000 http://eikke.com/2007/12/26/django-domain-redirect-middleware/#comment-72279 Thanks a lot! If you're running Django on a non-default port, you might want to add the port number to the newly constructed URI: new_uri = '%s://%s%s%s%s' % ( request.is_secure() and 'https' or 'http', site.domain, (":" + request.META["SERVER_PORT"]) if request.META["SERVER_PORT"]!=80 else "", urlquote(request.path), (request.method == 'GET' and len(request.GET) > 0) and '?%s' % request.GET.urlencode() or '' ) Thanks a lot!
If you’re running Django on a non-default port, you might want to add the port number to the newly constructed URI:

new_uri = ‘%s://%s%s%s%s’ % (
request.is_secure() and ‘https’ or ‘http’,
site.domain,
(“:” + request.META["SERVER_PORT"]) if request.META["SERVER_PORT"]!=80 else “”,
urlquote(request.path),
(request.method == ‘GET’ and len(request.GET) > 0) and ‘?%s’ % request.GET.urlencode() or ”
)

]]>