<?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: briansole</title>
    <description>The latest articles on DEV Community by briansole (@briansole).</description>
    <link>https://dev.to/briansole</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%2F266295%2F26fbc3c8-bcf4-41d4-bf59-838c3bf72baa.png</url>
      <title>DEV Community: briansole</title>
      <link>https://dev.to/briansole</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/briansole"/>
    <language>en</language>
    <item>
      <title>Waarom heeft Go Python niet ingehaald in populariteit? (Dutch)</title>
      <dc:creator>briansole</dc:creator>
      <pubDate>Fri, 08 Nov 2019 15:34:27 +0000</pubDate>
      <link>https://dev.to/briansole/waarom-heeft-go-python-niet-ingehaald-in-populariteit-dutch-3kkp</link>
      <guid>https://dev.to/briansole/waarom-heeft-go-python-niet-ingehaald-in-populariteit-dutch-3kkp</guid>
      <description>&lt;p&gt;Als je net gehoord hebt over &lt;a href="https://golang.org/"&gt;Go&lt;/a&gt;, vraag je je misschien af of het zo geweldig is, waarom zien we het niet overal?&lt;/p&gt;

&lt;p&gt;In deze post zal ik proberen die vraag vanuit mijn eigen perspectief te beantwoorden. &lt;/p&gt;

&lt;h2&gt;
  
  
  Domein kennis
&lt;/h2&gt;

&lt;p&gt;In veel domeinen is &lt;a href="https://python.org"&gt;Python&lt;/a&gt; de standaardtaal. Zoals in datamining of machine learning, waar je allerlei bewerkingen moet doen met de data (slicing, modellen etc.). &lt;/p&gt;

&lt;p&gt;Door te kiezen voor Python kunt u gebruik maken van de bestaande codebasissen en ontwikkelingsgemeenschap. Dit is wat veel ontwikkelaars doen.&lt;/p&gt;

&lt;p&gt;Go is ontworpen om robuuste systemen op schaal te bouwen, zoals micro-services. Je kunt ervoor kiezen om voor Go te kiezen, maar voor veel ontwikkelaars vereist Go een beetje studie om te begrijpen. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--nX6EORNX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://external-content.duckduckgo.com/iu/%3Fu%3Dhttps%253A%252F%252Fmedia1.tenor.com%252Fimages%252F71cec41e363e0455f61c478f1bdea496%252Ftenor.gif%253Fitemid%253D9796017%26f%3D1%26nofb%3D1" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--nX6EORNX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://external-content.duckduckgo.com/iu/%3Fu%3Dhttps%253A%252F%252Fmedia1.tenor.com%252Fimages%252F71cec41e363e0455f61c478f1bdea496%252Ftenor.gif%253Fitemid%253D9796017%26f%3D1%26nofb%3D1"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Prestaties
&lt;/h2&gt;

&lt;p&gt;Dan zijn er nog mensen die de prestaties van Go nodig hebben, maar die in plaats daarvan C/C+++ zullen gebruiken omdat ze dat lang geleden geleerd hebben.&lt;/p&gt;

&lt;p&gt;Als u netwerkgerichte programma's hebt (microservices en dergelijke) of programma's met concurrency, kan het de beste oplossing zijn.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Related links:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://golang.org/"&gt;Download Go&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://golangr.com/"&gt;Golang tutorial&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://python.org"&gt;The Python website&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>go</category>
      <category>dutch</category>
      <category>nederlands</category>
    </item>
    <item>
      <title>Why hasn’t Go overtaken Python in popularity?</title>
      <dc:creator>briansole</dc:creator>
      <pubDate>Fri, 08 Nov 2019 15:29:07 +0000</pubDate>
      <link>https://dev.to/briansole/why-hasn-t-go-overtaken-python-in-popularity-20n8</link>
      <guid>https://dev.to/briansole/why-hasn-t-go-overtaken-python-in-popularity-20n8</guid>
      <description>&lt;p&gt;If you just heard about &lt;a href="https://golang.org/"&gt;Go&lt;/a&gt;, you may wonder if it's so great, why don't we see it everywhere?&lt;/p&gt;

&lt;p&gt;In this post I'll try to answer that question from my own perspective. Let me know if you agree or disagree. Don't forget to smash the like :P&lt;/p&gt;

&lt;h2&gt;
  
  
  Domain knowledge
