<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" 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/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" version="2.0">

<channel>
	<title>Wendelmaques</title>
	
	<link>http://wend.elmaqu.es</link>
	<description>C, C++, Unix, FreeBSD, Linux, Virtualization, Xen, network services, etc...</description>
	<lastBuildDate>Wed, 25 Aug 2010 00:07:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/WendelWebApp" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="wendelwebapp" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>“Duvida basica de ponteiros de c”</title>
		<link>http://wend.elmaqu.es/?p=133</link>
		<comments>http://wend.elmaqu.es/?p=133#comments</comments>
		<pubDate>Tue, 24 Aug 2010 23:53:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[c++]]></category>
		<category><![CDATA[c-lang]]></category>
		<category><![CDATA[cppbrasil]]></category>

		<guid isPermaLink="false">http://wend.elmaqu.es/?p=133</guid>
		<description><![CDATA[Então, essa é básica e ocorre aos montes quando estamos iniciando em C, segue abaixo uma discussão bem interessante entre os veteranos da cppbrasil. O bom da cppbrasil é que as respostas são ótimas, bem esclarecedoras. Eita comunidade pequena, mas organizada essa do C++. A dúvida abaixo é do &#8220;Diego Henrique Oliveira&#8221;: Galera, to com [...]]]></description>
		<wfw:commentRss>http://wend.elmaqu.es/?feed=rss2&amp;p=133</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beginner’s Guide to Linkers</title>
		<link>http://wend.elmaqu.es/?p=129</link>
		<comments>http://wend.elmaqu.es/?p=129#comments</comments>
		<pubDate>Mon, 23 Aug 2010 18:01:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[c++]]></category>
		<category><![CDATA[c-lang]]></category>
		<category><![CDATA[g++]]></category>
		<category><![CDATA[Linkers]]></category>

		<guid isPermaLink="false">http://wend.elmaqu.es/?p=129</guid>
		<description><![CDATA[Beginner&#8217;s Guide to Linkers This article is intended to help C &#38; C++ programmers understand the essentials of what the linker does. I&#8217;ve explained this to a number of colleagues over the years, so I decided it was time to write it down so that it&#8217;s more widely available (and so that I don&#8217;t have [...]]]></description>
		<wfw:commentRss>http://wend.elmaqu.es/?feed=rss2&amp;p=129</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Qt – Password and encryption</title>
		<link>http://wend.elmaqu.es/?p=124</link>
		<comments>http://wend.elmaqu.es/?p=124#comments</comments>
		<pubDate>Fri, 30 Jul 2010 18:06:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Qt]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[c-lang]]></category>
		<category><![CDATA[MD5]]></category>
		<category><![CDATA[QCryptographicHash]]></category>

		<guid isPermaLink="false">http://wend.elmaqu.es/?p=124</guid>
		<description><![CDATA[Warning: this is a mail about security, not about Qt, so skip it if you are not interested. On Friday 24 February 2006 16:27, ing. Federico Fuga wrote: &#62; On Fri, 24 Feb 2006 08:25:47 -0600 &#62; Andrew Vick wrote: &#62; &#62; Perhaps if you MD5 sum the password, that would be sufficient. &#62; &#62; [...]]]></description>
		<wfw:commentRss>http://wend.elmaqu.es/?feed=rss2&amp;p=124</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C: como passar estrutura pra função usando ponteiros</title>
		<link>http://wend.elmaqu.es/?p=119</link>
		<comments>http://wend.elmaqu.es/?p=119#comments</comments>
		<pubDate>Thu, 03 Jun 2010 15:17:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[c-lang]]></category>
		<category><![CDATA[estrutura]]></category>
		<category><![CDATA[fprintf]]></category>
		<category><![CDATA[malloc]]></category>
		<category><![CDATA[memset]]></category>
		<category><![CDATA[pointer]]></category>
		<category><![CDATA[ponteiro]]></category>
		<category><![CDATA[stderr]]></category>
		<category><![CDATA[struct]]></category>

		<guid isPermaLink="false">http://wend.elmaqu.es/?p=119</guid>
		<description><![CDATA[Abaixo, um exemplo, sobre como passar uma estrutura de dados para uma função. Ao receber a estrutura a função f() faz modificações nessa estrutura. #include &#60;stdio.h&#62; #include &#60;string.h&#62; #include &#60;stdlib.h&#62; // a estrutura. *d vai guardar somente o endereço do bloco de letras, // não as letras, as letras vão tá na memória em algum [...]]]></description>
		<wfw:commentRss>http://wend.elmaqu.es/?feed=rss2&amp;p=119</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An introduction to libvirt’s LXC (LinuX Container) support</title>
		<link>http://wend.elmaqu.es/?p=115</link>
		<comments>http://wend.elmaqu.es/?p=115#comments</comments>
		<pubDate>Sun, 30 May 2010 14:16:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[libvirt]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[virt]]></category>

		<guid isPermaLink="false">http://wend.elmaqu.es/?p=115</guid>
		<description><![CDATA[This is a short^H^H^H^H^H long mail to introduce / walk-through some recent developments in libvirt to support native Linux hosted container virtualization using the kernel capabilities the people on this list have been adding in recent releases. We've been working on this for a few months now, but not really publicised it before now, and [...]]]></description>
		<wfw:commentRss>http://wend.elmaqu.es/?feed=rss2&amp;p=115</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vim + minibufexpl + vtreeexplorer + mswin + mouse=a + screen = VIM IDE</title>
		<link>http://wend.elmaqu.es/?p=108</link>
		<comments>http://wend.elmaqu.es/?p=108#comments</comments>
		<pubDate>Fri, 14 May 2010 17:46:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[c++]]></category>
		<category><![CDATA[c-lang]]></category>
		<category><![CDATA[gdb]]></category>
		<category><![CDATA[Qt]]></category>
		<category><![CDATA[VIM]]></category>

		<guid isPermaLink="false">http://wend.elmaqu.es/?p=108</guid>
		<description><![CDATA[Então, o QT Creator é ótimo, mas, muitas vezes é preciso trabalhar dentro de uma VM ou remotamente, fazendo algum serviço que irá fornecer dados para a interface em Qt. Sendo assim, trabalhar com o VIM cru, fica dificil, pra editar, compilar e depurar o código. Abaixo, meu .vimrc que tornar o VIM praticamente uma [...]]]></description>
		<wfw:commentRss>http://wend.elmaqu.es/?feed=rss2&amp;p=108</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vim + qt + autocomplete</title>
		<link>http://wend.elmaqu.es/?p=103</link>
		<comments>http://wend.elmaqu.es/?p=103#comments</comments>
		<pubDate>Fri, 14 May 2010 13:14:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[c++]]></category>
		<category><![CDATA[OmniCppComplete]]></category>
		<category><![CDATA[Qt4]]></category>
		<category><![CDATA[VIM]]></category>

		<guid isPermaLink="false">http://wend.elmaqu.es/?p=103</guid>
		<description><![CDATA[Baseado no post Code completion in VIM for C/C++/Java/Python, segue dicas rápidas para adicionar suporte ao autocomplete do Qt4 ao VIM (Unbutu). ~/.vimrc source $VIMRUNTIME/mswin.vim syntax enable se nu set tabstop=4 set shiftwidth=4 set expandtab filetype on filetype plugin on set nocp autocmd FileType python set omnifunc=pythoncomplete#Complete autocmd FileType javascript set omnifunc=javascriptcomplete#CompleteJS autocmd FileType html [...]]]></description>
		<wfw:commentRss>http://wend.elmaqu.es/?feed=rss2&amp;p=103</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C/C++: NULL vs 0</title>
		<link>http://wend.elmaqu.es/?p=100</link>
		<comments>http://wend.elmaqu.es/?p=100#comments</comments>
		<pubDate>Thu, 22 Apr 2010 01:49:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[c++]]></category>
		<category><![CDATA[null]]></category>

		<guid isPermaLink="false">http://wend.elmaqu.es/?p=100</guid>
		<description><![CDATA[Mais um assunto bacana que foi discutido na lista CPPBRASIL. O André fez algumas observações sobre o uso de NULL ou 0 e o Hugo complementou com informações bem interessantes. Essa informação é bem bacana para os novatos como eu que está tentando aprender essa complexa e poderosa linguagem que é o C++. Segue abaixo [...]]]></description>
		<wfw:commentRss>http://wend.elmaqu.es/?feed=rss2&amp;p=100</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mysql.c (conectando ao MySQL via C)</title>
		<link>http://wend.elmaqu.es/?p=95</link>
		<comments>http://wend.elmaqu.es/?p=95#comments</comments>
		<pubDate>Tue, 30 Mar 2010 03:39:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[c++]]></category>
		<category><![CDATA[c-lang]]></category>

		<guid isPermaLink="false">http://wend.elmaqu.es/?p=95</guid>
		<description><![CDATA[Abaixo um programinha simples de exemplo, sobre como acessar o MySQL via C. A idéia é bem simpls, mas, bem útil se você estiver aprendendo, um dos piores problemas será como colocar os dados recebidos do MySQL em uma estrutura de dados (array) para usar posteriormente, essa é a parte difícil, que fiz, usando &#8220;ponteiro [...]]]></description>
		<wfw:commentRss>http://wend.elmaqu.es/?feed=rss2&amp;p=95</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Entrevista com o criador do C++ em 1998 (Bjarne Stroustrup)</title>
		<link>http://wend.elmaqu.es/?p=86</link>
		<comments>http://wend.elmaqu.es/?p=86#comments</comments>
		<pubDate>Tue, 30 Mar 2010 02:03:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[c++]]></category>

		<guid isPermaLink="false">http://wend.elmaqu.es/?p=86</guid>
		<description><![CDATA[Em 1 de Janeiro de 1998, Bjarne Strustrup (criador do C++) deu essa entrevista. Lembrando que, em 1998 ainda não  tinha sido implementado os &#8220;templates&#8221; do C++ que foram incluídos somente em 2001. Original do texto abaixo encontra-se aqui. I would like to find the proper credit for the material below. Please mail me if [...]]]></description>
		<wfw:commentRss>http://wend.elmaqu.es/?feed=rss2&amp;p=86</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss><!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
