If, you like to start podcast with excellent audio files and don’t know how to initiate it, also don’t know how Google Hangouts On Air play an important role for podcast?Here is the solution; start podcast with excellent audio files using Google Hangouts on air provides many ways to create audio, video and better SEO.In this post, you will get to know how to create more active podcasts using the built-in features of Google Hangouts on Air.Podcasts with Google Hangouts on AirGenerally, Skype is more than sufficient for interview-based podcasts. For OS, Mac uses eCamm’s Skype Call Recorder andWindow uses ... Read More
In this tutorial, we are going to learn how to use PostgreSQL with Python. You have to install certain thing before going into the tutorial. Let's install them.Install the PostgreSQL with the guide..Install the Python module psycopg2 for PostgreSQL connection and working. Run the command to install it.pip install psycopg2Now, open the pgAdmin. And create a sample database. Next, follow the below steps to get started with database operations.Import the psycopg2 module.Store the database name, username, and password in separate variables.Make a connection to the database using psycopg2.connect(database=name, user=name, password=password) method.Instantiate a cursor object to execute SQL commands.Create queries and ... Read More
No drought, Gmail provides beautiful templates. But, are you tired of selecting the same template for typing, sending and by seeing the same emails every day?Every day, you know what kind of canned reply goes to whom, e.g. a thanking note every day goes to the candidate apply for a job opening. In this case, CC and BCC does not work.Canned response: If you type and send same message every day, canned response takes care of that. You just have to introduce your canned response and adjust the email to personalize it accordingly.Deliver the same message multiple timesChange your settings ... Read More
Earlier, beginner of Windows 8 and Window RT were unknown from the hot corners features. Whenever they move their cursor on the corner of the screen and got any pop-up, they thought that is a new feature discovery.Due to this consideration, Microsoft in Windows 8.1 introduced a new feature “Help Tips”. Now, moving cursor on the corner of the screen brings up the Help Tips.Using “Help Tips”, user can move to different points and get info and importance about those points. This feature is basically for users who are poor or beginner, not for knowledgeable users; they really like to ... Read More
In this tutorial, we are going to see different ways to copy a nested list in Python. Let's see one by one.First, we will copy the nested list using loops. And it's the most common way.Example Live Demo# initializing a list nested_list = [[1, 2], [3, 4], [5, 6, 7]] # empty list copy = [] for sub_list in nested_list: # temporary list temp = [] # iterating over the sub_list for element in sub_list: # appending the element to temp list temp.append(element) # appending the temp list to copy ... Read More
Now, all the time, people use internet to collect and share confidential and important data online. Importance and uses of online data needs protection and privacy. Our data is always is in risk, unless and until you unplug your system from all other devices.Sometime, we use public computer to access our Gmail, Yahoo mail, Facebook, Twitter, alert(“XSS”);, etc…, to download and upload some confidential data and to open our bank account detail. All things that you open on public computer save on history; can be open by any one other very easily.If, you want other people not to hack your ... Read More
In this tutorial, we are going to find the indices of the numbers that are greater than the given number K. Let's see the different ways to find them.A most common way to solve the problem is using the loops. Let's see the steps to solve the problem.Initialize the list and K.Iterate over the list using its length.If you find any number greater than K, then print the current index.Example Live Demo# initializing the list and K numbers = [3, 4, 5, 23, 12, 10, 16] K = 10 # iterating over thAe list for i in range(len(numbers)): # checking ... Read More
In this tutorial, we are going to write a program that finds the index of a sublist element from the list. Let's see an example to understand it clearly.Inputnested_list = [[1, 2, 3], [4, 5], [6, 7, 8, 9]]OutputIndex of 7:- 2 Index of 5:- 1 Index of 3:- 0Let's see the simple and most common way to solve the given problem. Follow the given steps solve it.Initialize the list.Iterate over the list using the index.Iterate over the sub list and check the element that you want to find the index.If we find the element then print and break itExample Live ... Read More
In this tutorial, we are going to write a program that cyclically iterates a list from the given Let's see the steps to solve the problemInitialize the list and index.Find the length of the list using len.Iterate over the list using the length.Find the index of the element using index % length.Print the element.Increment the index.It's a simple loop iteration. You can write it without any trouble. Let's see the code.Example Live Demo# initializing the list and index alphabets = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'] start_index = 5 # finding the length length = len(alphabets) # iterating over ... Read More
If, you are finding a tool should be best to hold the overall PC’s performance. The Windows Task Manager is a great one.Task Manager is a task management and monitoring tool, shows the current status of programs, processes, and services run on Windows operating system. It comes in use to monitor the performance of the applications/services run on the system and to stop the applications/services that troubles the system performance.Over the internet, Task Manager can display the network status; means; how the network is functioning with other devices and users. Also, displays how many users are connected to the system, ... Read More
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP