Other articles


  1. Django Admin Handy Features


    For the List View: More Control and Information

    These features enhance the main list of your records, allowing for quick actions and better at-a-glance information.

    list_editable ✏️

    This is a game-changer for quick updates. It allows you to make fields editable directly on the list view, so you don't have to …

    read more
  2. Learning Piano

    https://www.youtube.com/watch?v=p00zsi71t6I This YouTube video, titled "How To Start Learning The Piano - Self Taught!" by Matthew Cawood, offers comprehensive advice for individuals who want to learn the piano without a teacher. The creator, having learned self-taught himself, aims to share insights on what he would …

    read more
  3. Django words model suggested by chatgpt

    Thought of making a database of all the words in english to make a typing suggestions app.

    Below is the model that chatgpt suggested.

    Python Code

    # # my input
    class Words(models.Model):
        word = models.CharField(max_length=255, unique=True)
        definition = models.TextField(blank=True, null=True)
        part_of_speech = models.CharField(max_length …
    read more
  4. Create Markdown files

    Based on - https://youtu.be/NV0mRSgj_qs

    Hi everyone, welcome to the video. Today, in this quick video, we are going to take a look at how to create a Markdown file as a starting point for any of your blogs or documentation that you're writing. I use Markdown as a …

    read more
  5. Text to MarkDown

    What if you want a markdown template to quickly start with your blog post in pelican, documentation or any such thing.

    Please visit http://mangoblogger.com/apps/form_to_markdown/ to create your blogpost.

    read more
  6. Django to SQLAlchemy Migration Guide

    Say you have a Django project and want to migrate to another project. We will use SQLAlchemy to translate the Django ORM queries to SQLAlchemy queries.

    import os
    import django
    
    companies = Page.objects.filter(
        mangoblogger_points__gt=3, is_homepage=True, contact_email__isnull=False
    ).exclude(contact_email='')  # Ensure contact_email is not an empty string
    
    result …
    read more
  7. 2024 oscars

    Here is the complete list of nominees and winners for the 97th Academy Awards (2025 Oscars), honoring films released in 2024. The ceremony took place on March 2, 2025, at the Dolby Theatre in Hollywood, hosted by Conan O'Brien .


    Major Categories

    Best Picture

    • Winner: Anora (Neon)
    • The Brutalist (A24)
    • A …
    read more
  8. Bioinformatics Study Plan

    Okay, that's a great goal! Knowing Python is a fantastic starting point for bioinformatics, as it's one of the most widely used languages in the field.

    Here's a suggested study plan and some starter project ideas to get you going:

    Understanding Bioinformatics

    First, realize that bioinformatics is inherently interdisciplinary. It …

    read more
  9. Robotic Arm Project

    Okay, building a robotic arm is a fantastic project to get started with robotics using Python! Here's a breakdown of how you can begin experimenting, including components, potential suppliers, and relevant Python libraries.

    Components for a Basic Robotic Arm

    1. Structure/Frame:

      • Materials: You can start with simple materials like laser-cut …
    read more
  10. AI Tools for Enhanced Productivity

    1. AI-Powered Creation Tools

    These tools leverage AI to assist in content creation, design, and development.

    a. Generative AI for Content Creation

    • ChatGPT (OpenAI):
      • Advanced conversational AI for generating text, code, and ideas.
      • Integrated into tools like Microsoft Copilot and Zapier for workflow automation.
    • GPT-4 and Beyond:
      • Multimodal AI capable …
    read more
  11. Austria - Plan your trip

    Exploring Austria: A Journey Through History and Nature

    Austria, nestled in Central Europe, is a mosaic of history, culture, and natural beauty. Once part of the Austro-Hungarian Empire, it became a federal republic after World War II. Predominantly Roman Catholic, though secularizing, its official language is German, using the Euro …

    read more
  12. Belgium - Plan your trip

    Discovering Belgium: A Blend of History, Culture, and Natural Beauty

    Belgium, a landlocked country in Western Europe, has a rich history dating back to the Frankish Empire and the reign of Charlemagne. It emerged as a separate kingdom after World War I, with its capital, Brussels, becoming a global political …

    read more
  13. France - Plan your trip

    Exploring France: A Journey Through History, Culture, and Nature

    France, a country rich in history, culture, and natural beauty, has captivated travelers for centuries. Originating from Celtic tribes and evolving through significant historical periods like the Middle Ages, Renaissance, and Revolution, France is now a modern republic. Predominantly Catholic with …

    read more
  14. Germany - Plan your trip

    Discover Germany: A Journey Through History, Culture, and Nature

    Introduction: The Heartbeat of Germany

    Germany, a nation rich in history and culture, emerged from the union of various tribes and states, culminating in unification under Otto von Bismarck in 1871. Historically fragmented, it experienced significant events like the fall of …

    read more
  15. India - Plan your trip

    Exploring India: A Land of Rich History and Natural Beauty

    India, a land of vibrant cultures and ancient history, is a country shaped by countless empires and civilizations. Known as the birthplace of major religions like Hinduism, Buddhism, Jainism, and Sikhism, India's spiritual depth is matched only by its diversity …

    read more