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.

Django-REST Framework Object Level Permissions and User Level Permissions

Django-REST User Level Permissions and Object Level Permissions. User Level Permissions and Object level Permissions allow to serve customers based on their access levels or permissions. Let us consider the scenario of Authors, Books, Readers. Authors are only allowed to write the books. Readers are only allowed to read the allowed Books.

Deploy Django Using CloudFormation Template

In this blog post, You will get to know how to deploy Django using CloudFormation Template. If require any support then contact our Development Services

Amazon Web Services Read Full Post

React Component Life Cycle Methods

In this blog Post you can get clear information about React Component Lifecycle methods. If require any support regarding react js services then contact us at hello@micropyramid.com

These are special methods provided by react js. These methods are executed when specific condition( ex: component mounted to UI, State updated) triggered in the component.

How to Use Set in Salesforce

Apex provides collections such as List, Set, Map. These are similar to arrays, but these collections have advanced features and easier methods than an array. Set is a collection of unordered elements and don't contain any duplicate values.

Salesforce Read Full Post

Sorl-Thumbnail to Generate Thumbnails in Django

Displaying and Customizing the images in django with sorl-thumbnail.

How to Setup Custom Domain for Amazon Cloudfront

Instead of cloudfront default domain, we can customize it usinh cdn. ex: cdn.sitename.com. If you are struggling with any AWS related services contact our certified AWS Consultant to move your business smooth.

Amazon Web Services Read Full Post

Paginating S3 Objects using Boto3

When using Boto you can only List 1000 objects per request. So to obtain all the objects in the bucket. You can use s3 paginator. To use paginator you should first have a client instance 

Amazon Web Services Read Full Post

Creating Elastic Search Cluster (EC2, Cloud-AWS Plugin)

While handling Large amounts of data with elastic search, you may run out of server capacity or compute power, Forming an Elasticsearch cluster will reduce the load distribution. In Single, ElasticSearch Instance endpoint acts as Data Node + Master Node + Client Node.

Amazon Web Services Read Full Post

Improving Page Speed Score in Google Page Score Test- PART2

In our previous blog post we got an idea of what are the things that Google's Page Speed Insights will take into count to give page score, now in the present blog post we'll get to know what are the techniques we can use to improve the page score.

Extract Text with OCR for All Image Types in Python Using Pytesseract

Optical Character Recognition(OCR) is the process of electronically extracting text from images or any documents like PDF and reusing it in a variety of ways such as full text searches. In this blog, we will see, how to use 'Python-tesseract', an OCR tool for python. It will recognize and read the text present in images. It can read all image types - png, jpeg, gif, tiff, bmp etc. It’s widely used to process everything from scanned documents.