<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for 0x4142</title>
	<atom:link href="http://thomasfischer.biz/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://thomasfischer.biz</link>
	<description>Just Another Blog About Bits And Bytes</description>
	<lastBuildDate>Mon, 05 Apr 2010 18:06:53 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>Comment on x-sendfile patch for SMF 2 by thomas</title>
		<link>http://thomasfischer.biz/?p=364&#038;cpage=1#comment-12064</link>
		<dc:creator>thomas</dc:creator>
		<pubDate>Mon, 05 Apr 2010 18:06:53 +0000</pubDate>
		<guid isPermaLink="false">http://thomasfischer.biz/?p=364#comment-12064</guid>
		<description>little correction:
[cc lang=&#039;php&#039;]
        // XXX: lighttpd x sendfile optimization
        header(&#039;Content-Length: &#039; . filesize($filename));
        header(&quot;x-sendfile: $filename&quot;);
        die(0);
[/cc]</description>
		<content:encoded><![CDATA[<p>little correction:</p>
<div class="codecolorer-container php default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br /></div></td><td><div class="php codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #666666; font-style: italic;">// XXX: lighttpd x sendfile optimization</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.php.net/header"><span style="color: #990000;">header</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Content-Length: '</span> <span style="color: #339933;">.</span> <a href="http://www.php.net/filesize"><span style="color: #990000;">filesize</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$filename</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.php.net/header"><span style="color: #990000;">header</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;x-sendfile: <span style="color: #006699; font-weight: bold;">$filename</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.php.net/die"><span style="color: #990000;">die</span></a><span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></div></td></tr></tbody></table></div>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ORM for c++: some tests by thomas</title>
		<link>http://thomasfischer.biz/?p=361&#038;cpage=1#comment-12062</link>
		<dc:creator>thomas</dc:creator>
		<pubDate>Fri, 02 Apr 2010 09:01:31 +0000</pubDate>
		<guid isPermaLink="false">http://thomasfischer.biz/?p=361#comment-12062</guid>
		<description>some user commented on goolge code that this should be working:

try this:
[cc code=&quot;c++&quot;]
//add
template&lt;class C&gt; inline
sql_nvp&lt;C&gt; make_nvp(const char * _name, C &amp; _value){
	return sql_nvp&lt;C&gt;(_name, _value);
}

//modify
//#define HIBERLITE_NVP(Field) hiberlite::sql_nvp&lt; typeof(Field) &gt;(#Field,Field)
#define HIBERLITE_NVP(Field)\
	hiberlite::make_nvp(#Field, Field)
[/cc]

thanks to ddl5200! :)</description>
		<content:encoded><![CDATA[<p>some user commented on goolge code that this should be working:</p>
<p>try this:</p>
<div class="codecolorer-container text default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">//add<br />
template&lt;class C&gt; inline<br />
sql_nvp&lt;C&gt; make_nvp(const char * _name, C &amp; _value){<br />
&nbsp; &nbsp; return sql_nvp&lt;C&gt;(_name, _value);<br />
}<br />
<br />
//modify<br />
//#define HIBERLITE_NVP(Field) hiberlite::sql_nvp&lt; typeof(Field) &gt;(#Field,Field)<br />
#define HIBERLITE_NVP(Field)\<br />
&nbsp; &nbsp; hiberlite::make_nvp(#Field, Field)</div></td></tr></tbody></table></div>
<p>thanks to ddl5200! <img src='http://thomasfischer.biz/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on OIS &#8211; Object Oriented Input System &#8211; 1_2 branch with cmake by thomas</title>
		<link>http://thomasfischer.biz/?p=351&#038;cpage=1#comment-12051</link>
		<dc:creator>thomas</dc:creator>
		<pubDate>Sat, 13 Mar 2010 15:04:24 +0000</pubDate>
		<guid isPermaLink="false">http://thomasfischer.biz/?p=351#comment-12051</guid>
		<description>added linux demos:
&lt;pre&gt;
cmake_minimum_required(VERSION 2.4)

project(OIS)

FILE(GLOB sources  src/*.cpp)
FILE(GLOB_RECURSE sources_win    src/win32/*.cpp)
FILE(GLOB_RECURSE sources_linux  src/linux/*.cpp)
FILE(GLOB_RECURSE sources_mac    src/mac/*.cpp)

# general flags
add_definitions(&quot;-D_LIB -D_CRT_SECURE_NO_WARNINGS&quot;)
include_directories (includes)

# platform
IF(WIN32)
        add_library(ois STATIC ${sources} ${sources_win})
        target_link_libraries(ois dxguid.lib dinput8.lib)

        add_executable(ffconsole demos/FFConsoleDemo.cpp demos/FFConsoleDemoResource.rc)
        target_link_libraries(ffconsole ois)

        add_executable(console demos/OISConsole.cpp demos/OISConsoleResource.rc)
        target_link_libraries(console ois)
ELSEIF(UNIX)
        add_library(ois STATIC ${sources} ${sources_linux})
        add_executable(ffconsole demos/FFConsoleDemo.cpp)
        target_link_libraries(ffconsole ois X11)
        add_executable(console demos/OISConsole.cpp)
        target_link_libraries(console ois X11)
ELSEIF(APPLE)
        add_library(ois STATIC ${sources} ${sources_mac})
        add_executable(console demos/OISConsole.cpp)
        target_link_libraries(ffconsole ois)
        add_executable(ffconsole demos/FFConsoleDemo.cpp)
        target_link_libraries(console ois)
ENDIF(WIN32)

&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>added linux demos:</p>
<pre>
cmake_minimum_required(VERSION 2.4)

project(OIS)

FILE(GLOB sources  src/*.cpp)
FILE(GLOB_RECURSE sources_win    src/win32/*.cpp)
FILE(GLOB_RECURSE sources_linux  src/linux/*.cpp)
FILE(GLOB_RECURSE sources_mac    src/mac/*.cpp)

# general flags
add_definitions("-D_LIB -D_CRT_SECURE_NO_WARNINGS")
include_directories (includes)

# platform
IF(WIN32)
        add_library(ois STATIC ${sources} ${sources_win})
        target_link_libraries(ois dxguid.lib dinput8.lib)

        add_executable(ffconsole demos/FFConsoleDemo.cpp demos/FFConsoleDemoResource.rc)
        target_link_libraries(ffconsole ois)

        add_executable(console demos/OISConsole.cpp demos/OISConsoleResource.rc)
        target_link_libraries(console ois)
ELSEIF(UNIX)
        add_library(ois STATIC ${sources} ${sources_linux})
        add_executable(ffconsole demos/FFConsoleDemo.cpp)
        target_link_libraries(ffconsole ois X11)
        add_executable(console demos/OISConsole.cpp)
        target_link_libraries(console ois X11)
ELSEIF(APPLE)
        add_library(ois STATIC ${sources} ${sources_mac})
        add_executable(console demos/OISConsole.cpp)
        target_link_libraries(ffconsole ois)
        add_executable(ffconsole demos/FFConsoleDemo.cpp)
        target_link_libraries(console ois)
ENDIF(WIN32)
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on &#8216;strict&#8217; typing of function arguments in python by Jeremy</title>
		<link>http://thomasfischer.biz/?p=199&#038;cpage=1#comment-12030</link>
		<dc:creator>Jeremy</dc:creator>
		<pubDate>Sun, 14 Feb 2010 03:18:40 +0000</pubDate>
		<guid isPermaLink="false">http://thomasfischer.biz/?p=199#comment-12030</guid>
		<description>Not a big deal, but you has define int twice on line 10.

Thanks a heaps for this though.</description>
		<content:encoded><![CDATA[<p>Not a big deal, but you has define int twice on line 10.</p>
<p>Thanks a heaps for this though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on write your own wireshark protocol dissector by yusali</title>
		<link>http://thomasfischer.biz/?p=175&#038;cpage=1#comment-12000</link>
		<dc:creator>yusali</dc:creator>
		<pubDate>Tue, 09 Feb 2010 06:35:20 +0000</pubDate>
		<guid isPermaLink="false">http://thomasfischer.biz/index.php/2008/01/04/write-your-own-wireshark-protocol-dissector/#comment-12000</guid>
		<description>hi there. im a beginner in wireshark and im trying to create my own dissector. but i dont quite understand your codes. may i know what is &#039;cmd&#039;?

pls help me as im working on my school project. any help will be appreciated.

tanx.</description>
		<content:encoded><![CDATA[<p>hi there. im a beginner in wireshark and im trying to create my own dissector. but i dont quite understand your codes. may i know what is &#8216;cmd&#8217;?</p>
<p>pls help me as im working on my school project. any help will be appreciated.</p>
<p>tanx.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About / Contact by thomas</title>
		<link>http://thomasfischer.biz/?page_id=2&#038;cpage=1#comment-11829</link>
		<dc:creator>thomas</dc:creator>
		<pubDate>Fri, 22 Jan 2010 04:46:39 +0000</pubDate>
		<guid isPermaLink="false">#comment-11829</guid>
		<description>&lt;blockquote cite=&quot;#commentbody-11827&quot;&gt;
&lt;strong&gt;&lt;a href=&quot;#comment-11827&quot; rel=&quot;nofollow&quot;&gt;Shobhit Gupta&lt;/a&gt; :&lt;/strong&gt;
&lt;p&gt;This is a great online tool. Thanks.&lt;br&gt;
It would be great if we can do some little bits of configuration. Then I would truly be able to use this, and sing about it everywhere!&lt;/p&gt;
&lt;p&gt;For example:&lt;br&gt;
TabSize=4&lt;br&gt;
ReplaceTabBySpaces=TRUE&lt;br&gt;
BlockBracesStartOnSameLine=FALSE&lt;br&gt;
RemoveMultipleBlankLines=TRUE&lt;br&gt;
FormatComments=FALSE&lt;/p&gt;
&lt;p&gt;etc…&lt;/p&gt;
&lt;p&gt;And once we have configuration, it would be great if we can copy paste our configs in another text box. (No need to save even configs !)  That would be truly amazing stuff!&lt;/p&gt;
&lt;/blockquote&gt;
hm, i can try to add this :)</description>
		<content:encoded><![CDATA[<blockquote cite="#commentbody-11827"><p>
<strong><a href="#comment-11827" rel="nofollow">Shobhit Gupta</a> :</strong></p>
<p>This is a great online tool. Thanks.<br />
It would be great if we can do some little bits of configuration. Then I would truly be able to use this, and sing about it everywhere!</p>
<p>For example:<br />
TabSize=4<br />
ReplaceTabBySpaces=TRUE<br />
BlockBracesStartOnSameLine=FALSE<br />
RemoveMultipleBlankLines=TRUE<br />
FormatComments=FALSE</p>
<p>etc…</p>
<p>And once we have configuration, it would be great if we can copy paste our configs in another text box. (No need to save even configs !)  That would be truly amazing stuff!</p>
</blockquote>
<p>hm, i can try to add this <img src='http://thomasfischer.biz/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About / Contact by Shobhit Gupta</title>
		<link>http://thomasfischer.biz/?page_id=2&#038;cpage=1#comment-11827</link>
		<dc:creator>Shobhit Gupta</dc:creator>
		<pubDate>Thu, 21 Jan 2010 17:03:13 +0000</pubDate>
		<guid isPermaLink="false">#comment-11827</guid>
		<description>This is a great online tool. Thanks.
It would be great if we can do some little bits of configuration. Then I would truly be able to use this, and sing about it everywhere!

For example:
TabSize=4
ReplaceTabBySpaces=TRUE
BlockBracesStartOnSameLine=FALSE
RemoveMultipleBlankLines=TRUE
FormatComments=FALSE

etc...


And once we have configuration, it would be great if we can copy paste our configs in another text box. (No need to save even configs !)  That would be truly amazing stuff!</description>
		<content:encoded><![CDATA[<p>This is a great online tool. Thanks.<br />
It would be great if we can do some little bits of configuration. Then I would truly be able to use this, and sing about it everywhere!</p>
<p>For example:<br />
TabSize=4<br />
ReplaceTabBySpaces=TRUE<br />
BlockBracesStartOnSameLine=FALSE<br />
RemoveMultipleBlankLines=TRUE<br />
FormatComments=FALSE</p>
<p>etc&#8230;</p>
<p>And once we have configuration, it would be great if we can copy paste our configs in another text box. (No need to save even configs !)  That would be truly amazing stuff!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on indentcode.net by thomas</title>
		<link>http://thomasfischer.biz/?p=180&#038;cpage=1#comment-11754</link>
		<dc:creator>thomas</dc:creator>
		<pubDate>Tue, 12 Jan 2010 09:37:19 +0000</pubDate>
		<guid isPermaLink="false">http://thomasfischer.biz/?p=180#comment-11754</guid>
		<description>just have a look at the indent program (the website is also using it):
http://linux.die.net/man/1/indent
download sources: http://www.icewalkers.com/Linux/Software/54720/GNU-indent.html</description>
		<content:encoded><![CDATA[<p>just have a look at the indent program (the website is also using it):<br />
<a href="http://linux.die.net/man/1/indent" rel="nofollow">http://linux.die.net/man/1/indent</a><br />
download sources: <a href="http://www.icewalkers.com/Linux/Software/54720/GNU-indent.html" rel="nofollow">http://www.icewalkers.com/Linux/Software/54720/GNU-indent.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on indentcode.net by angeL</title>
		<link>http://thomasfischer.biz/?p=180&#038;cpage=1#comment-11752</link>
		<dc:creator>angeL</dc:creator>
		<pubDate>Fri, 08 Jan 2010 18:08:04 +0000</pubDate>
		<guid isPermaLink="false">http://thomasfischer.biz/?p=180#comment-11752</guid>
		<description>hi, would you give me a piece of advise ?
i have to do a program that indents source files in c++</description>
		<content:encoded><![CDATA[<p>hi, would you give me a piece of advise ?<br />
i have to do a program that indents source files in c++</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About / Contact by ahmet said ak</title>
		<link>http://thomasfischer.biz/?page_id=2&#038;cpage=1#comment-11736</link>
		<dc:creator>ahmet said ak</dc:creator>
		<pubDate>Sun, 13 Dec 2009 10:12:44 +0000</pubDate>
		<guid isPermaLink="false">#comment-11736</guid>
		<description>Thanks a lot for this website.
Helped so much.</description>
		<content:encoded><![CDATA[<p>Thanks a lot for this website.<br />
Helped so much.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
