Other articles


  1. Celery Admin vs Windows Task Scheduler: Which is Better?


    Django Celery Beat: A Deep Dive with Examples, Pros, and Cons vs. Windows Task Scheduler

    For developers working with Django, scheduling recurring tasks is a common requirement, from sending out daily email digests to performing regular data cleanup. A popular and powerful tool for this job is Django Celery Beat …

    read more
  2. 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
  3. 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
  4. 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
  5. 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
  6. 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
  7. 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

links

social