Blog

In this blog post, we’ll explore how to trigger an Amazon SageMaker Jupyter notebook file from an AWS Lambda function using WebSockets. This method allows you to automate your machine learning workflo..

Continue reading..
Enhancing WooCommerce API Endpoints with Custom Taxonomies: A Comprehensive Guide

In this post we will discuss how to include custom taxonomies in WooCommerce API Endpoints. Also We used this custom taxonomy at another site posts. I used a shortcode to implement this, so that it wi..

Continue reading..
Add Custom Taxonomy With Quick Edit In List View

Introduction: WordPress is a versatile platform that allows users to create, manage, and display content seamlessly. In this blog post, we will explore how to elevate your WordPress media library by i..

Continue reading..

Hello Everyone, AWS Lambda is phasing out support for Python 3.7 following Python 3.7 reaching its End-Of-Life on June 27, 2023. To ensure the smooth operation of your functions, AWS strongly advises..

Continue reading..

1)Difference between Dedicated Host and Dedicated Instances A dedicated host gives you your private physical server, while dedicated instances reserve a secure space for your virtual computers within..

Continue reading..

Effective communication through web design is crucial for engaging users and delivering messages. One way to captivate your audience is through animations that enhance user experience. In this guide,..

Continue reading..

In the dynamic landscape of the modern global marketplace, eCommerce has shattered traditional geographical limitations, enabling businesses to cater to clientele across the globe. Nonetheless, situat..

Continue reading..

Introduction: We have all come across the frustrating "404 Error - Page Not Found" message while browsing the internet. Instead of simply accepting this annoyance, why not use it as an opportunity for..

Continue reading..

import pandas as pd import boto3 from io import StringIO data = [['Billu', 31], ['amit', 30], ['Mayank', 14],['prabhat', 30]] df = pd.DataFrame(data, columns = ['Name', 'Age']) df ACCESS_KEY="AKIATHOP..

Continue reading..

import pandas as pd from pretty_html_table import build_table import boto3 from email.mime.multipart import MIMEMultipart from email.mime.text import MIMEText ACCESS_KEY = 'AKIATHOPBKF35ELXFTFX' SECRE..

Continue reading..

Hey ,   In this Video we are going to learn Step function AWS service with real-time Scenario. We will trigger step function from Lambda as soon as file will drop into S3 bucket. We have configur..

Continue reading..

sudo yum install –y aws-kinesis-agent cd /etc/aws-kinesis/ sudo vi agent.json sudo service aws-kinesis-agent start sudo chkconfig aws-kinesis-agent on python3 LogGenerator.py 1000 cd /var/log/aws-kine..

Continue reading..

import json import boto3 import pandas as pd from datetime import datetime import s3fs from urllib.parse import unquote def lambda_handler(event, context): # TODO implement now = datetime.now() date_t..

Continue reading..

I have create the Video and explain the same.   Below is the code used in Video tutorial ###### import json import boto3 from datetime import datetime import psycopg2 from env import ENV from set..

Continue reading..

In Lambda when we write code in python we need to import some module that is not build in . As Lambda is serverless service and We dont have access to server where we can do "pip install module". In t..

Continue reading..

1)How to get user input in Python 2)Write Python Program to Find the Square Root 3)Write  Python Program to Calculate the Area of a Triangle 4)Write Python program to swap two variables with and witho..

Continue reading..

Hello Reader, In this blog, we will learn how to convert Speech to Text using Python. Follow below Steps:- Download and install Anaconda (for python and jupyter). Install SpeechRecognition. Open Anaco..

Continue reading..

Microsoft has made 1910 updates available in SCCM console, Time to understand the new features available in SCCM 1910. Here are a few points describing the same. Microsoft system center configuration..

Continue reading..

Dear Reader, In this blog we will learn about Walrus operator in python. This is the newly added feature in python 3.8. So please install python 3.8 or higher version otherwise walrus operator will no..

Continue reading..

Microsoft has recently announced the Azure AD B2C which will support signing up for apps while taking care of B2C customer policy. In this modern era, Multifactor authentication plays an important rol..

Continue reading..
Capture S3 Events Using Lambda Function And Send Status Mail Using SES

  Dear Reader, In this blog, I will tell you how to capture S3 events using Lambda function and send status mail to the required recipient using SES. We will do it in three steps. So let's start...

Continue reading..

Before discussing about Azure HDInsight and Azure Databrick Lets discuss Hadoop, Spark and Databricks. Hadoop:- Hadoop is tool to solve bigdata problem. When we say bigdata problem we have problem to..

Continue reading..

  We will calculate the sum of table rows and columns by jQuery. We will use jquery traversing and loop through each element values and calculate the total. Also, we will add another row/column,..

Continue reading..

  We have observed in our day to day activity where the SCCM client is installed properly. However, it is not registering against MP. Let get in the details of the issue which we well know of it...

Continue reading..

"Search by SKU" is very common in websites with woocommerce and have a large product base. There are some plugins available that enable SKU searching and show the result in the search results page. Bu..

Continue reading..
Load csv file into SnowFlake table using python

In this blog we will learn how to load any csv file into Snowflake table using python. Below example will connect to my trial snowflake account and it will create table student_math_mark. And load csv..

Continue reading..

In this blog, we will learn how to connect to snowflake using python connector. Follow below step:- 1)Create a trial account on snowflake using below URL. https://trial.snowflake.com you will get 30 d..

Continue reading..

Snowflake is the first analytical data warehouse build on the cloud. It provides a data warehouse as Software-as-a-Service (SaaS). It started with AWS but now available across three of the market’s la..

Continue reading..
Data Science as a career

  With the increased usage of the internet, voluminous data is generating every day across the globe. Enterprises are looking for a solution to organize, process, sort and clean the huge amount o..

Continue reading..

In this article, we will create a simple jQuery pagination without using any plugins.   First of all, we will create different element blocks that need pagination. These blocks may come dynamical..

Continue reading..