how to use zoho mail with your django/python
read moreOther articles
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 moreDjango 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 moreDjango 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
read more# # 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 …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 moreDjango 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.
read moreimport 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 …Common Crawl data analysis
read moreFile Type Description Processing segments.paths.gzThis file lists all the segments of a particular Common Crawl. Each line in the file provides the path to a segment directory within the crawl archive on AWS S3 or via HTTP(S). This file is primarily used … Tracking anamoly in the data
Tracking anamoly in the data
read moreAI 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 …
- ChatGPT (OpenAI):
Scheduled script windows
Schedule a python script in windows
read moreImport xml sitemap data into Google Sheets
Import xml sitemap data into Google Sheets
read moreCopy image on another image - PIL - Python
An example blog post about copy-image-on-another-image
read moreAdd Google Tag Manager to Pelican CMS
How to add Google Tag Manager to Pelican CMS
read moreCalculate Compound Interest in Python
Calculate compound interest in Python
read moreSQL For Interview
SQL basic concepts for interview
read moreSQL RANK and Partition features
The rank and partition feature of SQL
read morePython Beginner Tips
Feeling overwhelmed with Python? Here are some tips for you.
read moreTypes of charts
What are the different types of charts and when to use them?
read moreHow to prepare a Digital Ocean Droplet for Django
Steps and shell script to install required packages, install a database and setup a Django project on a Digital Ocean Droplet.
read more