<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <id/>
    <title>Idiomatic Programmers</title>
    <updated>2025-03-12T11:22:07.776Z</updated>
    <generator>https://github.com/nuxt-community/feed-module</generator>
    <link rel="alternate" href="https://idiomaticprogrammers.com"/>
    <subtitle>A place where you can get high quality tutorials, text based courses and tips related to Python, Django, DRF, Machine Learning and Computer Science</subtitle>
    <entry>
        <title type="html"><![CDATA[Hooked - How Habit-Forming Products Capture Our Attention]]></title>
        <id>https://idiomaticprogrammers.com/post/hooked-how-habit-forming-products-capture-our-attention/</id>
        <link href="https://idiomaticprogrammers.com/post/hooked-how-habit-forming-products-capture-our-attention/"/>
        <updated>2025-02-04T15:05:26.129Z</updated>
        <summary type="html"><![CDATA[Nir Eyal's Hooked dives into the psychology behind the apps we can't seem to put down—from Facebook to Instagram and even Google.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Basic web server implementation using inbuilt python tools]]></title>
        <id>https://idiomaticprogrammers.com/post/basic-web-server-implementation-using-inbuilt-python-tools/</id>
        <link href="https://idiomaticprogrammers.com/post/basic-web-server-implementation-using-inbuilt-python-tools/"/>
        <updated>2024-04-03T02:20:31.204Z</updated>
        <summary type="html"><![CDATA[In my previous article, I talked about implementing the HTTP protocol over a standard TCP socket. Today, I will be using few libraries available in python that implements HTTP and try to build something like Flask web framework.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Create HTTP server from Scratch]]></title>
        <id>https://idiomaticprogrammers.com/post/create-http-server-from-scratch/</id>
        <link href="https://idiomaticprogrammers.com/post/create-http-server-from-scratch/"/>
        <updated>2024-03-20T15:47:36.546Z</updated>
        <summary type="html"><![CDATA[While testing NGINX config files, my curiosity about its comprehension led me to explore the mechanics of HTTP, discovering its simple rules, inspiring me to explain what I learned in a blog post and construct a basic HTTP server from scratch in Python.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Adding Full Text Search to Your Django App with django-watson]]></title>
        <id>https://idiomaticprogrammers.com/post/django-watson-full-text-search-guide/</id>
        <link href="https://idiomaticprogrammers.com/post/django-watson-full-text-search-guide/"/>
        <updated>2023-11-04T14:08:43.235Z</updated>
        <summary type="html"><![CDATA[Learn how to supercharge your Django app with full-text search using Django-Watson. Dive deep into Postgres magic and boost search functionality.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Introduction to C++ Part 1]]></title>
        <id>https://idiomaticprogrammers.com/post/introduction-to-c-part-1/</id>
        <link href="https://idiomaticprogrammers.com/post/introduction-to-c-part-1/"/>
        <updated>2023-07-07T08:59:08.765Z</updated>
        <summary type="html"><![CDATA[In this article, we will explore the core elements of C++, including the Hello World program, data types and variables, operators and expressions, control structures, and functions. By the end of this guide, you will have a solid foundation in C++ syntax and be able to write simple programs.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Ultimate Redis Cheatsheet]]></title>
        <id>https://idiomaticprogrammers.com/post/ultimate-redis-cheatsheet/</id>
        <link href="https://idiomaticprogrammers.com/post/ultimate-redis-cheatsheet/"/>
        <updated>2023-06-21T08:50:37.073Z</updated>
        <summary type="html"><![CDATA[This post is a collection of the most common commands used to manage Redis instances.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Google I/O 2023: The Year of AI]]></title>
        <id>https://idiomaticprogrammers.com/post/google-i-o-2023-the-year-of-ai/</id>
        <link href="https://idiomaticprogrammers.com/post/google-i-o-2023-the-year-of-ai/"/>
        <updated>2023-05-13T07:26:34.139Z</updated>
        <summary type="html"><![CDATA[The announcements at I/O 2023 will have a significant impact on the tech industry, and they will help Google to continue to grow its business in the years to come.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Hitchhiker's Guide to mastering ChatGPT]]></title>
        <id>https://idiomaticprogrammers.com/post/prompt-engineering/</id>
        <link href="https://idiomaticprogrammers.com/post/prompt-engineering/"/>
        <updated>2023-05-05T16:27:15.497Z</updated>
        <summary type="html"><![CDATA[Learn how prompt engineering is revolutionizing AI applications and enabling machines to understand natural language and perform automated reasoning.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Celery Alternative for Django - Huey]]></title>
        <id>https://idiomaticprogrammers.com/post/celery-alternative-for-django-huey/</id>
        <link href="https://idiomaticprogrammers.com/post/celery-alternative-for-django-huey/"/>
        <updated>2022-05-08T13:56:49.557Z</updated>
        <summary type="html"><![CDATA[Trying out a lightweight asynchronous task queue as an alternative to Celery with Django]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Introduction to Three js - Hello World]]></title>
        <id>https://idiomaticprogrammers.com/post/introduction-to-three-js-hello-world/</id>
        <link href="https://idiomaticprogrammers.com/post/introduction-to-three-js-hello-world/"/>
        <updated>2021-07-09T04:22:00.000Z</updated>
        <summary type="html"><![CDATA[Three JS is a javascript library, an implementation of WebGL used to embed 3D elements on a Website.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[How to download Pandas Dataframe as Excel or CSV in Django?]]></title>
        <id>https://idiomaticprogrammers.com/post/how-to-download-pandas-dataframe-as-excel-or-csv-in-django-/</id>
        <link href="https://idiomaticprogrammers.com/post/how-to-download-pandas-dataframe-as-excel-or-csv-in-django-/"/>
        <updated>2021-03-27T03:00:00.000Z</updated>
        <summary type="html"><![CDATA[Implementation of downloading a file using Django and Pandas with information about HTTP Response.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Understanding and Implementing UNet using Pytorch]]></title>
        <id>https://idiomaticprogrammers.com/post/unet-architecture/</id>
        <link href="https://idiomaticprogrammers.com/post/unet-architecture/"/>
        <updated>2021-02-26T20:00:00.000Z</updated>
        <summary type="html"><![CDATA[This code provides a basic understanding of UNet architecture and its application in Self Driving cars, Cinematography and Medical Imaging along with complete code in Pytorch.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Generative Adversarial Networks]]></title>
        <id>https://idiomaticprogrammers.com/post/generative-adversarial-networks/</id>
        <link href="https://idiomaticprogrammers.com/post/generative-adversarial-networks/"/>
        <updated>2021-02-11T08:56:15.339Z</updated>
        <summary type="html"><![CDATA[We give a brief introduction to GANs and code up a simple GAN as described in the original paper by Ian Goodfellow.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[How to implement Auto Expiring Token in Django Rest Framework]]></title>
        <id>https://idiomaticprogrammers.com/post/how-to-implement-auto-expiring-token-in-django-rest-framework/</id>
        <link href="https://idiomaticprogrammers.com/post/how-to-implement-auto-expiring-token-in-django-rest-framework/"/>
        <updated>2021-01-17T03:00:00.000Z</updated>
        <summary type="html"><![CDATA[Describes how to implement custom token model and authentication backend in Django Rest Framework]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[How ISP blocks (throttles) VPN?]]></title>
        <id>https://idiomaticprogrammers.com/post/how-isp-blocks-vpn/</id>
        <link href="https://idiomaticprogrammers.com/post/how-isp-blocks-vpn/"/>
        <updated>2020-11-30T17:24:30.095Z</updated>
        <summary type="html"><![CDATA[This post gives a brief understanding of how an ISP can detect and block a VPN from its network.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Django in Production - III]]></title>
        <id>https://idiomaticprogrammers.com/post/django-in-production-iii/</id>
        <link href="https://idiomaticprogrammers.com/post/django-in-production-iii/"/>
        <updated>2020-11-08T22:25:35.000Z</updated>
        <summary type="html"><![CDATA[Third part of the series covering how to get your django project into production]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Road to Machine Learning Engineer]]></title>
        <id>https://idiomaticprogrammers.com/post/road-to-machine-learning-engineer/</id>
        <link href="https://idiomaticprogrammers.com/post/road-to-machine-learning-engineer/"/>
        <updated>2020-10-29T20:00:00.000Z</updated>
        <summary type="html"><![CDATA[What is Deep Learning? What are the Limitation to AI? How an AI model learns. Learn all about these in this post.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[5 techniques to Idiomatic Python (Loops)]]></title>
        <id>https://idiomaticprogrammers.com/post/idiomatic-python-programming/</id>
        <link href="https://idiomaticprogrammers.com/post/idiomatic-python-programming/"/>
        <updated>2020-08-21T06:44:53.210Z</updated>
        <summary type="html"><![CDATA[In this post, you'll see 5 ways you can make your python loops more idiomatic, run faster and more memory efficient.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Zero Downtime Deployments With Supervisor]]></title>
        <id>https://idiomaticprogrammers.com/post/zero-downtime-deployments-with-supervisor/</id>
        <link href="https://idiomaticprogrammers.com/post/zero-downtime-deployments-with-supervisor/"/>
        <updated>2020-08-12T15:28:47.000Z</updated>
        <summary type="html"><![CDATA[Describes a trick to perform zero downtime deployments using supervisor]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Perceptrons]]></title>
        <id>https://idiomaticprogrammers.com/post/perceptrons/</id>
        <link href="https://idiomaticprogrammers.com/post/perceptrons/"/>
        <updated>2020-08-12T10:21:54.668Z</updated>
        <summary type="html"><![CDATA[In this blog, we will discuss in depth about the concept of Perceptrons, The atom of Neural Networks.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Machine Learning – in a nutshell]]></title>
        <id>https://idiomaticprogrammers.com/post/machine-learning-in-a-nutshell/</id>
        <link href="https://idiomaticprogrammers.com/post/machine-learning-in-a-nutshell/"/>
        <updated>2020-08-12T10:08:20.495Z</updated>
        <summary type="html"><![CDATA[Machine learning is the way that makes your smartphones “smart”]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Fixing Up Permissions After Data Migration in Django]]></title>
        <id>https://idiomaticprogrammers.com/post/fixing-up-permissions-after-data-migration-in-django/</id>
        <link href="https://idiomaticprogrammers.com/post/fixing-up-permissions-after-data-migration-in-django/"/>
        <updated>2020-08-11T14:06:07.000Z</updated>
        <summary type="html"><![CDATA[Find out how I fixed my permissions after I imported my data]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Telegram Trivia Bot]]></title>
        <id>https://idiomaticprogrammers.com/post/telegram-trivia-bot/</id>
        <link href="https://idiomaticprogrammers.com/post/telegram-trivia-bot/"/>
        <updated>2020-08-09T11:30:57.792Z</updated>
        <summary type="html"><![CDATA[In this post, I go through the process of building a Trivia chatbot on Telegram.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Reverse Engineering Netflix Falcor API]]></title>
        <id>https://idiomaticprogrammers.com/post/reverse-engineering-netflix-api/</id>
        <link href="https://idiomaticprogrammers.com/post/reverse-engineering-netflix-api/"/>
        <updated>2020-08-04T21:23:48.000Z</updated>
        <summary type="html"><![CDATA[Fetching TV shows and movies metadata from Netflix]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Updating Python Packages]]></title>
        <id>https://idiomaticprogrammers.com/post/updating-python-packages/</id>
        <link href="https://idiomaticprogrammers.com/post/updating-python-packages/"/>
        <updated>2020-07-12T09:48:05.000Z</updated>
        <summary type="html"><![CDATA[Find out about outdated python packages on your system.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Introduction to Git (Part 1)]]></title>
        <id>https://idiomaticprogrammers.com/post/introduction-to-git-part-1/</id>
        <link href="https://idiomaticprogrammers.com/post/introduction-to-git-part-1/"/>
        <updated>2020-07-10T04:54:24.184Z</updated>
        <summary type="html"><![CDATA[This post outlines a brief history of Git, why it is used, its features and How to install Git in Mac, Windows and Linux.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[How to save Base64 encoded image to Django ImageField?]]></title>
        <id>https://idiomaticprogrammers.com/post/how-to-save-base64-encoded-image-to-django-imagefield/</id>
        <link href="https://idiomaticprogrammers.com/post/how-to-save-base64-encoded-image-to-django-imagefield/"/>
        <updated>2020-07-07T12:47:50.876Z</updated>
        <summary type="html"><![CDATA[In this blog, I will show you how to convert B64 encoded image to Django ImageField object.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Custom Response Header in Django]]></title>
        <id>https://idiomaticprogrammers.com/post/custom-response-header-in-django/</id>
        <link href="https://idiomaticprogrammers.com/post/custom-response-header-in-django/"/>
        <updated>2020-07-06T13:41:30.751Z</updated>
        <summary type="html"><![CDATA[In this post, I'll be showing how you can add custom header to response in Django.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Django in Production - II]]></title>
        <id>https://idiomaticprogrammers.com/post/django-in-production-part-2/</id>
        <link href="https://idiomaticprogrammers.com/post/django-in-production-part-2/"/>
        <updated>2020-06-20T03:00:00.000Z</updated>
        <summary type="html"><![CDATA[Second part of the series covering how to get your django project into production]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Django in Production - I]]></title>
        <id>https://idiomaticprogrammers.com/post/django-in-production/</id>
        <link href="https://idiomaticprogrammers.com/post/django-in-production/"/>
        <updated>2020-06-18T03:00:00.000Z</updated>
        <summary type="html"><![CDATA[Get your Django App ready for production]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Array – Data Structure]]></title>
        <id>https://idiomaticprogrammers.com/post/arrays-data-structure/</id>
        <link href="https://idiomaticprogrammers.com/post/arrays-data-structure/"/>
        <updated>2020-06-17T10:54:01.511Z</updated>
        <summary type="html"><![CDATA[Array, one of the fundamental Data Structure.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[PHP for Beginners]]></title>
        <id>https://idiomaticprogrammers.com/post/php-for-beginners/</id>
        <link href="https://idiomaticprogrammers.com/post/php-for-beginners/"/>
        <updated>2020-06-16T13:11:39.448Z</updated>
        <summary type="html"><![CDATA[In this blog, I'll go through some basic concepts of PHP language]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[How to become a killer Web Developer]]></title>
        <id>https://idiomaticprogrammers.com/post/how-to-become-a-killer-web-developer/</id>
        <link href="https://idiomaticprogrammers.com/post/how-to-become-a-killer-web-developer/"/>
        <updated>2020-06-08T11:11:59.049Z</updated>
        <summary type="html"><![CDATA[I will talk about the meaning of “Web Development” to me and how you can improve and enhance your web developing skills.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Are We Living in a Simulation]]></title>
        <id>https://idiomaticprogrammers.com/post/are-we-living-in-a-simulation/</id>
        <link href="https://idiomaticprogrammers.com/post/are-we-living-in-a-simulation/"/>
        <updated>2020-05-26T02:07:12.000Z</updated>
        <summary type="html"><![CDATA[In this post, I try to explore this thought by citing various examples that we humans do to simulate different senses.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Fundamentals of Android Development]]></title>
        <id>https://idiomaticprogrammers.com/post/fundamentals-of-android-development/</id>
        <link href="https://idiomaticprogrammers.com/post/fundamentals-of-android-development/"/>
        <updated>2020-05-20T14:08:43.235Z</updated>
        <summary type="html"><![CDATA[These notes are taken from official [android developer documentation](https://developer.android.com/docs/).]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[How Anime Shaped My Personality]]></title>
        <id>https://idiomaticprogrammers.com/post/how-anime-shaped-my-personality/</id>
        <link href="https://idiomaticprogrammers.com/post/how-anime-shaped-my-personality/"/>
        <updated>2020-04-21T20:45:37.000Z</updated>
        <summary type="html"><![CDATA[I am very much influenced by Japanese Animation shows and movies, this post is me explaining how Anime has been a huge contributor to what my personality and interests are today.

NOTE: This post is not related to Programming.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Python for beginners (Part 2)]]></title>
        <id>https://idiomaticprogrammers.com/post/python-for-beginners-part-2/</id>
        <link href="https://idiomaticprogrammers.com/post/python-for-beginners-part-2/"/>
        <updated>2020-04-08T12:45:02.388Z</updated>
        <summary type="html"><![CDATA[Learn how to control the flow of program execution (if…else, loops, etc.), functions, Object-Oriented Programming, different usage and future of the language in the programming world.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Python for beginners (Part 1)]]></title>
        <id>https://idiomaticprogrammers.com/post/python-for-beginners-part-1/</id>
        <link href="https://idiomaticprogrammers.com/post/python-for-beginners-part-1/"/>
        <updated>2020-04-08T12:21:58.770Z</updated>
        <summary type="html"><![CDATA[This post will give you an overview of python language, how to set it up and run python scripts on your machine.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[What exactly is Big O notation?]]></title>
        <id>https://idiomaticprogrammers.com/post/what-exactly-is-big-o-notation/</id>
        <link href="https://idiomaticprogrammers.com/post/what-exactly-is-big-o-notation/"/>
        <updated>2020-01-06T12:12:02.757Z</updated>
        <summary type="html"><![CDATA[In this post, I talk about Big O notation and how it is helpful in determining the efficiency of an algorithm.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Quantum Programming 101]]></title>
        <id>https://idiomaticprogrammers.com/post/quantum-programming-101/</id>
        <link href="https://idiomaticprogrammers.com/post/quantum-programming-101/"/>
        <updated>2019-12-29T03:00:00.000Z</updated>
        <summary type="html"><![CDATA[We have a task, make something accurate and reliable out of something that is fundamentally chaotic.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Adding Tags Field to Your Django App]]></title>
        <id>https://idiomaticprogrammers.com/post/adding-tags-field-to-your-django-app/</id>
        <link href="https://idiomaticprogrammers.com/post/adding-tags-field-to-your-django-app/"/>
        <updated>2019-12-28T03:00:00.000Z</updated>
        <summary type="html"><![CDATA[A detailed post describing how to add tagging functionality to your django app]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Take advantage of your procrastination]]></title>
        <id>https://idiomaticprogrammers.com/post/procrastinate-on-purpose/</id>
        <link href="https://idiomaticprogrammers.com/post/procrastinate-on-purpose/"/>
        <updated>2019-12-27T20:54:15.000Z</updated>
        <summary type="html"><![CDATA[This short post is about Rori Vaden's book: Procrastinate of Purpose, which talks about the ways you can take advantage of your procrastination problem.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[How to Write Good Code]]></title>
        <id>https://idiomaticprogrammers.com/post/how-to-write-good-code/</id>
        <link href="https://idiomaticprogrammers.com/post/how-to-write-good-code/"/>
        <updated>2019-12-26T21:01:52.000Z</updated>
        <summary type="html"><![CDATA[There are two ways to write any code, the one that works and then there is the right way.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Why Should I Care About Quantum Computers]]></title>
        <id>https://idiomaticprogrammers.com/post/why-should-I-care-about-quantum-computers/</id>
        <link href="https://idiomaticprogrammers.com/post/why-should-I-care-about-quantum-computers/"/>
        <updated>2019-12-24T21:09:36.000Z</updated>
        <summary type="html"><![CDATA[Quantum computing will move business, science, and government forward in unprecedented ways by solving problems that are too complex for today’s computational systems.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Scrape Data From Javascript Rendered Sites]]></title>
        <id>https://idiomaticprogrammers.com/post/scrape-data-from-js-rendered-sites/</id>
        <link href="https://idiomaticprogrammers.com/post/scrape-data-from-js-rendered-sites/"/>
        <updated>2019-12-20T21:15:00.000Z</updated>
        <summary type="html"><![CDATA[Learn to use Selenium to scrape data from Javascript rendered sites.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Tips to Speed Up Your Website]]></title>
        <id>https://idiomaticprogrammers.com/post/tips-to-speed-up-your-website/</id>
        <link href="https://idiomaticprogrammers.com/post/tips-to-speed-up-your-website/"/>
        <updated>2019-12-20T21:12:12.000Z</updated>
        <summary type="html"><![CDATA[Even a 100ms latency in a website can impact customer engagement and online revenue]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[The Mathematics in Decision Trees]]></title>
        <id>https://idiomaticprogrammers.com/post/the-mathematics-in-decision-trees/</id>
        <link href="https://idiomaticprogrammers.com/post/the-mathematics-in-decision-trees/"/>
        <updated>2019-12-20T21:04:56.000Z</updated>
        <summary type="html"><![CDATA[Decision Trees is a way of representing the relationship between different entities.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[Important Flask Extensions You Should Use]]></title>
        <id>https://idiomaticprogrammers.com/post/important-flask-extensions-you-should-use/</id>
        <link href="https://idiomaticprogrammers.com/post/important-flask-extensions-you-should-use/"/>
        <updated>2019-12-14T21:29:54.000Z</updated>
        <summary type="html"><![CDATA[A post listing all the important Flask extensions to use in production.]]></summary>
    </entry>
    <entry>
        <title type="html"><![CDATA[VS Code Extensions I Use]]></title>
        <id>https://idiomaticprogrammers.com/post/vs-code-extensions-i-use/</id>
        <link href="https://idiomaticprogrammers.com/post/vs-code-extensions-i-use/"/>
        <updated>2019-12-08T21:31:59.000Z</updated>
        <summary type="html"><![CDATA[A post listing the extensions that I use with VS Code.]]></summary>
    </entry>
</feed>