Quantcast
Channel: Idiot Inside
Browsing latest articles
Browse All 26 View Live

Image may be NSFW.
Clik here to view.

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 Article


Image may be NSFW.
Clik here to view.

Caching 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 Article


Image may be NSFW.
Clik here to view.

Image 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 Article

Image may be NSFW.
Clik here to view.

The 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 Article

Deploy 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 Article


Image may be NSFW.
Clik here to view.

Create 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 Article

Image may be NSFW.
Clik here to view.

Create 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 Article

100 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 Article


Day 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 Article


Day 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 Article

Image may be NSFW.
Clik here to view.

Must 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 Article

100 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 Article

Image may be NSFW.
Clik here to view.

Create 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 Article


Image may be NSFW.
Clik here to view.

Difference 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 Article

Image may be NSFW.
Clik here to view.

Create 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

Browsing latest articles
Browse All 26 View Live