<?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: Mince</title>
    <description>The latest articles on DEV Community by Mince (@mince).</description>
    <link>https://dev.to/mince</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%2F1119647%2F67a06cf3-56e0-4916-83b6-7e9f53e2c0bd.png</url>
      <title>DEV Community: Mince</title>
      <link>https://dev.to/mince</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mince"/>
    <language>en</language>
    <item>
      <title>I MADE A MOVIE APP THATS NOT IMDb CLONED</title>
      <dc:creator>Mince</dc:creator>
      <pubDate>Fri, 03 Apr 2026 13:08:35 +0000</pubDate>
      <link>https://dev.to/mince/i-am-making-a-movie-app-2862</link>
      <guid>https://dev.to/mince/i-am-making-a-movie-app-2862</guid>
      <description>&lt;p&gt;After a few years of tutorial hell and &lt;em&gt;"Maybe I can't do that"&lt;/em&gt; moments I finally started building a web app that I was determined to finish - &lt;strong&gt;'Cut'&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The idea
&lt;/h2&gt;

&lt;p&gt;The idea is pretty simple. You get recommended movies with the title, the poster, the synopsis, the trailer, the genres and the rating. Like this:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F93iqn32ko6dyk3o5q6gs.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F93iqn32ko6dyk3o5q6gs.png" alt="CUT" width="800" height="383"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You click arrow right if you like it and arrow left if you don't like it. You click arrow down if you're uninterested and just want to move on. You can hit 'w' if you want to save it to the watchlist (I will add a button soon). This is just a simple movie discovery app that I wanted to make, and I felt would tons of time mindlessly searching for movies as you have a personalized movie discovery app tailored for you. Well, you might have some questions, and I do have answers for them&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;_But the Ott platforms already do that right? _&lt;/strong&gt;&lt;br&gt;
Yeah, they do but they tend to only show you more recent movies and there's also a feature in my app to recommend movies based on your mood right now. And also, your Ott might get used by your friends, your family etc. and that doesn't allow for personalized selection and also the Otts only recommend movies from their catalog. So, I find my app pretty unique&lt;/p&gt;

&lt;p&gt;But let's address the elephant in the room, I am just an amateur developer who can't even call an Api properly, so I had some learning to do. But I was determined to finish this project. So, this is devlog - 1 of building "CUT".&lt;/p&gt;

&lt;p&gt;Note: I am going to build a rough working version without any accounts, databases and try to keep it simple because all of this is a learning process, but I still had to face some problems like building an &lt;strong&gt;algorithm&lt;/strong&gt; &lt;/p&gt;
&lt;h2&gt;
  
  
  STAGE 1: PLANNING
&lt;/h2&gt;

&lt;p&gt;Of course, I had to use an API to fetch such a huge number of movies, and I went with TMDb because it provides a generous 40 requests per minute which are more than enough for this prototype of an app. &lt;/p&gt;

&lt;p&gt;These are the features I wanted to ship in the first prototype:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;An infinite scrolling feed with an effective algorithm&lt;/li&gt;
&lt;li&gt;A watchlist with all the providers listed&lt;/li&gt;
&lt;li&gt;A mood system to pick a mood and get similar movies only for a certain time&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These are the features I am hoping to complete though I also have other ideas I want to implement later.&lt;/p&gt;
&lt;h2&gt;
  
  
  STAGE 2: THE ALGORITHM
&lt;/h2&gt;

