Tag: Simple
Total: 35 Posts
Posts of Tag: Simple
Total: 35 Posts
Posts of Tag: Simple
Guide to Simple Email Service (AWS SES) with Spring Boot and Spring Cloud
.lazyload-placeholder { display: none; } Introduction AWS SES (Simple Email Service) is a simple-to-setup email sending and receiving service. It is usually difficult, finicky and tedious to manage an on-premis...Learn MoreSimpleJavaEmailSpringSpring BootawscloudSpring CloudTesseract: Simple Java Optical Character Recognition
Tesseract: Simple Java Optical Character Recognition Introduction Developing symbols which have some value is a trait unique to humans. Recognizing these symbols and understanding the letters on an image is abs...Learn MoreSimpleJavaMachine Learningartificial intelligencecomputer visionSimple NLP in Python with TextBlob: N-Grams Detection
Simple NLP in Python with TextBlob: N-Grams Detection Introduction The constant growth of data on the Internet creates a demand for tools that process textual information. Moreover, it's highly important that t...Learn MorePythonSimpleMachine Learningartificial intelligencenlptextblobSimple NLP in Python With TextBlob: Tokenization
Simple NLP in Python With TextBlob: Tokenization Introduction The amount of textual data on the Internet has significantly increased in the past decades. There's no doubt that the processing of this amount of i...Learn MorePythonSimpleMachine Learningartificial intelligenceainlptextblobtokenizationCreating a Simple Recommender System in Python using Pandas
Creating a Simple Recommender System in Python using Pandas Introduction Have you ever wondered how Netflix suggests movies to you based on the movies you have already watched? Or how does an e-commerce website...Learn MorePythonSimpleMachine Learningdata sciencepandasPyTesseract: Simple Python Optical Character Recognition
PyTesseract: Simple Python Optical Character Recognition Introduction Humans can understand the contents of an image simply by looking. We perceive the text on the image as text and can read it. Computers don't...Learn MorePythonSimplecomputer visionNumPy Tutorial: A Simple Example-Based Guide
NumPy Tutorial: A Simple Example-Based Guide Introduction Advantages of NumPy NumPy Operations Creating a NumPy Array The array Method The arange Method The zeros Method The ones Method The linspace Method Th...Learn MorePythonSimpledata sciencenumpyMovavi Screen Capture for Mac – A Simple Solution to Record Videos
**Movavi Screen Capture for Mac – A Simple Solution to Record Videos** Being able to record videos from your Mac’s screen is a lot more beneficial than you might realize. Often people tend to assume that screen...Learn MoreSimpleReviewMacHow to Swap Two Numbers Without Using Temporary Variable or Arithmetic Operators?
How to Swap Two Numbers Without Using Temporary Variable or Arithmetic Operators? You have done swapping of two numbers using temporary variable or by using arithmetic operators. It can be done in following ...Learn MoreSimpleC ProgramsC++ ProgramsTutorialsC++ Program To Print ASCII value of Digits,Uppercase and Lowercase Alphabates
C++ Program To Print ASCII value of Digits,Uppercase and Lowercase Alphabates #include <conio.h> #include <iostream.h> #include <dos.h> #include <process.h> void main() { clrscr(); ...Learn MoreSimpleC++ ProgramsASCIIC++ Program to raise any number x to a positive power n
C++ Program to raise any number x to a positive power n #include <iostream.h> #include <conio.h> #include <math.h> //for pow() function void main() { clrscr(); int x, n, res; cout ...Learn MoreSimpleC++ ProgramsJava program to swap two numbers
Java program to swap two numbers class Swap { public static void main(String… s) { int a, b, temp; a = Integer.parseInt(s[0]); b = Integer.parseInt(s[1]); System.out.printl...Learn MoreSimpleJava