Other articles


  1. 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
  2. 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