&lt;p&gt;See, the algorithm is based on a simple idea, and I honestly thought wouldn't work very well. But to my surprise it genuinely giving picks I liked. See we have a ton of genres with values at the first&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;&lt;span class="na"&gt;Action&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="m"&gt;100&lt;/span&gt;
&lt;span class="na"&gt;Adventure&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="m"&gt;100&lt;/span&gt;
&lt;span class="na"&gt;Romance&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="m"&gt;100&lt;/span&gt;
&lt;span class="na"&gt;Animation&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="m"&gt;100&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;So, if you dislike or like a movie the values are increased and decreased. And we run rng and pick a random genre based on the weights so if you like a bunch of action movies, the weight of action genre increases, and you get more action movie but getting other genres is possible so you can discover all sorts of movies. Also, all the movies recommended are made sure to be popular, and have a minimum 7 rating. Also, we also often recommend local Korean, Japanese, Hindi etc... language movies. This simple algorithm worked really well (at least for me)&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkgastl6qg6tjavt9931g.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fkgastl6qg6tjavt9931g.png" alt="CUT" width="800" height="388"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The reason this worked well is because there are a lot of genres in TMDb. There are 23 genres and such a huge catalog allows for a tailored algorithm. &lt;/p&gt;

&lt;h2&gt;
  
  
  STAGE 3: DATA
&lt;/h2&gt;

&lt;p&gt;So, we have to store quite a bit of data for the app to work. The first and obvious thing is storing the algorithm values of a user. Also, all the shown movies because we shouldnt show the same movie again and again. We would also have to store the watchlist and such. I decided to use local storage. Okay... Okay... Let me explain myself&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;For those who dont know Local storage lets you store data directly in the browser so you don't lose your data until the user voluntarily clears it. Using local storage, we don't even need the users to sign up. But it's not on a server so we can't cross share the data between users or devices &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0ltq5ezop994ks954h18.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F0ltq5ezop994ks954h18.png" alt="Toy story" width="800" height="385"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;For a prototype, there's no need to have accounts or have multi-device support because let's be real, I don't think we are getting even 10 users, but hey you could use it once it releases. I also don't have the budget to make or rent servers or the time to learn SQL. I also didn't want to make it on firebase because that would increase the friction of making the app and I wanted to do all that if the app gets real users later on. And simply though, local storage gets the job done.&lt;/p&gt;

&lt;h2&gt;
  
  
  CONCLUSION
&lt;/h2&gt;

&lt;p&gt;So, I talked about how I completed making the algorithm, the resources I am using and how I am storing data. In the next devlog i am going talk about how i made the watchlist. I am also going to talk about the UI. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fsxkf1r1ivr08eti76qdb.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fsxkf1r1ivr08eti76qdb.png" alt="Watchlist" width="800" height="392"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Feel free to leave any suggestions, comments and critiques. Stay tuned and follow for the next devlog thats coming soon... (If this even does well)&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>showdev</category>
      <category>sideprojects</category>
      <category>webdev</category>
    </item>
    <item>
      <title>New post ig</title>
      <dc:creator>Mince</dc:creator>
      <pubDate>Sun, 23 Feb 2025 08:46:13 +0000</pubDate>
      <link>https://dev.to/mince/new-post-ig-483o</link>
      <guid>https://dev.to/mince/new-post-ig-483o</guid>
      <description>&lt;div class="ltag__link"&gt;
  &lt;a href="/mince" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1119647%2F67a06cf3-56e0-4916-83b6-7e9f53e2c0bd.png" alt="mince"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://dev.to/mince/top-3-productivity-tools-you-must-use-44fn" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;TOP 3 PRODUCTIVITY TOOLS YOU MUST USE 🤯&lt;/h2&gt;
      &lt;h3&gt;Mince ・ Feb 15 '25&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#programming&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#productivity&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#opensource&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#webdev&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
      <category>programming</category>
      <category>productivity</category>
      <category>opensource</category>
      <category>webdev</category>
    </item>
    <item>
      <title>This is so good</title>
      <dc:creator>Mince</dc:creator>
      <pubDate>Sat, 15 Feb 2025 15:02:26 +0000</pubDate>
      <link>https://dev.to/mince/this-is-so-good-1e9k</link>
      <guid>https://dev.to/mince/this-is-so-good-1e9k</guid>
      <description>&lt;div class="ltag__link"&gt;
  &lt;a href="/mince" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1119647%2F67a06cf3-56e0-4916-83b6-7e9f53e2c0bd.png" alt="mince"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://dev.to/mince/top-3-productivity-tools-you-must-use-44fn" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;TOP 3 PRODUCTIVITY TOOLS YOU MUST USE 🤯&lt;/h2&gt;
      &lt;h3&gt;Mince ・ Feb 15 '25&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#programming&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#productivity&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#opensource&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#webdev&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
      <category>programming</category>
      <category>productivity</category>
      <category>opensource</category>
      <category>webdev</category>
    </item>
    <item>
      <title>TOP 3 PRODUCTIVITY TOOLS YOU MUST USE 🤯</title>
      <dc:creator>Mince</dc:creator>
      <pubDate>Sat, 15 Feb 2025 13:25:08 +0000</pubDate>
      <link>https://dev.to/mince/top-3-productivity-tools-you-must-use-44fn</link>
      <guid>https://dev.to/mince/top-3-productivity-tools-you-must-use-44fn</guid>
      <description>&lt;p&gt;Lets say youre working on a huge project and you need to be as productive as possible in order to make the absolute most out of your time. Here are three productivity tools that are absolute masterpieces when it comes to productivity while coding&lt;/p&gt;