&lt;/h2&gt;

&lt;p&gt;In many domains, &lt;a href="https://python.org"&gt;Python&lt;/a&gt; is the default language. Like in data mining or machine learning, where you need to do all kinds of operations with the data (slicing, models etc). &lt;/p&gt;

&lt;p&gt;By choosing Python you can take advantage of the existing code bases and development community. This is what many developers do.&lt;/p&gt;

&lt;p&gt;Go was designed to build robust systems to scale, like micro services. That's when you could choose to go for Go, but for many developers Go requires a little bit of work to understand. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--nX6EORNX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://external-content.duckduckgo.com/iu/%3Fu%3Dhttps%253A%252F%252Fmedia1.tenor.com%252Fimages%252F71cec41e363e0455f61c478f1bdea496%252Ftenor.gif%253Fitemid%253D9796017%26f%3D1%26nofb%3D1" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--nX6EORNX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://external-content.duckduckgo.com/iu/%3Fu%3Dhttps%253A%252F%252Fmedia1.tenor.com%252Fimages%252F71cec41e363e0455f61c478f1bdea496%252Ftenor.gif%253Fitemid%253D9796017%26f%3D1%26nofb%3D1"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Performance
&lt;/h2&gt;

&lt;p&gt;Then there's those who need the performance of Go, but that will use C/C++ instead because they learned that a long time ago.&lt;/p&gt;

&lt;p&gt;If you have network-centric programs (micro services and so on) or high-concurrency programs, it may be the best solution.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Related links:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://golang.org/"&gt;Download Go&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://golangr.com/"&gt;Golang tutorial&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://python.org"&gt;The Python website&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>go</category>
    </item>
    <item>
      <title>Ruby of Python voor web project? (Dutch)</title>
      <dc:creator>briansole</dc:creator>
      <pubDate>Fri, 08 Nov 2019 15:13:14 +0000</pubDate>
      <link>https://dev.to/briansole/ruby-of-python-voor-web-project-dutch-25h7</link>
      <guid>https://dev.to/briansole/ruby-of-python-voor-web-project-dutch-25h7</guid>
      <description>&lt;p&gt;Dus moet je gaan met &lt;a href="https://python.org"&gt;Python&lt;/a&gt; of &lt;a href="https://ruby-lang.org"&gt;Ruby&lt;/a&gt;?  &lt;/p&gt;

&lt;p&gt;Als je alleen werk zoekt, is Ruby (on Rails) een goede keuze. Dit is natuurlijk afhankelijk van waar u zich bevindt.&lt;/p&gt;

&lt;p&gt;Beide zijn goede talen en hebben bibliotheken voor het bouwen van web apps. Voor Ruby is dat "Ruby on Rails", ook wel RoR genoemd. Voor Python is er Django en Flask.&lt;/p&gt;

&lt;p&gt;Gemiddeld zijn er meer Python johs, maar als je de Ruby-on-rails kant op gaat kun je er zeker van zijn dat het ok is. Voor Python-jobs is het overal te vinden, want het is ook populair voor machine learning, data mining en andere meer wetenschappelijke toepassingen.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ynWx-Qyu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/pols5ssddxg8l9rcgk5k.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ynWx-Qyu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/pols5ssddxg8l9rcgk5k.png" width="30%"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Het maken van webapps
&lt;/h2&gt;

&lt;p&gt;Tegenwoordig is Ruby min of meer gestabiliseerd in populariteit. Terwijl Pyton-webontwikkeling een beetje populairder is geworden. &lt;/p&gt;

&lt;p&gt;Voor Python is Django popular, voor Ruby rails. Beide zijn prima.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--dGkS-Io8--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://external-content.duckduckgo.com/iu/%3Fu%3Dhttps%253A%252F%252Fqph.fs.quoracdn.net%252Fmain-qimg-3ca1666848392e5dc7701f1a11af7024%26f%3D1%26nofb%3D1" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--dGkS-Io8--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://external-content.duckduckgo.com/iu/%3Fu%3Dhttps%253A%252F%252Fqph.fs.quoracdn.net%252Fmain-qimg-3ca1666848392e5dc7701f1a11af7024%26f%3D1%26nofb%3D1"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Dus hoe zit het met Flask?  Naar mijn mening is Flask de meest eenvoudige module van allemaal, omdat het een micro framework is dat eenvoudig is in te stellen en te gebruiken. Maar hoewel het gemakkelijk is, komt het niet met alle functies (standaard) die Rails of Django hebben.&lt;/p&gt;

