<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Gaetano Checinski</title>
    <description>The latest articles on DEV Community by Gaetano Checinski (@nikhedonia).</description>
    <link>https://dev.to/nikhedonia</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F35332%2Fd5a1669f-8e2d-4d58-b3d7-d849238383ae.jpeg</url>
      <title>DEV Community: Gaetano Checinski</title>
      <link>https://dev.to/nikhedonia</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nikhedonia"/>
    <language>en</language>
    <item>
      <title>Buckaroo - C/C++ Package Manager Hits v2.0</title>
      <dc:creator>Gaetano Checinski</dc:creator>
      <pubDate>Fri, 01 Feb 2019 14:53:19 +0000</pubDate>
      <link>https://dev.to/nikhedonia/buckaroo---cc-package-manager-hits-v20-5134</link>
      <guid>https://dev.to/nikhedonia/buckaroo---cc-package-manager-hits-v20-5134</guid>
      <description>

&lt;p&gt;&lt;a href="https://github.com/loopperfect/buckaroo"&gt;https://github.com/loopperfect/buckaroo&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Why Buckaroo?
&lt;/h1&gt;

&lt;p&gt;Package managers like Yarn and Cargo have shown how productive developers can be when they can easily integrate a large ecosystem of projects. Buckaroo fills this gap for C++.&lt;/p&gt;

&lt;p&gt;The Buckaroo workflow looks like this:&lt;/p&gt;



&lt;div class="highlight"&gt;&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Create your project file&lt;/span&gt;
&lt;span class="nv"&gt;$ &lt;/span&gt;buckaroo init

&lt;span class="c"&gt;# Install dependencies&lt;/span&gt;

&lt;span class="nv"&gt;$ &lt;/span&gt;buckaroo add github.com/buckaroo-pm/boost-thread@branch&lt;span class="o"&gt;=&lt;/span&gt;master
&lt;span class="c"&gt;# Run your code&lt;/span&gt;
&lt;span class="nv"&gt;$ &lt;/span&gt;buck run :my-app
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;h1&gt;
  
  
  Features
&lt;/h1&gt;

&lt;p&gt;C++ has unique requirements, so Buckaroo is a highly sophisticated piece of software.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Pull dependencies directly from GitHub, BitBucket, GitLab, hosted Git and HTTP&lt;/li&gt;
&lt;li&gt;Fully reproducible builds and dependency resolution&lt;/li&gt;
&lt;li&gt;Completely decentralized - there is no central server or publishing process&lt;/li&gt;
&lt;li&gt;Allows any build configuration (even on a package-by-package basis)&lt;/li&gt;
&lt;li&gt;Private and public dependencies to avoid "dependency hell"&lt;/li&gt;
&lt;li&gt;Multiple libraries per package, so tools like Lerna are unnecessary&lt;/li&gt;
&lt;li&gt;Pull individual packages out of mono-repos&lt;/li&gt;
&lt;li&gt;Full support for semantic versioning (but only when you want it!)&lt;/li&gt;
&lt;li&gt;Live at head! Move fast by depending directly on Git branches, but in a controlled way&lt;/li&gt;
&lt;li&gt;Blazing fast resolution using clever heuristics&lt;/li&gt;
&lt;li&gt;Version equivalency checks to reduce dependency conflicts&lt;/li&gt;
&lt;li&gt;TOML configuration files for convenient editing by computers and humans&lt;/li&gt;
&lt;li&gt;Works offline (with a populated cache)&lt;/li&gt;
&lt;li&gt;Enable Upgrade Bot to keep everything up-to-date with a single click&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  Intrigued?
&lt;/h1&gt;

&lt;p&gt;Head over to &lt;a href="https://github.com/loopperfect/buckaroo"&gt;https://github.com/loopperfect/buckaroo&lt;/a&gt;&lt;/p&gt;


</description>
      <category>packagemanager</category>
      <category>buildsystem</category>
    </item>
    <item>
      <title>Conduit - C++ Lazy Stream Processing Library using Coroutine TS</title>
      <dc:creator>Gaetano Checinski</dc:creator>
      <pubDate>Sat, 03 Nov 2018 14:21:03 +0000</pubDate>
      <link>https://dev.to/nikhedonia/conduit---c-lazy-stream-processing-library-using-coroutine-ts-3k78</link>
      <guid>https://dev.to/nikhedonia/conduit---c-lazy-stream-processing-library-using-coroutine-ts-3k78</guid>
      <description>

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--eybVWnFr--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn-images-1.medium.com/max/800/0%2ApsDujwuN5qPSWUmy.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--eybVWnFr--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn-images-1.medium.com/max/800/0%2ApsDujwuN5qPSWUmy.png" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/loopperfect/conduit"&gt;https://github.com/loopperfect/conduit&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Lazy High Performance Streams using Coroutine TS&lt;/p&gt;

&lt;p&gt;Conduit is a utility library for building and transforming, ranges and lazy (infinite) iterable sequences.&lt;/p&gt;

&lt;p&gt;Conduit's goals are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Expressivity &lt;/li&gt;
&lt;li&gt;Composability&lt;/li&gt;
&lt;li&gt;Performance&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These are attained by adopting a monadic interface that leverages zero-cost abstractions.&lt;/p&gt;

&lt;p&gt;For more information, head over to our &lt;a href="https://github.com/loopperfect/conduit"&gt;github&lt;/a&gt; or read our &lt;a href="https://medium.com/p/b7e87dd85fcf"&gt;blogpost&lt;/a&gt;&lt;/p&gt;


</description>
      <category>c</category>
      <category>opensource</category>
      <category>coroutines</category>
      <category>streamprocessing</category>
    </item>
  </channel>
</rss>