&lt;h2&gt;
  
  
  GitHub Co-pilot
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5yfbry9ve4krsdntky48.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F5yfbry9ve4krsdntky48.jpg" alt="GitHub" width="310" height="163"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;GitHub co-pilot is one of the most productive when it comes to AI-code companions. Sure! I have tried a bunch of different code AIs in the past, that was when GitHub co-pilot wasn't free. Now, GitHub copilot free version is enough for most programmers. Why? It's the same as others. First things, it can recommend directly from other GitHub repos making it more powerful and intelligent. Next, the inline chat and a bunch of features that GitHub has built that are not there in other AI assistants are absolutely masterpieces. I think you should definitely try it. Its free and awesome. &lt;/p&gt;

&lt;p&gt;Usefulness: ⭐⭐⭐⭐&lt;/p&gt;

&lt;h2&gt;
  
  
  Notion
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frtdf5zdeyeigem72z76k.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frtdf5zdeyeigem72z76k.png" alt="Notion" width="300" height="168"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Notion has a nice UI and can make project planning and idea laying out easier, clean and most importantly productive. We can call in a team onto notion and they can all together plan and layout the different ideas. Also, they can pick through the best ideas, layout the to-dos and over ally Notion makes it extremely awesome to plan and execute anything&lt;/p&gt;

&lt;p&gt;Usefulness: ⭐⭐⭐⭐&lt;/p&gt;

&lt;h2&gt;
  
  
  Trello
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzfjvlemvx1hlz8071128.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzfjvlemvx1hlz8071128.jpg" alt="Kanban board" width="284" height="177"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Trello is another tool that makes the project build process  more interactive, progressive and productive. It's basically a kanban board. What's a kanban board? A kanban board is simply a bunch of lists through which you can drag to-dos or more specifically tasks. This makes it easier to track what features you will have to work, which features you have started working on and which features are already done. Many people have used it, I used it, and it works. Try a kanban board today!! My pick would be Trello because that's the first one I found. You can also try Miro &lt;/p&gt;

&lt;p&gt;Usefulness: ⭐⭐⭐⭐⭐&lt;/p&gt;

&lt;h2&gt;
  
  
  Outro
&lt;/h2&gt;

&lt;p&gt;Thanks for making it till here, have a good bug less debugging day. One thing: I am definitely not AI. If you think I am AI, your AI 😂😂&lt;/p&gt;

