Fendadis John has Published 98 Articles

What is the top IDE for c++ on Window?

Fendadis John

Fendadis John

Updated on 10-Feb-2020 12:38:12

Big projects are difficult to manage on mere text editors. You're likely to be more productive and less frustrated if you use an IDE in such cases. There are various types of IDE's and you should select the right one which fits your needs. Here's a list of best C/C++ ... Read More

How can we split the name string into two parts by using MySQL SUBSTRING_INDEX() function?

Fendadis John

Fendadis John

Updated on 10-Feb-2020 07:22:10

To make it understand, we are using the following data from a table named ‘customerdetail’.mysql> Select * from Customerdetail; +----------------------+----------------------+-----------+---------------------+ | Name                 | FName                | Address   | Emailid             ... Read More

What is the best way to compare two strings in JavaScript?

Fendadis John

Fendadis John

Updated on 08-Jan-2020 09:40:36

To compare two strings in JavaScript, use the localeCompare() method. The method returns 0 if both the strings are equal, -1 if string 1 is sorted before string 2 and 1 if string 2 is sorted before string 1.ExampleYou can try to run the following code to compare two stringsLive ... Read More

How to create a website without using HTML?

Fendadis John

Fendadis John

Updated on 25-Sep-2019 07:52:30

If you are having no knowledge of HTML or CSS, and want to create a website, then do not worry, you can easily create a website without writing even a single line of HTML code.Here are some ways to build a website without writing any HTML or line of code:Website ... Read More

How to make an HTTP request on iOS App using Swift?

Fendadis John

Fendadis John

Updated on 30-Jul-2019 22:30:25

To make an http request in iOS we’ll make use of DataTask and sessions. We’ll create configuration, sessions, url, request, and dataTask objects. Let’s see the steps that we’ll go through.The HTTP request can be of different types, it depends on what kind of request we want to make to ... Read More

How to check Location Manager is running or not in iOS App?

Fendadis John

Fendadis John

Updated on 30-Jul-2019 22:30:25

To check any services related to location in ios with swift we can use the CLLocationManager.In this example we’ll see how to check if the location manager is running or not. We’ll do this with help of an sample project. So, create a new project. First we need to create ... Read More

How do I load an image by URL on iOS device using Swift?

Fendadis John

Fendadis John

Updated on 30-Jul-2019 22:30:25

To load an image in iOS using swift we’ll make use of simple data Task session. The image needs to be loaded in background because it may be of any size and we don’t want it to stop our main view’s operations.Let’s see this with help of an example. Create ... Read More

How to integrate a facebook login in swift for iOS App?

Fendadis John

Fendadis John

Updated on 30-Jul-2019 22:30:25

Social logins in applications have become a very common thing these days. Facebook login is one of them, in this article we’ll see how we can make use of facebook login, to access basic user information and login to the application.Implementing facebook login in an application is a series of ... Read More

Non-persistent CSMA protocol

Fendadis John

Fendadis John

Updated on 30-Jul-2019 22:30:25

Non-persistent CSMA is a non – aggressive version of Carrier Sense Multiple Access (CMSA) protocol that operates in the Medium Access Control (MAC) layer. Using CMSA protocols, more than one users or nodes send and receive data through a shared medium that may be a single cable or optical fiber ... Read More

P-persistent CSMA protocol

Fendadis John

Fendadis John

Updated on 30-Jul-2019 22:30:25

P-persistent CSMA is an approach of Carrier Sense Multiple Access (CMSA) protocol that combines the advantages of 1-persistent CMSA and non-persistent CMSA. Using CMSA protocols, more than one users or nodes send and receive data through a shared medium that may be a single cable or optical fiber connecting multiple ... Read More

Advertisements