Django community: RSS
This page, updated regularly, aggregates Community blog posts from the Django community.
-
Ansible Galaxy Introduction
Ansible Galaxy is the hub of ansible scripts contributed by users. To follow this article its important that you know about ansible. We have a simple, easy to follow blog about ansible scripting here(https://micropyramid.com/blog/how-to-deploy-django-with-uwsgi-and-nginx-using-ansible-play-book/). -
MONGODB GROUP() VS MAPREDUCE VS AGGREGATION Framework
The group() command, Aggregation Framework and MapReduce are collectively aggregation features of MongoDB. group(): Group Performs simple aggregation operations on a collection documents. Group is similar to GROUP_BY in mysql. Output format : Returns result set inline. Sharding: Its not support in shared environment. Limitations: -
Advanced Querying in MongoDB
Advanced Queries of MongoDB: Inserting records to the database and retrieving data from database.1. Wrapped Queries: Like, sort, limit, count.2. Query Using Modifiers: set, increment, push,Set Elements in Array, AddToSet Modifier, each. -
MongoDB CRUD Operations with Python (Pymongo)
MongoDB with Python - Connection establishment, Create, Update, Retrieve and Delete operations explained with sample code. -
Full Text Search in Mongodb
Full text search is a custom implementation created by the MongoDB developers as a specific index typeFull text search as an index type when creating new indexes, just like any other.1.Indexing of multiple fields, with weighting to give different fields higher priority.2.Support for Latin based languages initially, with plans for other character sets later. -
Automate Django Deployments with Fabfile
Fabric is a Python library and command-line tool with the ability to execute commands on a remote server. It is designed to use SSH to execute system administration and deployment tasks on one or more remote machines. -
Celery Flower to Monitor Task Queue
Celery is a task queue that is to built an asynchronous message passing system. It can be used as a bucket where programming tasks can be dumped. The program that passed the task can continue to execute and function responsively.To monitor the status of these celery tasks we use celery flowerThe Celery Flower is a tool for monitoring your celery tasks and workers. It's web based and allows you to see task progress, details, worker status. -
Multifactor Authentication with Django MFA using Google Authenticator
Use Django Multi-Factor Authentication method to verify user identity with more than one authentication methods. It can be used for user login, any transactional methods etc. -
How do I Profile Django Application Using Django Web Profiler
When working with a large scale applications which includes many modules, we need to focus on the performance to give more user statisfaction, sustainability. To improve the performance, we need to analyze the application in various cases for ex: examine all urls with their response time and status codes, no of database queries with time for a particural url.In that case, django-web-profiler will be very helpful for your application. It'll records the application urls with data. -
Configure SSL with LetsEncrypt and Nginx
Configuring SSL is beneficial not only for security purpose but also for SEO too.Linuxsoftware foundation's initiated a program called Let’s Encrypt to give ssl certificates for free and it is in preview state as of today. You can whitelist your domain by registering here. You can configure after getting confirmation from Let’s Encrypt team. -
Setting Up Sentry - Web Application Event Tracking Platform
When you want to track your exception and log mesages in a UI rather than storing it in a file(which we usually do), we can use SENTRY. Sentry provides real-time crash reporting and exception tracking for your web and mobile apps. -
How to Deploy Django with Uwsgi and Nginx using Ansible Play Book
Ansible is a scripting language mostly used to automate installing applications, deploying apps etc..Why Ansible:You may think why learn new language if I can do the same using shell scripts, well that's ok but in my opinion ansible doesn't take much time to learn and shell scripts could become complex as the projects scale up. You can read afurther details over here(https://news.ycombinator.com/item?id=6431552). -
Django Testing Automated with Self Hosted Gitlab CI and Docker
It is a bit pricy if you want to host code for collaboration using bitbucket or github on your own VPS or On-Premisis servers. Gitlab in midst of this provides a community edition which is packed with essential features and also free of cost. Both Editions ship with CI integrated in it and also can handle 3rd party CI applications like Jenkins or Bamboo ..etc., -
React vs Flutter - Which is Preferred for You?
In this Article, you will get the clear information about react and flutter it’s features and drawbacks -
Teacher Checklist Model - Building SaaS with Python and Django #139
In this episode, we created a new model for the teacher checklist feature that I recently added to my homeschool app. This new checklist model will enable users to filter out courses that appear on a teacher’s checklist. -
Teacher Checklist Model - Building SaaS #139
In this episode, we created a new model for the teacher checklist feature that I recently added to my homeschool app. This new checklist model will enable users to filter out courses that appear on a teacher’s checklist. -
Event Delegation in Jquery
Event handling is the basic need to develop Rich Internet Web Applications and that will become very tough with elements added to DOM dynamically. Jquery gives simple solution to do event binding for dynamic elements under a DOM object. -
Get Tweets with Twitter API Javascript
Due to change in twitter API, its been hard to get tweets from twitter to your site using javascript. We got new API version 1.1 and the old version 1 is not working any more, so we have to live with what ever 1.1 offers. This version of API supports widgets to keep in our sites, but thats not enough if we want to customize tweets using javascript to fit our sites look and functionality. We want json of the tweets, then we can do what ever we want with those. -
Image Cropping in Jquery (with Jcrop)
We are having many image cropping plugins developed in jquery that are being used to crop an image. Jcrop is one of the plugins developed in Jquery. -
JQuery Mouse Events and Touch Events
jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers. Events handling and manipulating are different for mouse and touch events. You can use any custom function to do whatever you want to an event when triggered. These custom functions you wrote to happen while an event triggered are called Event handlers. -
Tracking your Product Sales, Views and Searches with Google Enhanced E-commerce Analytics
Enhanced E-commerce helps improving tracking of an ecommerce website. It gives Statistics in variable measurements. It is not be used alongside analytics plugin, as this EE Plugin also tracks pages. -
Google Analytics Graphs to your Dashboard in Python Web Frameworks
Ecommerce solution providers like OpenCart, Magento Provide extensions to see Google analytics data in their own dashboards as graphs. whereas there are no such plugins availble in Python. In this tutorial, we will learn how to display google graphs in your website. -
Using CasperJS to Scrape Website Data
CasperJS can be used for Navigation Scipting, Scraping and testing. In this Tutorial we will see how to scrape data from website using CasperJS and PhantomJS 1.9 -
Copy Text to ClipBoard Event using Javascript
Here you can learn about copy to clipboard using JavaScript. Copying content from a web form without needing to use the default browser functions. For this i am using ZeroClipboard functionality in the JavaScript. -
How to Use JQuery Mobile Touch Events
JQuery mobile touch events - Event is nothing but all possible and different actions of visitors that a webpage can respond to. We have the ability to create dynamic web pages by using events. In general, Events are actions that can be detected by our Web Application.