</description>
      <category>programming</category>
      <category>productivity</category>
      <category>opensource</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Guys part 3 is out!!!! 🥳🥳</title>
      <dc:creator>Mince</dc:creator>
      <pubDate>Wed, 12 Feb 2025 12:51:29 +0000</pubDate>
      <link>https://dev.to/mince/guys-part-3-is-out-42c2</link>
      <guid>https://dev.to/mince/guys-part-3-is-out-42c2</guid>
      <description>&lt;div class="ltag__link"&gt;
  &lt;a href="/mince" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1119647%2F67a06cf3-56e0-4916-83b6-7e9f53e2c0bd.png" alt="mince"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://dev.to/mince/what-technologies-do-big-companies-use-part-3-3e0i" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;WHAT TECHNOLOGIES DO BIG COMPANIES USE 🤔 PART 3&lt;/h2&gt;
      &lt;h3&gt;Mince ・ Feb 12 '25&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#webdev&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#programming&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#javascript&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#beginners&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
      <category>webdev</category>
      <category>programming</category>
      <category>javascript</category>
      <category>beginners</category>
    </item>
    <item>
      <title>WHAT TECHNOLOGIES DO BIG COMPANIES USE 🤔 PART 3</title>
      <dc:creator>Mince</dc:creator>
      <pubDate>Wed, 12 Feb 2025 12:50:57 +0000</pubDate>
      <link>https://dev.to/mince/what-technologies-do-big-companies-use-part-3-3e0i</link>
      <guid>https://dev.to/mince/what-technologies-do-big-companies-use-part-3-3e0i</guid>
      <description>&lt;p&gt;We're back into this series guys. This is the most beloved series in my profile ever. So here's part 3!!! &lt;/p&gt;

&lt;h2&gt;
  
  
  Dev.to
&lt;/h2&gt;

&lt;p&gt;So it seems like dev community was built on top of Forem which is used to empower communities... What's forem made  of? &lt;/p&gt;

&lt;h2&gt;
  
  
  Forem
&lt;/h2&gt;

&lt;p&gt;So, forem was mode of 58% ruby and 29% javascript. It's open sourced so you can check it for yourself&lt;/p&gt;

&lt;h2&gt;
  
  
  TikTok
&lt;/h2&gt;

&lt;p&gt;So tik tok uses a variety of programming languages with the most prominent being C, Java and Swift. Comment if you think tik tok will get banned&lt;/p&gt;

&lt;h2&gt;
  
  
  Windows
&lt;/h2&gt;

&lt;p&gt;The operating system that the whole world uses was built using C!? Yeah, it was basically the most perfect programming language at the time so XD &lt;/p&gt;

&lt;h2&gt;
  
  
  Mac OS
&lt;/h2&gt;

&lt;p&gt;What about MacOs, mac os also uses C so nothing new... &lt;/p&gt;

&lt;h2&gt;
  
  
  Android
&lt;/h2&gt;

&lt;p&gt;Android was not built with C , it was built using JAVA. I thought it was C three times in a row but no! &lt;/p&gt;

&lt;h2&gt;
  
  
  IOS
&lt;/h2&gt;

&lt;p&gt;Similarly IOS also should be made with JAVA right? Wrong It is C again&lt;/p&gt;

&lt;p&gt;This time, we say 8 different softwares. Comment what I should do next. This was fun and the longest in the series yet, On this note bye!! &lt;/p&gt;

