Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Articles on Trending Technologies
Technical articles with clear explanations and examples
Find all the patterns of “1(0+)1” in a given string using Python Regex
In this tutorial, we are going to write a program which finds all the occurrences of the 1(0+1) in a string using the regexes. We have a re module in Python which helps us to work with the regular expressions.Let's see one sample case.Input: string = "Sample 1(0+)1 string with 1(0+)1 unnecessary patterns 1(0+)1" Output: Total number of pattern maches are 3 ['1(0+)1', '1(0+)1', '1(0+)1']Follow the below steps to write the code for the program.Algorithm1. Import the re module. 2. Initialise a string. 3. Create a regex object using regular expression which matches the pattern using the re.compile(). Remember to ...
Read MoreHow essential the emergency restart is in windows 8
The Emergency restart an easy and user-friendly feature for user, given by Microsoft. An important key for users who want to restart their device in a minute or less than minute.The emergency restart mode closes all running apps forcefully without saving anything. It is useful when you have some issues with apps or the OS hanging or crashing and you would like to quickly restart the PC to fix it.Windows 8 and Windows 8.1, the emergency restart feature uses the hardware power button of Windows 8 tablet, laptop or desktop for operation. But this operation isn’t suggested yet user does ...
Read MoreHow to enable the slidetoshutdown on windows 8 1
In Windows 8, user get Shut down option by right-clicking on the start menu, but some time it is difficult to get shut down option button.When you work on touchscreen devices, you might wish permitting a (cooler) slide to shut down UI on your Windows 8.1. It also works on desktop.In this article, we are going to share an easy to use method to use the “Slide to Shutdown” feature.The Slide to Shutdown UIThe Slide to Shutdown UI is an executable (.exe) file locates into the Windows –> System 32 folder. While double-clicking the SlideToShutDown.exe file displays lock screen rolled ...
Read MoreReduce download conflicts between web browsers
Worldwide, there are many useful web browsers, but Internet Explorer, Mozilla Firefox, Google Chrome and Opera are the most demanding and largely used browsers among all browsers. Browser choice is totally depends on user needs and for what kind of work user wants the browser. Generally, people use web browsers to download files, software, songs, movies, pictures, etc. By default, almost for all web browsers downloaded files stores in the “Downloads” folder. If somebody has number of web browsers with the same download path for all browser, it will be bit confusing when user download files at a same time ...
Read MoreFuzzyWuzzy Python library
In this tutorial, we are going to learn about the FuzzyWuzzy Python library. FuzzyBuzzy library is developed to compare to strings. We have other modules like regex, difflib to compare strings. But, FuzzyBuzzy is unique in its way. The methods from this library returns score out of 100 of how much the strings matched instead of true, false or string.To work with the FuzzyWuzzy library, we have to install the fuzzywuzzy and python- Levenshtein. Run the following commands to install them.pip install fuzzywuzzyIf you run the above command, you will the following success message.Collecting fuzzywuzzy Downloading https://files.pythonhosted.org/packages/d8/f1/5a267addb30ab7eaa1beab2 b9323073815da4551076554ecc890a3595ec9/fuzzywuzzy-0.17.0-py2.py3-none-any.whl Installing collected ...
Read MoreFacilitate the titlebar text and icon in firefox 29
As we all know that, Mozilla Fierfox 29 has come up with new Australis UI, available in the Nightly Builds of Firefox. There are many big changes in this version, like; orange Firefox button has been removed from titlebar and has been replaced by a new Menu button placed at the right corner of toolbar. This button removal has also removed some basic features (titlebar text and icon) of Firefox which was coming in used regularly.This change has become a big issue for users who regularly use Firefox for their work.From the old version of Firefox, user can disable the ...
Read MorePrint anagrams together in Python using List and Dictionary
In this tutorial, we are going to write a program which finds and prints anagrams using list and dictionary. We have different approaches to every problem. Try to write code without following the tutorial. If you are not able to generate any ideas to write logic, follow the below steps.Algorithm1. Initialize a list of strings. 2. Initialize an empty dictionary. 3. Iterate through the list of strings. 3.1. Sort the string and check if it is present in the dictionary as key or not. 3.1.1. If the sorted string is already present dictionary as a key ...
Read MoreWhy bing image search is better than others
Worldwide, internet lovers every day and every time prefer to use Google Search to search their stuffs over any other alternative search engine, but when those internet lovers search for quality images than “Bing Image Search” is best.In case of image quality, Microsoft also feels that Bing Image Search is better than any other search engine. But it does not mean that Google can’t give expected results at all. From past so many years, Google is in top and its image search results are pretty good too.In this article, you will see what new features Bing provides that make it ...
Read MoreCoolnovo a web browser similar to google chrome
Google Chrome is one of the lightest and user-friendly web browsers among other web browsers, and it has become better than other browser because of its customization feature that makes it more advance and friendly by adding more feature as per individual requirements. Chrome is created on the open-source project Chromium that makes it source code eagerly accessible to anyone. So, people who are interested in developing a browser can make use of this source-code and come up with their Chrome-like version. Also, browsers like; Comodo Dragon, SRWare and many-more are Chromium-based web browsers.To compete with Google Chrome, Maple Studio ...
Read MorePrint first m multiples of n without using any loop in Python
In this tutorial, we are going to write a program to find out m multiples of a number n without using loops. For example, we have a number n = 4 and m = 3, the output should be 4, 8, 12. Three multiples of four. Here, the main constraint is not to use loops.We can use the range() function to get the desired output without loops. What is the work of the range() function? range() function returns a range object which we can convert into an iterator.Let's see the syntax of range().Syntaxrange(start, end, step)Algorithmstart - starting number to the ...
Read More