<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3907281912105734594</id><updated>2012-02-16T10:24:36.975-08:00</updated><category term='linux'/><category term='outlook'/><category term='msg'/><category term='tip'/><title type='text'>Pure Virtual</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://blog.purevirtual.net/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3907281912105734594/posts/default'/><link rel='alternate' type='text/html' href='http://blog.purevirtual.net/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>litestep</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3907281912105734594.post-1098367795204728890</id><published>2012-02-09T03:17:00.000-08:00</published><updated>2012-02-09T03:17:19.099-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='outlook'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='tip'/><category scheme='http://www.blogger.com/atom/ns#' term='msg'/><title type='text'>Reading outlook .msg files under Linux</title><content type='html'>Got an in format unreadable for your mail reader?&lt;br /&gt;I always forget that there is great util for doing just that: http://code.google.com/p/ruby-msg/&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3907281912105734594-1098367795204728890?l=blog.purevirtual.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.purevirtual.net/feeds/1098367795204728890/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://blog.purevirtual.net/2012/02/reading-outlook-msg-files-under-linux.html#comment-form' title='Komentarze (0)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3907281912105734594/posts/default/1098367795204728890'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3907281912105734594/posts/default/1098367795204728890'/><link rel='alternate' type='text/html' href='http://blog.purevirtual.net/2012/02/reading-outlook-msg-files-under-linux.html' title='Reading outlook .msg files under Linux'/><author><name>litestep</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3907281912105734594.post-3734202912566796153</id><published>2012-01-07T14:47:00.000-08:00</published><updated>2012-01-07T14:48:05.271-08:00</updated><title type='text'>Valgrind - "client switching stacks"</title><content type='html'>If you ever start to receiving following warning from Valgrind: &lt;br /&gt;&lt;blockquote class="tr_bq"&gt;Warning: client switching stacks?&lt;/blockquote&gt;Followed by many error messages like "Invalid read/write" containing a note: "Address&amp;nbsp; is on thread 1's stack" then the cause is very simple. You are just allocating too large variables on stack - in my case I had too large array, as local variable, in one of functions. If you can't or don't want to use heap it is possible to tune valgrind with "--max-stackframe" parameter i.e.&lt;br /&gt;&lt;blockquote class="tr_bq"&gt;valgrind --max-stackframe=10485760 ./a.out&lt;/blockquote&gt;This will prevent false positive detection&amp;nbsp; of stack switching up to 10MB.&lt;br /&gt;&lt;br /&gt;One additional, much more obvious tip, use "-fno-inline" when building C++ binaries for use with valgrind, otherwise there won't be line numbers in stacktraces for any template functions.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3907281912105734594-3734202912566796153?l=blog.purevirtual.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.purevirtual.net/feeds/3734202912566796153/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://blog.purevirtual.net/2012/01/valgrind-client-switching-stacks.html#comment-form' title='Komentarze (0)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3907281912105734594/posts/default/3734202912566796153'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3907281912105734594/posts/default/3734202912566796153'/><link rel='alternate' type='text/html' href='http://blog.purevirtual.net/2012/01/valgrind-client-switching-stacks.html' title='Valgrind - &quot;client switching stacks&quot;'/><author><name>litestep</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3907281912105734594.post-2338335694240370246</id><published>2011-06-14T01:06:00.000-07:00</published><updated>2011-06-14T01:06:23.637-07:00</updated><title type='text'>Subversion not working under Netbeans on fresh linux system</title><content type='html'>Simple and annoing bug. Solution:&amp;nbsp; &lt;br /&gt;http://stackoverflow.com/questions/1679099/netbeans-subversion-authentication-failed&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3907281912105734594-2338335694240370246?l=blog.purevirtual.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.purevirtual.net/feeds/2338335694240370246/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://blog.purevirtual.net/2011/06/subversion-not-working-under-netbeans.html#comment-form' title='Komentarze (0)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3907281912105734594/posts/default/2338335694240370246'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3907281912105734594/posts/default/2338335694240370246'/><link rel='alternate' type='text/html' href='http://blog.purevirtual.net/2011/06/subversion-not-working-under-netbeans.html' title='Subversion not working under Netbeans on fresh linux system'/><author><name>litestep</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3907281912105734594.post-4815200313287701757</id><published>2011-03-07T01:00:00.000-08:00</published><updated>2011-03-07T01:00:10.995-08:00</updated><title type='text'>Cytat dnia - 07.03.2011</title><content type='html'>&lt;blockquote&gt;Linia będzie dwutorowa, co oznacza, że pociągi będą mogły jeździć wahadłowo, bez oczekiwania na wolny tor&lt;/blockquote&gt;&lt;i&gt;Kazimierz Netka, "Echo miasta&lt;/i&gt;"&lt;br /&gt;&lt;br /&gt;Mam nadzieje, że wpisów w tej kategorii za dużo nie będzie.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3907281912105734594-4815200313287701757?l=blog.purevirtual.net' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://blog.purevirtual.net/feeds/4815200313287701757/comments/default' title='Komentarze do posta'/><link rel='replies' type='text/html' href='http://blog.purevirtual.net/2011/03/cytat-dnia-07032011.html#comment-form' title='Komentarze (0)'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3907281912105734594/posts/default/4815200313287701757'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3907281912105734594/posts/default/4815200313287701757'/><link rel='alternate' type='text/html' href='http://blog.purevirtual.net/2011/03/cytat-dnia-07032011.html' title='Cytat dnia - 07.03.2011'/><author><name>litestep</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
