Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Blog Directory  >  Software Blogs  >  java tutorial : Blog to learn java programming software Blog  > 

PlantUML: Define A Variable
2024-05-07 10:50
PlantUML support two types of variables. a.   Integers b.   Strings: Enclosed in either single or double quotes   You can define a variable using $.!$radius1 = 2… Read More
PlantUML: Use Icons From OpenIconic
2024-05-05 18:58
OpenIconic is an open source icon set. As these icons are integrated with creole parser, you can use them in PlantUML.   How to see all the available icons? Command 'listopeniconic'… Read More
PlantUML: Build A Tree Using Creole
2024-05-05 18:55
Symbols |_ used to build a tree. tree.txt@startuml scale 1.5 Client -> Server: Client send folder structure Server -> Client: Server process the folder note left of Client root… Read More
Points To Consider While Using The Cache
2024-05-05 14:42
A cache is a temporary storage, designed to store the result of resource-intensive tasks and frequently accessed information. By enabling subsequent operations to retrieve data from the cach… Read More
PlantUML: Creole Table
2024-05-05 14:30
Using | separator, we can draw a table. Example|= id |= name |= age | | 1 | Krishna | 34 | | 2 | Ram | 43 |   table.txt @startuml skinparam NoteBorderThicknes… Read More
PlantUML: Creole Headings
2024-05-04 17:42
Example= Extra Large heading == Large heading === Medium heading ==== Small heading heading.txt @startuml scale 1.5 Client -> Server: Send message note left o… Read More
PlantUML: Mix Html And Creole
2024-05-04 17:41
You can mix creole and html togther. mixHtmlCreole.txt@startuml skinparam NoteFontSize 8 scale 1.5 Client -> Server: Send message note left of Client Client is responsible to send… Read More
PlantUML: Creole Horizontal Lines
2024-05-04 17:35
Following snippets draw horizontal lines.---- ==== ____ ....   horizontalLines.txt @startuml skinparam NoteFontSize 8 scale 1.5 Client -> Server: Send messa… Read More
Is Redundancy And Fail Over Are Same?
2024-05-03 12:28
Failover and redundancy are related concepts in computer systems, but they are not exactly the same. Redundancy refers to the presence of duplicate components within a system, whether in… Read More
PlantUML: Creole Bulleted List
2024-04-26 04:16
Bulleted lists are represented using * Example* message 1 * message 2 ** submessage1 ** submessage * message 3 * message 4 ** represent sub message.   bulletedList… Read More
PlantUML: Escape Creole Characters
2024-04-26 04:16
Using ~ (tilde), we can escape creole characters. Example This is not ~*~*printed in bold~*~*   escapeCreole.txt@startuml scale 1.5 Client -> Server: Send message note left… Read More
Debugging Streams With Peek Method
2024-04-25 09:10
Java streams, introduced in Java 8, improvise how the collections of objects are processed. Streams represent a sequence of elements that can be processed using operations provided by the St… Read More
Binary Search With Java.lang.Arrays
2024-04-18 15:37
In the realm of computer science, searching plays a vital role in various algorithms and applications. It's the process of finding a specific item within a collection of items. There are sev… Read More
PlantUML: Add Legend To The Diagram
2024-04-17 04:34
‘legend’ and ‘end legend’ keywords are used to put a legend to the diagram. A legend location can be specified using below keywords combination. a.   le… Read More
2024-04-16 04:21
Using ‘last()’ method of DataFrameGroupBy object, we can retrieve the last row from each group based on the grouping criteria. Exampledata = {'Name': ['Krishna', 'Chamu', 'Joel… Read More
2024-04-13 15:54
Using ‘first()’ method of DataFrameGroupBy object, we can retrieve the first row from each group based on the grouping criteria.   Exampledata = {'Name': ['Krishna', 'Cham… Read More
PlantUML: Asciimath Support
2024-04-12 04:10
Using @startmath/@endmath, we can create standalone AsciiMath formula.   asciiMath.txt@startmath sum_(i=1)^n i^3=((n(n+1))/2)^2 @endmath   Above snippet generat… Read More
Reuse Code Documentation With @inheritDoc
2024-04-11 15:35
Documentation is a crucial aspect of coding, providing insights into the purpose and functionality of various methods and properties. However, maintaining clear and concise documentation can… Read More
2024-04-11 14:42
Using to_csv() method, we can To export data from a Pandas DataFrame to a CSV ((Comma-Separated Values) file. Example 1: Write dataframe to csv file df.to_csv('/Users/Shared/csv/demo1.cs… Read More
2024-04-11 14:41
In this post and coming subsequent posts, I am going to explain the group by operations on DataFrame. What is Group By operation? Group By operation is used to group rows based on one or… Read More
PlantUML: Working With Yaml Document
2024-04-10 04:05
We can visualize the yaml document using PlantUML.   helloworld.txt@startyaml id: 1 name: Krishna address: state: Karnatka city: Bnagalore country: India hobbies: - Playing cri… Read More
2024-04-09 03:38
In this post, I am going to explain how to reshape the dataframe using pivot method.   Signature DataFrame.pivot(index=None, columns=None, values=None)’   Following tabl… Read More
Copy InputStream To OutputStream In Java
2024-04-08 04:40
In Java, copying data from an InputStream to an OutputStream is a common task, especially when dealing with file operations, network communications, or handling HTTP requests. In this blog p… Read More
PlantUML: Working With JSON Data
2024-04-08 03:45
PlantUML helps you to visualize the JSON data. helloworld.txt@startjson { "id" : 1, "name" : "Krishna", "address" : { "state" : "Karnatka", "city" : "Bnagalore", "country" : "In… Read More
OpenCV: Recognize Faces
2024-04-05 04:06
In this post, I am going to explain how to recognize faces using OpenCV built-in face recognizer.   You can download this example from below link. https://github.com/harikrishna553/p… Read More
2024-04-04 11:31
In this post, I am going to explain how to read videos in OpenCV. Videos in OpenCV are read frame by frame. Follow below step-by-step procedure to read the video.   Step 1: Import ope… Read More
2024-04-04 11:31
We can resize the video by resizing the video frame by frame. Following snippet resize the frame or image.def resize_frame(frame, scale_width=0.5, scale_height=0.5): width = int(frame… Read More
OpenCV: Face Detection
2024-03-17 06:09
In this post, I am going to use Haar Cascade Classifiers, to detect the faces in an Image. Haar Cascade Classifiers are machine learning models that have been trained to recognize specific o… Read More
2024-03-12 10:27
One of the ways to classify databases is by how the data is stored on disk: row- or column-wise. Tables can be partitioned either horizontally (storing values belonging to the same row toget… Read More
Volatile And Non-volatile Memory
2024-03-09 08:09
  Volatile Memory Both volatile and non-volatile memory are super important in computers. Volatile memory is like a sticky note - it holds information temporarily and… Read More
2024-02-27 04:58
Multi indexing is a feature, where we have multi levels of indexing to get better performance while processing the data.   I am using below data set to demonstrate the example. Yea… Read More
Multi-level Indexing In Databases
2024-02-14 09:00
Multi-level indexing, often referred to as B-tree indexing, is a hierarchical data structure used in databases for efficiently finding particular records. This approach is invaluable for ext… Read More
Role Of Indexing In Databases
2024-02-14 07:22
Indexing in databases is like using a book's index to find information quickly. Instead of searching every page, you just look up a word in the index and go straight to the page you need. … Read More
Masking Images In OpenCV
2024-02-13 05:34
In this post, I am going to explain how to extract specific portion of the image using masking technique.   Following snippet is used to extract the image of intrest using masking tec… Read More

Share the post

java tutorial : Blog to learn java programming

×

Subscribe to Java Tutorial : Blog To Learn Java Programming

Get updates delivered right to your inbox!

Thank you for your subscription

×