&lt;p&gt;Uiteindelijk hangt het af van wat u wilt doen. Beiden zijn goede hulpmiddelen voor het bouwen van web apps (inclusief SaaS).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Read more&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://ruby-lang.co"&gt;Ruby programming tutorial&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://rubyonrails.org/"&gt;Ruby on Rails: Web Apps with Ruby&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.djangoproject.com/"&gt;Django Web Framework Project&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>ruby</category>
      <category>rails</category>
      <category>dutch</category>
      <category>nederlands</category>
    </item>
    <item>
      <title>Python over Ruby for Web Development?</title>
      <dc:creator>briansole</dc:creator>
      <pubDate>Fri, 08 Nov 2019 15:09:29 +0000</pubDate>
      <link>https://dev.to/briansole/python-over-ruby-for-web-development-1je5</link>
      <guid>https://dev.to/briansole/python-over-ruby-for-web-development-1je5</guid>
      <description>&lt;p&gt;So should you go with &lt;a href="https://python.org"&gt;Python&lt;/a&gt; or &lt;a href="https://ruby-lang.org"&gt;Ruby&lt;/a&gt;?  &lt;/p&gt;

&lt;p&gt;If you are looking purely in job terms, Ruby (on Rails) is a good choice. Of course this depends where you are geographically located.&lt;/p&gt;

&lt;p&gt;Both are good languages and have frameworks for building web apps. For Ruby that's "Ruby on Rails", also named RoR. For Python there's Django and Flask.&lt;/p&gt;

&lt;p&gt;On average there are more Python jobs (in my location), but when you go the Ruby road you can be sure it's rails. For Python jobs it's all over the place as it's also popular for Machine Learning, Data Mining and other more scientific applications.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ynWx-Qyu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/pols5ssddxg8l9rcgk5k.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ynWx-Qyu--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/pols5ssddxg8l9rcgk5k.png" width="30%"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Making web apps
&lt;/h2&gt;

&lt;p&gt;These days, Ruby is more or less stabilized in terms of popularity. While Pyton web development has become a bit more popular. &lt;/p&gt;

&lt;p&gt;You can Tango with Django or get on the track with rails. Both are fine. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--dGkS-Io8--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://external-content.duckduckgo.com/iu/%3Fu%3Dhttps%253A%252F%252Fqph.fs.quoracdn.net%252Fmain-qimg-3ca1666848392e5dc7701f1a11af7024%26f%3D1%26nofb%3D1" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--dGkS-Io8--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://external-content.duckduckgo.com/iu/%3Fu%3Dhttps%253A%252F%252Fqph.fs.quoracdn.net%252Fmain-qimg-3ca1666848392e5dc7701f1a11af7024%26f%3D1%26nofb%3D1"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;So what about Flask you ask?  In my opinion Flask is the most easy frameworks of all, because it's a micro framework it's easy to setup and run. But while it's easy, it doesn't come with all of the features (by default) that Rails or Django have.&lt;/p&gt;

&lt;p&gt;In the end, it depends on what you want to do. Both are good tools for building web apps (including SaaS)&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Read more&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://ruby-lang.co"&gt;Ruby programming tutorial&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://rubyonrails.org/"&gt;Ruby on Rails: Web Apps with Ruby&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.djangoproject.com/"&gt;Django Web Framework Project&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>ruby</category>
      <category>rails</category>
    </item>
    <item>
      <title>Wat kun je met Golang? (Dutch)</title>
      <dc:creator>briansole</dc:creator>
      <pubDate>Thu, 07 Nov 2019 16:12:03 +0000</pubDate>
      <link>https://dev.to/briansole/wat-kun-je-met-golang-dutch-5cl2</link>
      <guid>https://dev.to/briansole/wat-kun-je-met-golang-dutch-5cl2</guid>
      <description>&lt;p&gt;Nieuw met &lt;a href="https://golang.org/"&gt;Golang&lt;/a&gt;? Je kunt veel dingen doen met Golang. Het groeit in populariteit.&lt;/p&gt;

