Automating Tasks in Web Pages with Selenium Python
Install PackageInstall selenium python package using pip.pip install selenium Download selenium chrome driver and copy to some location, so that you can refer it later in out program.Google search...
View ArticleCaching functions in Python
Function caching is a mechanism to improve the performance by storing the return values of the function. So that each time when they are called with same set of arguments, It will return the value from...
View ArticleImage Classifier in less than 10 lines of code using keras
Keras Keras - Python Deep Learning library provides high level API for deep learning using python. It runs on top of Tensorflow or Theano. Keras takes away the complexities of deep learning models and...
View ArticleThe Set theory and Python + Tips & Tricks
Set theory in mathematics deals with groups of objects. It describes the relationship of an object with a set or group. Python also implements the set as standard python module. The sets module...
View ArticleDeploy a serverless flask app on aws lambda
Serverless?Serverless is the new buzz word right now, what does it really means? Serverless computing actually means the server resources like memory and cpu are allocated dynamically. It lets us focus...
View ArticleCreate your first facebook messenger bot using flask & AWS Lambda
What is a chatbot?A chatbot is an automated or semi-automated service, powered by a set of rules and sometimes artificial intelligence, that you can interact with a chat interface. This chat interface...
View ArticleCreate a Get Started button and Quick Replies for Facebook messenger bot
This blog is part of the chatbot blog series, http://www.idiotinside.com/2017/12/22/create-fb-messenger-bot-aws-lambda/Get started buttonThe welcome screen is the first thing people see when they find...
View Article100 days of code - day 001 - Multiples of 3 and 5
Happy new year everyone! Hope you had a great holiday. As a new hope for this year I wanted to improve my problem solving ability and also to improve my programming skill. So I am doing 100 days of...
View ArticleDay 002 - Even Fibonacci numbers
Today, I am going to solve Project Euler’s 2nd problem Even Fibonacci numbers.Day 002Problem statement:Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting...
View ArticleDay 003 - Timezone aware datetime in mongodb using pymongo
MongoDB stores dates in UTC timezone by default. This makes it possible to do timezone conversion to be done in both client side side or server side.dependancies$ pip install pytz pymongo codefrom...
View ArticleMust use tools to build better Progressive Web Apps
Recent browser enhancements like service workers, caching brought a new dimension to building apps with html and javascript called Progressive web apps. While they are getting popular, we must know the...
View Article100 days of code - Fizz buzz algorithm
Day 004Problem statement: Fizz and Buzz refer to any number that’s a multiple of 3 and 5 respectively. In other words, if a number is divisible by 3, it is substituted with Fizz. if a number is...
View ArticleCreate a persistent menu for Facebook messenger bot
Persistent menuThe persistent menu allows the bot to have menu inside Messenger conversations. This persistent menu items will help people to discover and access core functionalities of your Messenger...
View ArticleDifference between HTTP, HTTPS, SSL, TLS?
HTTPHTTP stands for Hypertext Transfer Protocol. It is an application layer protocol used to communicate between two machines, mostly used in client server model.The latest version of HTTP is HTTP/2....
View ArticleCreate a weather bot for Facebook messenger bot
When a user sends a message to a Facebook page that has bot feature setup, it is sent to the chatbot server by using webhooks. The chatbot server receives the message and It can do operations like...
View Article