<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Mac OS X on Mamadou Babaei</title>
    <link>https://www.babaei.net/tags/mac-os-x/</link>
    <description>Recent content in Mac OS X on Mamadou Babaei</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-us</language>
    <lastBuildDate>Mon, 29 Dec 2014 04:27:20 +0330</lastBuildDate><atom:link href="https://www.babaei.net/tags/mac-os-x/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Book Review: Application Development with Qt Creator - Second Edition</title>
      <link>https://www.babaei.net/blog/book-review-application-development-with-qt-creator-second-edition/</link>
      <pubDate>Mon, 29 Dec 2014 04:27:20 +0330</pubDate>
      
      <guid>https://www.babaei.net/blog/book-review-application-development-with-qt-creator-second-edition/</guid>
      <description>&lt;p&gt;Almost three weeks ago I received a review request from one of the &lt;em&gt;&lt;a href=&#34;http://www.packtpub.com/&#34;&gt;Packt Publishing&lt;/a&gt;&lt;/em&gt; staffs to review &lt;em&gt;&lt;a href=&#34;http://www.packtpub.com/application-development/application-development-qt-creator-2nd-edition&#34;&gt;Application Development with Qt Creator, 2nd Edition&lt;/a&gt;&lt;/em&gt; written by &lt;em&gt;&lt;a href=&#34;http://www.lothlorien.com/dove/&#34;&gt;Ray Rischpater&lt;/a&gt;&lt;/em&gt; which has been recently published by Packt Publishing. Since I&amp;rsquo;ve been developing cross platform &lt;a href=&#34;http://qt-project.org/&#34;&gt;Qt&lt;/a&gt; (cute, often mispronounced as Q-T cue-tee) applications from Qt 4 era back in 2008 &amp;ndash; when Qt Creator was not around yet and the project was running by Trolltech at the time &amp;ndash; and a handful of Qt Quick mobile applications over the past two years, I consider myself eligible enough to write a brief review on it. So, I was provided with a review copy and after reading it cover to cover, my thoughts on the book are as follows.&lt;/p&gt;

&lt;link rel=&#34;stylesheet&#34; href=&#34;https://www.babaei.net/css/hugo-easy-gallery.css&#34; /&gt;
&lt;div class=&#34;box&#34; &gt;
  &lt;figure  itemprop=&#34;associatedMedia&#34; itemscope itemtype=&#34;http://schema.org/ImageObject&#34;&gt;
    &lt;div class=&#34;img&#34;&gt;
      &lt;img itemprop=&#34;thumbnail&#34; src=&#34;https://www.babaei.net/blog/book-review-application-development-with-qt-creator-second-edition/book-review-application-development-with-qt-creator-second-edition.webp&#34; alt=&#34;Application Development with Qt Creator, 2nd Edition&#34;/&gt;
    &lt;/div&gt;
    &lt;a href=&#34;https://www.babaei.net/blog/book-review-application-development-with-qt-creator-second-edition/book-review-application-development-with-qt-creator-second-edition.webp&#34; itemprop=&#34;contentUrl&#34;&gt;&lt;/a&gt;
      &lt;figcaption&gt;
          &lt;p&gt;Application Development with Qt Creator, 2nd Edition&lt;/p&gt;
      &lt;/figcaption&gt;
  &lt;/figure&gt;
&lt;/div&gt;</description>
    </item>
    
    <item>
      <title>Write Your Own Cross-Platform Cryptographic Library</title>
      <link>https://www.babaei.net/blog/write-your-own-cross-platform-cryptographic-library/</link>
      <pubDate>Fri, 15 Feb 2013 08:11:00 +0330</pubDate>
      
      <guid>https://www.babaei.net/blog/write-your-own-cross-platform-cryptographic-library/</guid>
      <description>&lt;p&gt;Previously I&amp;rsquo;ve described &lt;a href=&#34;https://www.babaei.net/blog/how-to-build-cpp-cryptographic-library-cryptopp/&#34;&gt;the process of building Crypto++ on both FreeBSD and Windows using the GCC, MinGW and VC++ compilers&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Now, we want to develop our own cross-platform cryptographic wrapper library around Crypto++. I&amp;rsquo;ve already uploaded the full source code to &lt;a href=&#34;http://github.com&#34;&gt;GitHub&lt;/a&gt;. You can find the link to the code on GitHub at the end of this article.&lt;/p&gt;
&lt;p&gt;Before you proceed, you have to build the Crypto++ library as I mentioned earlier &lt;a href=&#34;https://www.babaei.net/blog/how-to-build-cpp-cryptographic-library-cryptopp/&#34;&gt;here&lt;/a&gt;.&lt;/p&gt;</description>
    </item>
    
    <item>
      <title>How to Build C&#43;&#43; Cryptographic Library, Crypto&#43;&#43;</title>
      <link>https://www.babaei.net/blog/how-to-build-cpp-cryptographic-library-cryptopp/</link>
      <pubDate>Fri, 15 Feb 2013 03:50:00 +0330</pubDate>
      
      <guid>https://www.babaei.net/blog/how-to-build-cpp-cryptographic-library-cryptopp/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://www.cryptopp.com/&#34;&gt;Crypto++&lt;/a&gt; is an awesome free and open source C++ class library of cryptographic algorithms and schemes which fully supports 32-bit and 64-bit architectures for many major operating systems, including FreeBSD, Linux, Solaris, Windows, Mac OS X and iOS. Currently, Crypto++ officially supports the following compilers:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;MSVC 6.0 - 2010&lt;/li&gt;
&lt;li&gt;GCC 3.3 - 4.5&lt;/li&gt;
&lt;li&gt;C++Builder 2010&lt;/li&gt;
&lt;li&gt;Intel C++ Compiler 9 - 11.1&lt;/li&gt;
&lt;li&gt;Sun Studio 12u1, Express 11/08, Express 06/10&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The latest version at the time of this writing is 5.6.1.&lt;/p&gt;
&lt;p&gt;In spite of the power that Crypto++ offers, building and using it can be a little bit tricky. In the following we will describe the process of building Crypto++ on both FreeBSD and Windows using the GCC, MinGW and VC++ compilers.&lt;/p&gt;</description>
    </item>
    
  </channel>
</rss>