&lt;p&gt;Guys follow meh on X: Mince_2328&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>javascript</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Do you accept that we shouldn't care of followers in dev.to, They are all bots</title>
      <dc:creator>Mince</dc:creator>
      <pubDate>Wed, 12 Feb 2025 09:19:28 +0000</pubDate>
      <link>https://dev.to/mince/do-you-accept-that-we-shouldnt-care-of-followers-in-devto-they-are-all-bots-2mc</link>
      <guid>https://dev.to/mince/do-you-accept-that-we-shouldnt-care-of-followers-in-devto-they-are-all-bots-2mc</guid>
      <description></description>
    </item>
    <item>
      <title>Do you want some tips for designing</title>
      <dc:creator>Mince</dc:creator>
      <pubDate>Tue, 11 Feb 2025 15:09:24 +0000</pubDate>
      <link>https://dev.to/mince/do-you-want-some-tips-for-designing-30g7</link>
      <guid>https://dev.to/mince/do-you-want-some-tips-for-designing-30g7</guid>
      <description></description>
    </item>
    <item>
      <title>Part 3 coming tomorrow</title>
      <dc:creator>Mince</dc:creator>
      <pubDate>Tue, 11 Feb 2025 14:58:08 +0000</pubDate>
      <link>https://dev.to/mince/part-3-coming-tomorrow-2d9m</link>
      <guid>https://dev.to/mince/part-3-coming-tomorrow-2d9m</guid>
      <description>&lt;div class="ltag__link"&gt;
  &lt;a href="/mince" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1119647%2F67a06cf3-56e0-4916-83b6-7e9f53e2c0bd.png" alt="mince"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://dev.to/mince/what-technologies-do-big-companies-use-part-2-4o8d" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;WHAT TECHNOLOGIES DO BIG COMPANIES USE 🤔 PART 2&lt;/h2&gt;
      &lt;h3&gt;Mince ・ Apr 27 '24&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#javascript&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#webdev&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#beginners&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#programming&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>beginners</category>
      <category>programming</category>
    </item>
    <item>
      <title>Did you the difference between</title>
      <dc:creator>Mince</dc:creator>
      <pubDate>Tue, 11 Feb 2025 09:05:15 +0000</pubDate>
      <link>https://dev.to/mince/did-you-the-difference-between-14lg</link>
      <guid>https://dev.to/mince/did-you-the-difference-between-14lg</guid>
      <description>&lt;div class="ltag__link"&gt;
  &lt;a href="/mince" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1119647%2F67a06cf3-56e0-4916-83b6-7e9f53e2c0bd.png" alt="mince"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://dev.to/mince/library-vs-framework-17i7" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;LIBRARY VS FRAMEWORK&lt;/h2&gt;
      &lt;h3&gt;Mince ・ Feb 11 '25&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#programming&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#beginners&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#tutorial&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#python&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
      <category>programming</category>
      <category>beginners</category>
      <category>tutorial</category>
      <category>python</category>
    </item>
    <item>
      <title>This was fun...</title>
      <dc:creator>Mince</dc:creator>
      <pubDate>Tue, 11 Feb 2025 09:04:33 +0000</pubDate>
      <link>https://dev.to/mince/this-was-fun-77m</link>
      <guid>https://dev.to/mince/this-was-fun-77m</guid>
      <description>&lt;div class="ltag__link"&gt;
  &lt;a href="/mince" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1119647%2F67a06cf3-56e0-4916-83b6-7e9f53e2c0bd.png" alt="mince"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://dev.to/mince/library-vs-framework-17i7" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;LIBRARY VS FRAMEWORK&lt;/h2&gt;
      &lt;h3&gt;Mince ・ Feb 11 '25&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#programming&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#beginners&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#tutorial&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#python&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
      <category>programming</category>
      <category>beginners</category>
      <category>tutorial</category>
      <category>python</category>
    </item>
    <item>
      <title>A quick rundown....</title>
      <dc:creator>Mince</dc:creator>
      <pubDate>Tue, 11 Feb 2025 04:40:05 +0000</pubDate>
      <link>https://dev.to/mince/a-quick-rundown-560e</link>
      <guid>https://dev.to/mince/a-quick-rundown-560e</guid>
      <description>&lt;div class="ltag__link"&gt;
  &lt;a href="/mince" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__pic"&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1119647%2F67a06cf3-56e0-4916-83b6-7e9f53e2c0bd.png" alt="mince"&gt;
    &lt;/div&gt;
  &lt;/a&gt;
  &lt;a href="https://dev.to/mince/library-vs-framework-17i7" class="ltag__link__link"&gt;
    &lt;div class="ltag__link__content"&gt;
      &lt;h2&gt;LIBRARY VS FRAMEWORK&lt;/h2&gt;
      &lt;h3&gt;Mince ・ Feb 11 '25&lt;/h3&gt;
      &lt;div class="ltag__link__taglist"&gt;
        &lt;span class="ltag__link__tag"&gt;#programming&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#beginners&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#tutorial&lt;/span&gt;
        &lt;span class="ltag__link__tag"&gt;#python&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/a&gt;
&lt;/div&gt;


</description>
      <category>programming</category>
      <category>beginners</category>
      <category>tutorial</category>
      <category>python</category>
    </item>
  </channel>
</rss>
