Explore a blog dedicated to a wide spectrum of topics including Django, Python, Machine Learning, Salesforce, Angular, React, Flutter, Svelte, LINUX, and Amazon Web Services.
Usage and configuring i3 window manager in Ubuntu
This Article will explains you how to Configure and Use Window Manager in Ubuntu.
How to monitor django application live events with sentry
Using Sentry you can easily track exceptions and events of a Django project. Know more about sentry configuration for a Django project
Imageview customization (circular image view)
In android designing we'll come across ImageView. An ImageView displays an arbitrary image, such as an icon. The ImageView class can load images from various sources (such as resources or content providers), takes care of computing its measurement from the image so that it can be used in any layout manager, and provides various display options such as scaling and tinting. it is recommended to customise it through bitmaps(BitMap in android) instead of reshaping the image manually.
7 Mistakes to Avoid while Building a Mobile Application in 2021
Mobile application development, the developers create many applications everyday, but not all apps are appreciated.7 mistakes to avoid in app development.
Django Template Language Intro
We can write the required logics based on programming[python] syntax in models and views but, when we want to write simple logics we should follow the django's template syntax, because programming[python] syntax is not allowed.
10 Ways How Salesforce Integration Improves Business Performance and 3rd party apps
Salesforce Integration is a process of connecting two applications or systems running on common/different platforms. These integrations have different layers like Data, Business Logic, Presentation and Security, depending on the requirements
Integration Of GitHub API with Python Django
Using Github integration, we can get the user verified email id, general information, git hub URL, id, disk usage, public, private repo's, gists and followers, following in a less span of time.
These Following steps are needed for Github integration:
1. creating git hub app
2. Authenticating user and getting an access token.
3. Get user information, work history using access token.
Django Efficient Implementation of Amazon S3 and Cloudfront CDN or Faster Loading
Django by default to store the files in your local file system. To make your files load quickly and secure we need to go for any third party storage systems. AWS s3 is one of the storage service for the Internet. It is designed to make web-scale computing easier for developers. django has a package called django-storages which can be used to store the files in the amazon s3 and serve them from its cloudfront service.
How to Write Custom Migrations in Django
This blog post will help you to get deeper into Django Migrations - how Migrations works and how to create or add our custom migrations. Migrations are mainly for keeping the data model of you database up-to-date.
Django Unit Test Cases with Forms and Views
By writing unit test cases, you can evaluate each code component in the initial stage itself and it'll improve your app/code performance. Which is the best practice to test your code and you can easily determine if there are any errors.