&lt;p&gt;Wat voor soort dingen? Ze omvatten&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Het bouwen van web apps en statische sites&lt;/li&gt;
&lt;li&gt;Gedistribueerde apps&lt;/li&gt;
&lt;li&gt;Bijna alles wat je kunt doen met Python, PHP en Java&lt;/li&gt;
&lt;li&gt;Web scrapen&lt;/li&gt;
&lt;li&gt;Server ontwikkeling (JSON API, Chat systeem, Web server)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--IqXbCVrh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://duckduckgo.com/i/77cac527.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--IqXbCVrh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://duckduckgo.com/i/77cac527.png"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Alles?
&lt;/h2&gt;

&lt;p&gt;Dus een heleboel dingen. Golang is een algemene programmeertaal, dus je kunt het gebruiken voor wat je maar wilt.&lt;/p&gt;

&lt;p&gt;Dat gezegd hebbende, sommige aspecten ervan hebben de manier waarop ze zijn gestandaardiseerd voor PHP (Laravel) of Python (Django/Flask) nog niet gestandaardiseerd.&lt;/p&gt;

&lt;p&gt;Zolang je geen harde real-time mogelijkheden nodig hebt, is alles mogelijk. Dat betekent, gebruik Go niet als real-time een hardcore vereiste is (kerncentrales).&lt;/p&gt;

&lt;p&gt;Sommige dingen kunnen net iets anders werken dan in andere talen, maar laat dat je niet tegenhouden. Go!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Related links:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://golang.org/"&gt;Go programming language&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://golangr.com/"&gt;Learn Go programming (tutorial)&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>go</category>
      <category>dutch</category>
      <category>nederlands</category>
    </item>
    <item>
      <title>What can I do with Golang</title>
      <dc:creator>briansole</dc:creator>
      <pubDate>Thu, 07 Nov 2019 16:04:38 +0000</pubDate>
      <link>https://dev.to/briansole/what-can-i-do-with-golang-l0h</link>
      <guid>https://dev.to/briansole/what-can-i-do-with-golang-l0h</guid>
      <description>&lt;p&gt;New to &lt;a href="https://golang.org/"&gt;Golang&lt;/a&gt;? You can do many things with Golang. It's growing in popularity.&lt;/p&gt;

&lt;p&gt;What kind of things? They include&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Building web apps and static sites&lt;/li&gt;
&lt;li&gt;Write distributed apps&lt;/li&gt;
&lt;li&gt;Almost everything you can do with Python, PHP and Java&lt;/li&gt;
&lt;li&gt;Web scraping&lt;/li&gt;
&lt;li&gt;Server development (JSON API, Chat system, Web server)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You’ll be in good hands!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--IqXbCVrh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://duckduckgo.com/i/77cac527.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--IqXbCVrh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://duckduckgo.com/i/77cac527.png"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Everything?
&lt;/h2&gt;

&lt;p&gt;So a lot of things. Golang is a general purpose programming language, so you can use it for whatever you want.&lt;/p&gt;

&lt;p&gt;That being said, some aspects of it have not yet standardized the way they have for PHP (Laravel) or Python (Django/Flask).&lt;/p&gt;

&lt;p&gt;As long as you don’t need hard real-time capabilities, everything possible. That means, don't use Go when real-time is a hardcore requirement (nuclear power plants).&lt;/p&gt;

&lt;p&gt;Some things may work just a bit different than in other languages, but don't let that stop you. Go!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Related links:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://golang.org/"&gt;Go programming language&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://golangr.com/"&gt;Learn Go programming (tutorial)&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>go</category>
    </item>
    <item>
      <title>Ruby on Rails in 2020? (Dutch)</title>
      <dc:creator>briansole</dc:creator>
      <pubDate>Thu, 07 Nov 2019 15:49:20 +0000</pubDate>
      <link>https://dev.to/briansole/ruby-on-rails-in-2020-dutch-10a6</link>
      <guid>https://dev.to/briansole/ruby-on-rails-in-2020-dutch-10a6</guid>
      <description>&lt;p&gt;U kunt zich afvragen of het de moeite waard is om &lt;a href="https://rubyonrails.org/"&gt;Ruby on Rails&lt;/a&gt; te leren in 2020. In deze post proberen we daar een antwoord op te geven.&lt;/p&gt;

&lt;p&gt;De taalpopulariteit (&lt;a href="https://www.ruby-lang.org/en/"&gt;Ruby&lt;/a&gt;) zelf neemt af, maar het gaat niet snel dood door de legacy code.&lt;/p&gt;

