<?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: David R</title>
    <description>The latest articles on DEV Community by David R (@drodol).</description>
    <link>https://dev.to/drodol</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%2F46065%2F3c519d9e-c31b-4054-a6d3-1c01118d825d.jpeg</url>
      <title>DEV Community: David R</title>
      <link>https://dev.to/drodol</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/drodol"/>
    <language>en</language>
    <item>
      <title>I'm building something - Ep.2</title>
      <dc:creator>David R</dc:creator>
      <pubDate>Sun, 28 Nov 2021 18:01:55 +0000</pubDate>
      <link>https://dev.to/drodol/im-building-something-ep2-1hi8</link>
      <guid>https://dev.to/drodol/im-building-something-ep2-1hi8</guid>
      <description>&lt;p&gt;I got busy right after the first post and now I have a functional prototype. This is what you see when you visit the "homepage" index:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--d66HZRl6--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://www.webmuffins.com/content/images/2021/11/image.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--d66HZRl6--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://www.webmuffins.com/content/images/2021/11/image.png" alt="Categories - Index" width="800" height="690"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I know, it looks like crap. But hey, I didn't say it was going to be pretty 😜&lt;/p&gt;

&lt;p&gt;The beauty of Rails, and its scaffolding generator, is that with just a few lines of code, you can have a fully functional -not pretty- but fully functional web application, that does all you need it to: CRUD! Create, Read, Update, and Destroy.&lt;/p&gt;

&lt;p&gt;Right now, if I want to add or view my listings, I have to go to a listing index that looks like this (by default, again, thanks to the scaffold generator).&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--j1PQetFS--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://www.webmuffins.com/content/images/2021/11/image-1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--j1PQetFS--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://www.webmuffins.com/content/images/2021/11/image-1.png" alt="Listings - Index" width="800" height="373"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This is a list of all listings and their attributes. The category attribute reflects the category ID, not the category title or name, so that has to be changed so it's more descriptive.&lt;/p&gt;

&lt;p&gt;So, a few things to fix:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Clicking each category will show its contents, i.e. the listings it contains.&lt;/li&gt;
&lt;li&gt;When creating a listing and adding it to a Category, the category selection should be the ´category.title´ not the ´category.id´&lt;/li&gt;
&lt;li&gt;Eliminate the unnecessary scaffold code. This includes things like unnecessary CRUD actions, unnecessary views, etc.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;I played a bit with Whimsical (which has amazing UI/UX, by the way) and came up with this:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--9FJopkNU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://www.webmuffins.com/content/images/2021/11/image-5.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--9FJopkNU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://www.webmuffins.com/content/images/2021/11/image-5.png" alt="Whimsical mockup" width="800" height="820"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I'm not sure if the site will end up looking like that, but it's a start.&lt;/p&gt;

&lt;p&gt;In the next post I'll tackle the punch list I wrote above and try my hand at coding some custom css to make it a bit more appealing.&lt;/p&gt;

&lt;p&gt;This was originally posted on my blog: &lt;a href="//www.webmuffins.com"&gt;WebMuffins.com&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>beginners</category>
      <category>rails</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>I am building something...</title>
      <dc:creator>David R</dc:creator>
      <pubDate>Wed, 24 Nov 2021 09:51:19 +0000</pubDate>
      <link>https://dev.to/drodol/i-am-building-something-19ni</link>
      <guid>https://dev.to/drodol/i-am-building-something-19ni</guid>
      <description>&lt;p&gt;So, for a while I have tried to get serious about coding. I've dabbled with tutorials, books, video series, courses, you name it. Nothing's stuck. But now, I've decided to put myself out there and build my first public web app!&lt;/p&gt;

&lt;h2&gt;
  
  
  The problem to solve
&lt;/h2&gt;

&lt;p&gt;As an expat in Denmark, I have struggled (and have seen others struggle, too) with knowing about the names of businesses, for instance, what are the names of supermarkets in Denmark? (this is an easy one, I know) What about hardware stores? Pet shops?&lt;/p&gt;

&lt;h2&gt;
  
  
  Enter DK 🇩🇰 for Expats
&lt;/h2&gt;

&lt;p&gt;I have had this idea in my head for a long time, but never really executed. I am mostly looking to help others, and build something that can be of value. My main motivation is not to make any money out of it, but to develop my skills and build something that others can benefit from.&lt;/p&gt;

&lt;p&gt;The site will feature a collection of businesses in Denmark, for different categories. Users will be able to go into the different categories and from there find out how businesses in that category are named in Denmark.&lt;/p&gt;

&lt;p&gt;For example, going into the Supermarket category will show:&lt;br&gt;
*Bilka&lt;br&gt;
*Netto&lt;br&gt;
*Lidl&lt;/p&gt;

&lt;p&gt;By going to the Mobile Network Providers category, users will see:&lt;br&gt;
*3&lt;br&gt;
*Lebara&lt;br&gt;
*TDC&lt;/p&gt;

&lt;p&gt;You get the point. &lt;/p&gt;

&lt;p&gt;At the beginning, the site will be populated with the stuff I know and can find online. But the idea is to crowdsource it so other people can contribute to it and make it better.&lt;/p&gt;

&lt;h1&gt;
  
  
  BuildingInPublic
&lt;/h1&gt;

&lt;p&gt;I'd like to build in public. This will not only keep me accountable, but will allow me to get feedback on the design and maybe even help for fellow makers. &lt;/p&gt;

&lt;p&gt;I will post my weekly progress here, but I will share more frequent updates on my twitter &lt;a href="https://twitter.com/drodol" rel="noopener noreferrer"&gt;@drodol&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;I will be building this with Ruby on Rails and I will try to use TailwindCSS .&lt;/p&gt;

&lt;p&gt;Stay tuned!&lt;/p&gt;

&lt;p&gt;Content originally posted at: &lt;a href="//www.webmuffins.com"&gt;webmuffins.com&lt;/a&gt;&lt;/p&gt;

</description>
      <category>rails</category>
      <category>beginners</category>
      <category>ruby</category>
      <category>devjournal</category>
    </item>
  </channel>
</rss>
