Skip to content

Commit 28a6d81

Browse files
committed
added macro for files
1 parent d75f7e1 commit 28a6d81

36 files changed

+36
-36
lines changed

data-structure-algorithms/data-structure/array.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../../README.md)
1+
[Back to Home](../../README.md#data-structure--algorithm)
22
# The Overview of Array
33
An array is a data structure that stores a
44
fixed-size sequence of elements of the same

data-structure-algorithms/data-structure/linked-list.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../../README.md)
1+
[Back to Home](../../README.md#data-structure--algorithm)
22
# The Overview of Linked List
33
A linked list is a linear data structure in which
44
elements are stored in nodes. Each node contains

data-structure-algorithms/data-structure/stack.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../../README.md)
1+
[Back to Home](../../README.md#data-structure--algorithm)
22
# The Overview of Stack
33
A stack is a linear data structure that stores
44
a collection of elements, where the order in

data-structure-algorithms/introduction.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#data-structure--algorithm)
22
# The Overview of Data Structure & Algorithm
33
Data structures and algorithms are fundamental
44
concepts in computer science and programming.

docker/instruction.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#docker)
22
# The Overview of Docker
33
Docker is a popular platform for building,
44
shipping, and running applications in containers.

java/java-annotation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#java)
22
# The Overview of Java Annotation
33
Java annotation is a feature introduced in Java 5
44
that allows developers to add metadata to Java code

java/java-basic-interview-questions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#java)
22
# The Overview of Java Basic Interview Questions
33
Here are some Java basic interview questions
44
and their answers:

java/java-basic-syntax.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#java)
22
# The Overview of Java Basic Syntax
33
Here are some basic Java syntax rules:
44

java/java-class-file.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#java)
22
# The Overview of Java Class File
33
A Java class file is a binary file
44
that contains compiled Java bytecode.

java/java-classloader.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#java)
22
# The Overview of Java Classloader
33
In Java, a class loader is a subsystem
44
of the Java Virtual Machine (JVM) that

java/java-collection.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#java)
22
# The Overview of Java
33
Java Collection Framework is a set of classes
44
and interfaces in Java that provide an architecture

java/java-exception.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#java)
22
# The Overview of Java Exception
33
In Java, an exception is an event
44
that occurs during the execution of a program

java/java-garbage-collector.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#java)
22
# The Overview of Java Garbage Collector
33
In Java, the garbage collector is responsible for
44
automatically freeing up memory that is no longer being used by the program.

java/java-generics.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#java)
22
# The Overview of Java Generics
33
Java generics is a feature in Java programming
44
language that allows you to write more generic

java/java-introduction.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#java)
22
# The Introduction of Java Language
33
Java is a popular programming language
44
that was first released in 1995 by Sun Microsystems.

java/java-io.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#java)
22
# The Overview of Java I/O
33
Java I/O (Input/Output) refers to the set of classes
44
and interfaces provided by Java for reading

java/java-memory-model.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#java)
22
# The Overview of Java Memory Model
33
The Java Memory Model (JMM) is a set of rules
44
that govern how threads interact with the memory

java/java-proxy.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#java)
22
# The Overview of Java Proxy
33
In Java, there are two types of proxies:
44
dynamic proxies and static proxies.

java/java-reflection.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#java)
22
# The Overview of Java Reflection
33
Java Reflection is a feature in the Java
44
programming language that allows you to inspect

java/java-serialization.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#java)
22
# The Overview Java Serialization
33
Java Serialization is a mechanism provided
44
by the Java programming language to enable

java/java-thread.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#java)
22
# The Overview of Java Thread
33
Java Thread is a lightweight process
44
that enables multiple threads of execution

java/java-virtual-machine.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#java)
22
# The Overview of Java Virtual Machine
33
The Java Virtual Machine (JVM) is a software
44
that executes Java bytecode.

jdbc/introduction.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#jdbc)
22
# The Overview of JDBC
33
JDBC stands for Java Database Connectivity,
44
and it is a standard API for accessing relational

jdbc/jdbc-connection-pooling.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#jdbc)
22
# The Overview of JDBC Connection Pooling
33
JDBC Connection Pooling is a technique used
44
to improve the performance and scalability

mybatis/introduction.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#mybatis)
22
# The Overview of MyBatis
33
MyBatis is a Java-based persistence framework that
44
simplifies database access. It provides an easy way

mybatis/mybatis-guidelines.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#mybatis)
22
# The Overview of MyBatis Guidelines
33
Here are some guidelines for working with MyBatis:
44

mybatis/mybatis-tutorials.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#mybatis)
22
# The Overview of MyBatis Tutorials
33
Here are some useful tutorials to help you get
44
started with MyBatis:

redis/introduction.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#redis)
22
# The Overview of Redis
33
Redis is an open-source, in-memory data structure store.
44
It is often used as a database, cache, and message broker.

redis/redis-cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#redis)
22
# Redis CLI
33
Redis CLI (Command Line Interface) is a command-line
44
tool used to interact with Redis, an in-memory key-value

redis/redis-client-for-java.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#redis)
22
# The Overview of Redis Client for Java
33
There are several Redis clients available for Java
44
that allow you to interact with Redis.

redis/redis-data-types.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#redis)
22
# The Overview of Redis Data Types
33
Redis supports the following data types:
44

redis/redis-deployment-models.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#redis)
22
# The Overview of Redis Deployment Models
33
Redis can be deployed in different ways depending
44
on the use case, performance requirements, scalability,

redis/redis-insight.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#redis)
22
# RedisInsight
33
RedisInsight is a graphical user interface (GUI)
44
and management tool for Redis that allows users

redis/redis-installation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#redis)
22
# Install Redis on macOS
33
Use Homebrew to install and start Redis on macOS
44

security/ssl_or_tls.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#security)
22
# SSL
33
SSL (Secure Sockets Layer) is a security protocol
44
that provides a secure and encrypted connection

terminology/on-premises.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[Back to Home](../README.md)
1+
[Back to Home](../README.md#terminology)
22
# On-Premises
33
On-Premises terminology refers to the computing
44
infrastructure that is deployed within an organization's

0 commit comments

Comments
 (0)