&lt;p&gt;Voor de komende 2-5 jaar denk ik dat het een goede investering is van je tijd om het te leren. Natuurlijk, geen enkele taal blijft voor altijd populair (zie Cobol, Fortran, Pascal).&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--P7RWZNsQ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.pixabay.com/photo/2017/08/10/08/47/code-2620118_960_720.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--P7RWZNsQ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.pixabay.com/photo/2017/08/10/08/47/code-2620118_960_720.jpg"&gt;&lt;/a&gt;" &amp;gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Ruby on Rails
&lt;/h3&gt;

&lt;p&gt;Wanneer je Ruby leert, wil je het Rails framework leren. Het Rails framework is ontworpen voor het bouwen van websites en applicaties. Het is vergelijkbaar met Django (Python) of Zend Framework (PHP).&lt;/p&gt;

&lt;p&gt;Als je Linux gebruikt, wil je misschien je Ruby versie updaten, omdat de versie vaak niet up-to-date is.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight ruby"&gt;&lt;code&gt;    &lt;span class="err"&gt;$&lt;/span&gt; &lt;span class="n"&gt;robijnrode&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="n"&gt;v&lt;/span&gt;
    &lt;span class="n"&gt;robijn&lt;/span&gt; &lt;span class="mf"&gt;2.5&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="mi"&gt;0&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;Dus ja, het is de moeite waard om nu te leren (&lt;a href="https://ruby-lang.co/"&gt;Ruby tutorial&lt;/a&gt;). Bovendien zul je waarschijnlijk andere vaardigheden (SQL-databases, Javascript) onder de knie krijgen, die zeker nog lang zullen blijven bestaan. &lt;/p&gt;

&lt;h2&gt;
  
  
  Hoe zit het met JavaScript?
&lt;/h2&gt;

&lt;p&gt;Sommigen zeggen dat de toekomst JavaScript is, apps "verhuizen" naar het web en er is tegenwoordig ook server-side JavaScript. Dingen zoals NodeJS, React, Vue.js en vrienden zijn dingen die je tegenwoordig vaak ziet.&lt;/p&gt;

&lt;p&gt;Hoe dan ook, de conceptuele vaardigheden blijven hetzelfde en Ruby is hier om een tijdje bij ons te blijven. Ruby is een geweldige taal om mee te beginnen in de wereld van het programmeren.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Related links:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://rubyonrails.org/"&gt;Ruby on Rails&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.ruby-lang.org/en/"&gt;Download Ruby&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://ruby-lang.co/"&gt;Ruby tutorial&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>ruby</category>
      <category>rails</category>
      <category>dutch</category>
      <category>nederlands</category>
    </item>
    <item>
      <title>Is Ruby on Rails popular to learn for 2020?</title>
      <dc:creator>briansole</dc:creator>
      <pubDate>Thu, 07 Nov 2019 15:42:37 +0000</pubDate>
      <link>https://dev.to/briansole/is-ruby-on-rails-popular-to-learn-for-2020-3pl</link>
      <guid>https://dev.to/briansole/is-ruby-on-rails-popular-to-learn-for-2020-3pl</guid>
      <description>&lt;p&gt;You may wonder if it's worth learning &lt;a href="https://rubyonrails.org/"&gt;Ruby on Rails&lt;/a&gt; in 2020. In this post we'll seek to answer that.&lt;/p&gt;

&lt;p&gt;The language popularity (&lt;a href="https://www.ruby-lang.org/en/"&gt;Ruby&lt;/a&gt;) itself is declining, but it's not going to die soon because of legacy code.&lt;/p&gt;

&lt;p&gt;For the next 2-5 years, I think it's a good investment of your time to learn it. Of course, no language stays popular forever (see Cobol, Fortran, Pascal)&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--P7RWZNsQ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.pixabay.com/photo/2017/08/10/08/47/code-2620118_960_720.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--P7RWZNsQ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.pixabay.com/photo/2017/08/10/08/47/code-2620118_960_720.jpg"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  All aboard the Ruby on Rails
&lt;/h2&gt;

&lt;p&gt;When learning Ruby, you want to learn the Rails framework. The Rails framework is designed for building websites and applications. It's similar to Django (Python) or Zend Framework (PHP).&lt;/p&gt;

