Convert a Colorful Image to Grayscale Image Using PHP June 21, 2020cocyer In this tutorial, we will introduce the way to convert a colorful image to a grayscale image using php. 1. Open a png [...]
Implement Linear Search in Python June 21, 2020cocyer In this tutorial, we will introduce the way to implement a linear search using python. What is linear search? Linear Search a search [...]
Upload Images Using PHP and jQuery Without Refreshing Page June 21, 2020cocyer In this tutorial, we will introduce the way to upload images to web server without refreshing web page using PHP and jQuery. jQuery [...]
Convert PHP Array to JSON Formatted Text in PHP June 21, 2020cocyer In this tutorial, we will introduce the way to convert a php array to json string. We will use json_encode() to convert. 1. [...]
Get Synonyms and Antonyms of Word Using NLTK WordNet in Python June 20, 2020cocyer In this tutorial, we will introduce the way to get synonyms and antonyms of word using NLTK WordNet in python. 1. Import library [...]
Tokenize Sentences and Words Using Python NLTK in Python June 20, 2020cocyer In this tutorial, we will introduce how to tokenize text sentences and words using python nltk library. 1. Import library from nltk.tokenize import [...]
Remove Punctuation in Sentences Using Python June 20, 2020cocyer In this tutorial, we will remove all punctuations in a text sentence using python. We will use string.punctuation to implement. 1. Import python [...]
Determine the Part of Speech of Words in Sentence Using Python NLTK June 19, 2020June 19, 2020cocyer In this tutorial, we will introduce the way to determine the part of speech of words in a sentence. We will use python [...]
Remove the Website Field from WordPress Comment June 19, 2020cocyer In this tutorial, we will introduce the way to remove the website field from wordpress comment. When you plan to add a comment [...]
Strip String Whitespace in Python June 19, 2020cocyer In this tutorial, we will introduce the method to remove whitespaces in a python string. 1. Create a text string in python text_data [...]