<?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: Mijail Rondón</title>
    <description>The latest articles on DEV Community by Mijail Rondón (@mijailr).</description>
    <link>https://dev.to/mijailr</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%2F369414%2F67511e53-eb44-406b-8c5e-1e49ad853fcb.png</url>
      <title>DEV Community: Mijail Rondón</title>
      <link>https://dev.to/mijailr</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mijailr"/>
    <language>en</language>
    <item>
      <title>Good vs Evil: love for Microsoft</title>
      <dc:creator>Mijail Rondón</dc:creator>
      <pubDate>Wed, 23 Sep 2020 04:41:12 +0000</pubDate>
      <link>https://dev.to/mijailr/good-vs-evil-love-for-microsoft-4p47</link>
      <guid>https://dev.to/mijailr/good-vs-evil-love-for-microsoft-4p47</guid>
      <description>&lt;p&gt;From my early years, I were convinced about the free software philosophy (which I'm still attached to) and back then Microsoft was the devil against the software freedom, and everything around Microsoft was a thing I learned to hate like in a movie, was the empire against the republic.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;It's important to say that at that moment, I was very young and the first generation on my family to be close to computers and the internet. And to share was a principle for my family and, I took very personally the fight of the good vs the evil.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Is well known that all the power of Microsoft were used against the practices of building and sharing software collaboratively, but then something changes suddenly, with the &lt;em&gt;"Microsoft ❤️ Linux"&lt;/em&gt;, with that announcement many discussions with my friend's circle were around speculations about the real intentions of Microsoft with this change, was very hard to imagine good intentions after many years of calling free software an abomination, and use a heart emoji to express that. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--JlkXmFWQ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/t5et0ndenoj68e1obzm9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--JlkXmFWQ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/t5et0ndenoj68e1obzm9.png" alt="Microsoft loves Linux"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;We were waiting for a mistake from Microsoft to turn back and expose the real intention, and then, was announced one of the most strategical moves from Microsoft to own the open-source, and it was the acquisition of Github, at that moment and now, the larger repository of open source software and the social network to share code. I entered in panic, imagining some legal move to avoid any new contributions or licensing over the shared code and so on.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://i.giphy.com/media/3o84sBDmixSkHj8h8Y/giphy.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://i.giphy.com/media/3o84sBDmixSkHj8h8Y/giphy.gif" alt="Palpatine Star Wars"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;And the time goes by, but I can't see any clue. All I can see is that many of the current technologies that I use (languages, libraries, tools...) are in some way involved with or supported by Microsoft.&lt;/p&gt;

&lt;p&gt;Now seems like I was pulled to the dark side or something, but Microsoft managed to make me love Microsoft.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Get top articles from dev.to with 🎩 Alfred</title>
      <dc:creator>Mijail Rondón</dc:creator>
      <pubDate>Thu, 28 May 2020 03:06:15 +0000</pubDate>
      <link>https://dev.to/mijailr/get-top-articles-from-dev-to-with-alfred-3h9n</link>
      <guid>https://dev.to/mijailr/get-top-articles-from-dev-to-with-alfred-3h9n</guid>
      <description>&lt;p&gt;I use &lt;a href="https://www.alfredapp.com/"&gt;Alfred&lt;/a&gt; with many workflows every day, is a very good tool for boost your productivity if you make the initial effort to be used to the change.&lt;/p&gt;

&lt;p&gt;Another thing that I like to do is to read the top articles on &lt;a href="https://dev.to"&gt;dev.to&lt;/a&gt; but I didn't found any Alfred workflow for dev.to, so this was a great opportunity to build something useful (at last for me) and as part of my &lt;a href="https://mijailr.com/days_of_code/"&gt;#100DaysOfCode&lt;/a&gt; challenge I decided to create a workflow for dev.to.&lt;/p&gt;

&lt;p&gt;There is an Open API to get some information from dev.to, so using a simple query you can get the top 10 articles for the day:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl https://dev.to/api/articles?top&lt;span class="o"&gt;=&lt;/span&gt;1&amp;amp;per_page&lt;span class="o"&gt;=&lt;/span&gt;10 | jq
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;My first thought was to use a bash script to get the articles and parse everything with &lt;code&gt;jq&lt;/code&gt; but since &lt;code&gt;jq&lt;/code&gt; doesn't come pre-installed on MacOS, so searching on the web about the best way to create an Alfred Workflow, wasn't hard to find an excellent library called &lt;a href="https://github.com/deanishe/alfred-workflow"&gt;alfred-workflow&lt;/a&gt;, created an maintained by Dean Jackson (@deanishe), so cheers to him because he made the harder part.&lt;/p&gt;

&lt;p&gt;This library was written on Python so the answer to the question &lt;em&gt;How we can make a high quality Alfred workflow?&lt;/em&gt; is with Python and &lt;code&gt;alfred-workflow&lt;/code&gt;. Also the documentation is very good so is easy to start.&lt;/p&gt;

&lt;p&gt;Please review the code here &lt;a href="https://github.com/mijailr/alfred-devto"&gt;github.com/mijailr/alfred-devto&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Or if you prefer, you &lt;a href="https://github.com/mijailr/alfred-devto/releases/latest/download/devto.alfredworkflow"&gt;📦 download the workflow here&lt;/a&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>alfred</category>
      <category>macos</category>
      <category>devto</category>
    </item>
  </channel>
</rss>