&lt;p&gt;If you are on Linux, you may want to update your Ruby version, because the version is often not up-to-date.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight ruby"&gt;&lt;code&gt;    &lt;span class="err"&gt;$&lt;/span&gt; &lt;span class="n"&gt;ruby&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="n"&gt;v&lt;/span&gt;
    &lt;span class="n"&gt;ruby&lt;/span&gt; &lt;span class="mf"&gt;2.5&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="mi"&gt;0&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;So yes, it's worth learning for now (&lt;a href="https://ruby-lang.co/"&gt;Ruby tutorial&lt;/a&gt;). On top of that you'll likely master other skills (SQL databases, Javascript) which will for sure stick around for a long time. &lt;/p&gt;

&lt;h2&gt;
  
  
  What about JavaScript?
&lt;/h2&gt;

&lt;p&gt;Some say the future is JavaScript, apps are moving into the web and there's server side JavaScript these days. Things like NodeJS, React, Vue.js and friends are things you see often these days.&lt;/p&gt;

&lt;p&gt;Eitherway, the conceptual skills remain the same and Ruby is here to stay with us for a while. Ruby is a great language to get started in the world of programming.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Related links:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://rubyonrails.org/"&gt;Ruby on Rails&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.ruby-lang.org/en/"&gt;Download Ruby&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://ruby-lang.co/"&gt;Ruby tutorial&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>rails</category>
      <category>ruby</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Waarom Golang? (Dutch)</title>
      <dc:creator>briansole</dc:creator>
      <pubDate>Wed, 06 Nov 2019 20:20:53 +0000</pubDate>
      <link>https://dev.to/briansole/waarom-golang-1oa8</link>
      <guid>https://dev.to/briansole/waarom-golang-1oa8</guid>
      <description>&lt;p&gt;&lt;a href="https://golang.org/"&gt;Go&lt;/a&gt; is een algemene programmeertaal. Dit betekent dat je het kunt gebruiken voor wat je maar wilt (&lt;a href="https://golangr.com/about-go/"&gt;Why Learn Go&lt;/a&gt;). De syntax lijkt een beetje op de C-programmeren.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    package main

    import "fmt"

    func main() {
       fmt.Println("Hello, World!")
    }
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;Het is vooral goed voor:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;systemen: krachtige standaard &lt;/li&gt;
&lt;li&gt;gelijktijdigheid: u kunt het gebruiken om gelijktijdige apps te bouwen zonder dat u zich zorgen hoeft te maken over prestaties&lt;/li&gt;
&lt;li&gt;netwerken&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Met andere woorden, Go is goed voor mensen die graag op een laag niveau programmeren.&lt;br&gt;
Tegenwoordig wordt het gebruikt voor:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Netwerken en Webservers&lt;/li&gt;
&lt;li&gt;Automatisering en commandoregel&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Dat zijn een heleboel dingen waar je het nu al voor kunt gebruiken!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--6VHoKVgd--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://external-content.duckduckgo.com/iu/%3Fu%3Dhttps%253A%252F%252Fforum.golangbridge.org%252Fuser_avatar%252Fforum.golangbridge.org%252Fstabby%252F200%252F55_1.png%26f%3D1%26nofb%3D1" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--6VHoKVgd--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://external-content.duckduckgo.com/iu/%3Fu%3Dhttps%253A%252F%252Fforum.golangbridge.org%252Fuser_avatar%252Fforum.golangbridge.org%252Fstabby%252F200%252F55_1.png%26f%3D1%26nofb%3D1"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Het wordt (nog) niet veel gebruikt voor desktop software, web frontends, mobiele app ontwikkeling, games, bankieren. Dat betekent niet dat het niet gebruikt kan worden, alleen dat het nog niet standaard is.&lt;/p&gt;

