Programming

MS Azure is Down
programming
Arfan Youshuf

Sharepoint API – Nodejs

SharePoint API is a set of RESTful web services in Microsoft SharePoint that provides programmatic access to content, metadata, and functionality stored in a SharePoint

Read More »
java enum to array list
programming
Arfan Youshuf

Java Enum to List

EnumType.values() Method public class YourEnumClass { public enum YourEnums{ CREATE, EVERY_UPDATE, FIRST_UPDATE, DELETE } } List yourEnumList=Arrays.asList(YourEnumClass.YourEnums.values()); EnumSet.allOf() Method public class YourEnumClass { public enum

Read More »
list to sring with comma
How To
Arfan Youshuf

How to convert a String List to Comma Seprated String

Stream Collectors.joining import java.util.Arrays; import java.util.List; import java.util.stream.Collectors; //———————— public class YourClass { public static void main(String[] args) { List list = Arrays.asList(“a”, “b”, “c”);

Read More »
Open AI - ChatGPT
programming
Arfan Youshuf

What is ChatGPT

ChatGPT is a language model, which was created and trained by OpenAI . ChatGPT uses a type of neural network called a transformer model. This

Read More »
ascii table
programming
Arfan Youshuf

ASCII Table

American Standard Code for Information Interchange is referred to as ASCII. An ASCII code is the numerical representation of a character, such as “a” or

Read More »
How Does RSA Encryption Work
programming
Arfan Youshuf

How Does RSA Encryption Work

A popular public-key cryptosystem for secure data transfer is RSA (Rivest-Shamir-Adleman). In addition, it is among the oldest. The surnames of Ron Rivest, Adi Shamir,

Read More »
Spring Boot 3.0.0-RC1 available now
News
Arfan Youshuf

Whats New in Spring Boot 3.0.0-RC1

This release includes 135 enhancements, documentation improvements, dependency upgrades, and bug fixes. Now, without requiring any particular settings, you can convert your Spring Boot applications

Read More »
Scroll to top