Innovate anywhere, anytime withruncode.io Your cloud-based dev studio.

MicroPyramidBlog

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.

Understanding Django Serializers with Examples

Serializers are used for “translating” Django models into other formats like xmi,json,yaml(YAML Ain’t a Markup Language)

Introduction to Django's Class Based Views - Understanding How a Class Based View Works

Django has MVT architecture. A view in django is just a callable that takes a request and returns a response. But this can be more than just a function, that contains the actual business logic of an URL. In addition to normal funcation based views Django provides of some classes which can be used as views. These allow you to structure your views and reuse code by inheriting them.

How to Create Master-detail Relationship in Salesforce?

In Salesforce, relationships are used to create a link between objects. Whenever user clicks on particular object they can view its data and related data of that object. There are many relationships in salesforce, one among them is Master(parent)-detail(child) relationship.

Salesforce Read Full Post

How to Send Email to a Public Group in Salesforce

In Salesforce it is quite difficult to send email to users individually when there are many. So, upon creating public groups with required users working on a particular project or something else. We can send emails to required particular users using public groups.

Salesforce Read Full Post

Deploying Wordpress Blog with Django using Docker Containers

Containers run services in an isolated environment, if we deploy our applications using containers then the host system on which these containers are running will not be affected even though the applications running within containers are being hacked.

Server Management Read Full Post

How to Configure Web to Lead Generation in Salesforce

Web-to-lead allows you to create a lead record in Salesforce whenever a visitor submits contact information on your website. This all can be done by creating web-to-lead form with required fields and customization's.

Salesforce Read Full Post

How to Create Custom List Views

In Salesforce, when you go to the home page of any object, you will get to see a standard view of records in that object. If you want to look at the important and useful records of an object in the form of a list, Custom List views are created.

Salesforce Read Full Post

How to Setup HTTP Password Authentication with Nginx

HTTP Authentication is used to allow access limit to a site or particular directories by validating the username and password. HTTP basic authentication can also be combined with other access restriction methods, for example, restricting access by IP address or by geographical location.

Server Management Read Full Post

How to Set Up Escalation Rules in Salesforce

In many businesses, when customers raise cases, and they are assigned manually to the agents by looking over the case details. But nowadays, cases are automatically escalated to the support agents by providing rule criteria. In Salesforce, we use escalation rules to automatically escalate cases.

Salesforce Read Full Post

How to Use Map Methods in Salesforce

Apex provides collections such as List, Set, Map. Each collection has its own properties and characteristics that make them to use widely in salesforce. One of them is Map and we will see about it.

Salesforce Read Full Post