&lt;p&gt;Dat rare beestje bovenop? Dat is het Go logo btw. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Meer links:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://golang.org/"&gt;Official Golang website&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://golangr.com/"&gt;Golang Programming tutorial&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com?v=cQ7STILAS0M"&gt;Video talk: Why Go is successful&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>go</category>
      <category>dutch</category>
    </item>
    <item>
      <title>What is golang good for?</title>
      <dc:creator>briansole</dc:creator>
      <pubDate>Wed, 06 Nov 2019 19:42:12 +0000</pubDate>
      <link>https://dev.to/briansole/what-is-golang-good-for-4epp</link>
      <guid>https://dev.to/briansole/what-is-golang-good-for-4epp</guid>
      <description>&lt;p&gt;&lt;a href="https://golang.org/"&gt;Go&lt;/a&gt; is a general purpose programming language. This means, you can use it for whatever you want (&lt;a href="https://golangr.com/about-go/"&gt;Why Learn Go&lt;/a&gt;). It's syntax looks a bit like C programming&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    package main

    import "fmt"

    func main() {
       fmt.Println("Hello, World!")
    }
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;p&gt;Its especially good for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;systems: powerful standard &lt;/li&gt;
&lt;li&gt;concurrency: you can use it to build concurrent apps without being concerned about performance&lt;/li&gt;
&lt;li&gt;networking&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In other words, Go is good for those like to program in low level.&lt;br&gt;
These days its used for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Networking and Webservers&lt;/li&gt;
&lt;li&gt;Automation and Command-line tools&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That's a lot of stuff you can use it for already!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--6VHoKVgd--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://external-content.duckduckgo.com/iu/%3Fu%3Dhttps%253A%252F%252Fforum.golangbridge.org%252Fuser_avatar%252Fforum.golangbridge.org%252Fstabby%252F200%252F55_1.png%26f%3D1%26nofb%3D1" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--6VHoKVgd--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://external-content.duckduckgo.com/iu/%3Fu%3Dhttps%253A%252F%252Fforum.golangbridge.org%252Fuser_avatar%252Fforum.golangbridge.org%252Fstabby%252F200%252F55_1.png%26f%3D1%26nofb%3D1"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Its not (yet) used much for desktop software, web frontends, mobile app development, games, banking. That does not mean it cannot be used, just that it has not matured yet for these purposes.&lt;/p&gt;

&lt;p&gt;That silly animal on top? that's the Go logo btw. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Related links:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://golang.org/"&gt;Official Golang website&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://golangr.com/"&gt;Golang Programming tutorial&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.youtube.com?v=cQ7STILAS0M"&gt;Video talk: Why Go is successful&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>go</category>
    </item>
    <item>
      <title>Heeft het zin om Ruby te leren? (Dutch)</title>
      <dc:creator>briansole</dc:creator>
      <pubDate>Wed, 06 Nov 2019 16:59:27 +0000</pubDate>
      <link>https://dev.to/briansole/heeft-het-zin-om-ruby-te-leren-dutch-fj1</link>
      <guid>https://dev.to/briansole/heeft-het-zin-om-ruby-te-leren-dutch-fj1</guid>
      <description>&lt;p&gt;&lt;a href="https://rubyonrails.org/"&gt;Ruby (en Rails)&lt;/a&gt; is niet zo gehypet als enkele jaren geleden. Maar dit betekent niet dat het niet langer populair/gebruikt is.&lt;/p&gt;

&lt;p&gt;Het probleem vandaag de dag is dat mensen één ding willen leren en het dan voor altijd willen gebruiken. Bedenk wie er nu Cobol of Fortran gebruikt. Een programmeertaal is slechts een hulpmiddel.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--hb95TPZc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://upload.wikimedia.org/wikipedia/commons/thumb/6/62/Ruby_On_Rails_Logo.svg/220px-Ruby_On_Rails_Logo.svg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--hb95TPZc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://upload.wikimedia.org/wikipedia/commons/thumb/6/62/Ruby_On_Rails_Logo.svg/220px-Ruby_On_Rails_Logo.svg.png"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  wordt Ruby vandaag gebruikt?
&lt;/h2&gt;

&lt;p&gt;Ruby wordt gebruikt door duizenden ontwikkelaars en bedrijven, dus het is zinvol om het te gebruiken. Bestaande systemen in Ruby moeten worden onderhouden. Dit geldt voor elke taal.&lt;/p&gt;

&lt;p&gt;Denk aan WordPress, het wordt nog steeds gebruikt en is een populair Content Management Systeem (CMS). Het is meer dan tien of twintig jaar geleden gemaakt in PHP. Dit moet worden onderhouden, ook al is PHP niet meer zo populair als het ooit was.&lt;/p&gt;

&lt;p&gt;Gewoon door een kijkje te nemen in de &lt;a href="https://dev.to/t/ruby"&gt;Ruby sectie&lt;/a&gt; laat zien dat Ruby nog steeds gebruikt en besproken wordt. Er zijn ook &lt;a href="https://www.rubyjobs.com/"&gt;veel opdrachten&lt;/a&gt; waarbij Ruby geprogrammeerd wordt.&lt;/p&gt;

&lt;h2&gt;
  
  
  waar is Ruby populair?
&lt;/h2&gt;

&lt;p&gt;Is Ruby populair in jouw land? Hier zijn enkele gegevens over de populariteit van Ruby. Ruby is het populairst in deze landen:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Verenigde Staten&lt;/li&gt;
&lt;li&gt;China&lt;/li&gt;
&lt;li&gt;Brazilië&lt;/li&gt;
&lt;li&gt;India&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;De VS en China hebben ongeveer evenveel populariteit als China. In Europa is Ruby niet populair, in tegenstelling tot Amerika en Azië. Dus mocht je hierheen willen, dan heeft het zin om Ruby te leren ;)&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--6PNquC8H--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/br142lohjp9o7osdtx1p.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--6PNquC8H--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/br142lohjp9o7osdtx1p.png"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Meer over Ruby&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://ruby-lang.co/"&gt;Ruby tutorial&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://rubyonrails.org/"&gt;Ruby on Rails&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.ruby-lang.org/en/"&gt;Download Ruby&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>ruby</category>
      <category>rails</category>
    </item>
    <item>
      <title>Should I stop learning Ruby since it's no longer popular?</title>
      <dc:creator>briansole</dc:creator>
      <pubDate>Wed, 06 Nov 2019 16:11:54 +0000</pubDate>
      <link>https://dev.to/briansole/should-i-stop-learning-ruby-since-it-s-no-longer-popular-3ii</link>
      <guid>https://dev.to/briansole/should-i-stop-learning-ruby-since-it-s-no-longer-popular-3ii</guid>
      <description>&lt;p&gt;&lt;a href="https://rubyonrails.org/"&gt;Ruby (and Rails)&lt;/a&gt; is not as hyped as a some years ago. But, this does not mean that its no longer popular/used.&lt;/p&gt;

&lt;p&gt;The problem today is people want to learn one thing and then want to use it forever. Consider who is using Cobol or Fortran now. A programming language is only a tool.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--hb95TPZc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://upload.wikimedia.org/wikipedia/commons/thumb/6/62/Ruby_On_Rails_Logo.svg/220px-Ruby_On_Rails_Logo.svg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--hb95TPZc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://upload.wikimedia.org/wikipedia/commons/thumb/6/62/Ruby_On_Rails_Logo.svg/220px-Ruby_On_Rails_Logo.svg.png"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  is Ruby used today?
&lt;/h2&gt;

&lt;p&gt;Ruby is used by thousands of developers and companies, so it makes sense to use it. Existing systems in Ruby need to be maintained. This goes for any language.&lt;/p&gt;

&lt;p&gt;Consider WordPress, it's still used today and is a widely popular Content Management System (CMS). It's made in PHP over a decade or two ago. This needs to be maintained, even though PHP is not as popular as it once was.&lt;/p&gt;

&lt;p&gt;Just by taking a look at the &lt;a href="https://dev.to/t/ruby"&gt;Ruby section&lt;/a&gt; shows you that Ruby is still used and talked about. There are also &lt;a href="https://www.rubyjobs.com/"&gt;plenty of jobs&lt;/a&gt; that involve Ruby programming.&lt;/p&gt;

&lt;h2&gt;
  
  
  where is Ruby popular?
&lt;/h2&gt;

&lt;p&gt;Is Ruby popular in your country? Here is some data on Ruby popularity. Ruby is most popular in these countries:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;United States&lt;/li&gt;
&lt;li&gt;China&lt;/li&gt;
&lt;li&gt;Brazil&lt;/li&gt;
&lt;li&gt;India&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;US and China have about an equal rank in terms of popularity. In Europe Ruby is not popular, in contrast to the Americas and Asia. (data from similarweb)&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--6PNquC8H--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/br142lohjp9o7osdtx1p.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--6PNquC8H--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://thepracticaldev.s3.amazonaws.com/i/br142lohjp9o7osdtx1p.png"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;More on Ruby&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://ruby-lang.co/"&gt;Ruby tutorial&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://rubyonrails.org/"&gt;Ruby on Rails&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.ruby-lang.org/en/"&gt;Download Ruby&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>ruby</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
