From 668b0a4c6ddf6e6560e5e0d6d26bd222c2172905 Mon Sep 17 00:00:00 2001 From: xdvrx1 Date: Tue, 3 Nov 2020 09:18:51 +0800 Subject: [PATCH 01/20] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index a25064a..faa99ab 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,8 @@ # Java Projects +[![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Fxdvrx1%2Fjava&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=PAGE+VIEWS&edge_flat=false)](https://hits.seeyoufarm.com) + ![picture](resources/picture.png) When you are at GitHub, every subdirectory of this repo From e4cf7e3ab211ec21eed6bc5b95381d940a144c9b Mon Sep 17 00:00:00 2001 From: xdvrx1 Date: Tue, 9 Feb 2021 14:45:44 +0800 Subject: [PATCH 02/20] Update README.md --- README.md | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index faa99ab..0958f49 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,13 @@ source codes. Thanks! +## Subdirectories +And if you want to read the details of each subdirectory: + +1. [Java Web Server](https://github.com/xdvrx1/lightweight-web-server/) +2. [Java Converter App](https://github.com/xdvrx1/converter-app/) +3. [Java Flappy Bird](https://github.com/xkcph2017x/FlappyBird) + ## Java Highlights > - Java has an excellent reputation in web development. > @@ -39,19 +46,6 @@ where you don't need to install external UI library for your programs. > > - Object-Oriented Programming (OOP) is truly achieved in Java programming. -## Subdirectories -And if you want to read the details of each subdirectory: - -[![Java Web Server](resources/picture1.png)](https://github.com/xdvrx1/lightweight-web-server/) - -*** - -[![Java Converter App](resources/picture2.png)](https://github.com/xdvrx1/converter-app) - -*** - -[![Java Flappy Bird](resources/picture3.png)](https://github.com/xkcph2017x/FlappyBird) - ## Compiling From 75e21b16206bb4cf69ec1945843d2f6580c10a6b Mon Sep 17 00:00:00 2001 From: xdvrx1 Date: Tue, 9 Feb 2021 14:47:04 +0800 Subject: [PATCH 03/20] Update README.md --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 0958f49..29b6c5b 100644 --- a/README.md +++ b/README.md @@ -26,8 +26,6 @@ source codes. Thanks! ## Subdirectories -And if you want to read the details of each subdirectory: - 1. [Java Web Server](https://github.com/xdvrx1/lightweight-web-server/) 2. [Java Converter App](https://github.com/xdvrx1/converter-app/) 3. [Java Flappy Bird](https://github.com/xkcph2017x/FlappyBird) From 03619f5ea25360dde60ffbbc2999776cb08e74fd Mon Sep 17 00:00:00 2001 From: xdvrx1 Date: Tue, 9 Feb 2021 15:17:32 +0800 Subject: [PATCH 04/20] Update README.md --- README.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 29b6c5b..66d6fb2 100644 --- a/README.md +++ b/README.md @@ -12,8 +12,12 @@ [![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Fxdvrx1%2Fjava&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=PAGE+VIEWS&edge_flat=false)](https://hits.seeyoufarm.com) -![picture](resources/picture.png) +## Subdirectories +1. [Java Web Server](https://github.com/xdvrx1/lightweight-web-server/) +2. [Java Converter App](https://github.com/xdvrx1/converter-app/) +3. [Java Flappy Bird](https://github.com/xkcph2017x/FlappyBird) +## Intro When you are at GitHub, every subdirectory of this repo is a separate sample project that you can use if you have a similar project. @@ -25,11 +29,6 @@ source codes. Thanks! -## Subdirectories -1. [Java Web Server](https://github.com/xdvrx1/lightweight-web-server/) -2. [Java Converter App](https://github.com/xdvrx1/converter-app/) -3. [Java Flappy Bird](https://github.com/xkcph2017x/FlappyBird) - ## Java Highlights > - Java has an excellent reputation in web development. > From 81de39038b3bcab3f46471f1143a79e80875339d Mon Sep 17 00:00:00 2001 From: xdvrx1 Date: Fri, 23 Apr 2021 19:29:54 +0800 Subject: [PATCH 05/20] Update README.md --- README.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/README.md b/README.md index 66d6fb2..b05fa54 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,35 @@ where you don't need to install external UI library for your programs. > > - Object-Oriented Programming (OOP) is truly achieved in Java programming. +## About Object-Oriented Programming (OOP) +The C language is excellent in system programming. +But Java is known for creating applications, particularly +web apps. + +But have you ever asked yourself what is OOP? + +When a programmer is dealing with system programming, +it is not much needed but when he/she is creating +user applications, there is a great need for OOP. + +In basic terms, think of this situation: +if ever virtually you can treat the things +that you are manipulating as real objects +virtually, that will simplify your work, isn't it? + +Say, you can treat exactly a 3D box as +a 3D box. Your code will act upon as if +it's an object. That's the essence of +being an OOP language. If that box will be +expressed using the C language purely, +how would you do it? How would you manipulate +data in terms of that? Surely, that will +complicate things. + +But again, OOP has its own uses, particularly +when you are creating user applications like +web apps. + ## Compiling From 103a972476901a2e3ceed4d0da6c5b2f45f27395 Mon Sep 17 00:00:00 2001 From: xdvrx1 Date: Fri, 14 May 2021 14:59:45 +0800 Subject: [PATCH 06/20] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index b05fa54..30193ae 100644 --- a/README.md +++ b/README.md @@ -82,3 +82,8 @@ web apps. ## License MIT - the permissive license + + + +https://user-images.githubusercontent.com/47092464/118233730-e3995a80-b4c4-11eb-9b10-3b85ea9979de.mov + From df405adb3ef64af23e201d27a533de793307728b Mon Sep 17 00:00:00 2001 From: xdvrx1 Date: Fri, 14 May 2021 15:02:30 +0800 Subject: [PATCH 07/20] Update README.md --- README.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/README.md b/README.md index 30193ae..b05fa54 100644 --- a/README.md +++ b/README.md @@ -82,8 +82,3 @@ web apps. ## License MIT - the permissive license - - - -https://user-images.githubusercontent.com/47092464/118233730-e3995a80-b4c4-11eb-9b10-3b85ea9979de.mov - From aefc0fa4e16bdbb580b463e296bdd6e98550bd4c Mon Sep 17 00:00:00 2001 From: jdevstatic Date: Thu, 21 Apr 2022 23:56:38 +0800 Subject: [PATCH 08/20] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index b05fa54..0c5cf64 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,8 @@ # Java Projects +*`updated 21 April 2022`* + [![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Fxdvrx1%2Fjava&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=PAGE+VIEWS&edge_flat=false)](https://hits.seeyoufarm.com) ## Subdirectories From 8d2c828ceb05114b92618370d596674b2198abcf Mon Sep 17 00:00:00 2001 From: jdevstatic Date: Sat, 4 Jun 2022 18:18:44 +0800 Subject: [PATCH 09/20] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0c5cf64..22fb862 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ is a separate sample project that you can use if you have a similar project. But when you are viewing this -right now as web page in `xdvrx1.github.io` domain, +right now as web page in `jdevstatic.github.io` domain, you need to click `View on GitHub` to download the source codes. From 7b8816fe4f492cc9074f11fce1204529c1e2012e Mon Sep 17 00:00:00 2001 From: jdevstatic Date: Thu, 4 Aug 2022 23:40:17 +0800 Subject: [PATCH 10/20] Update README.md --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 22fb862..818fb14 100644 --- a/README.md +++ b/README.md @@ -10,14 +10,15 @@ # Java Projects -*`updated 21 April 2022`* +*`updated 4 August 2022`* [![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Fxdvrx1%2Fjava&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=PAGE+VIEWS&edge_flat=false)](https://hits.seeyoufarm.com) ## Subdirectories -1. [Java Web Server](https://github.com/xdvrx1/lightweight-web-server/) -2. [Java Converter App](https://github.com/xdvrx1/converter-app/) +1. [Java Web Server](https://github.com/jdevstatic/lightweight-web-server/) +2. [Java Converter App](https://github.com/jdevstatic/converter-app/) 3. [Java Flappy Bird](https://github.com/xkcph2017x/FlappyBird) +4. [Java Coding Problems](https://github.com/jdevstatic/java-coding-problems) ## Intro When you are at GitHub, every subdirectory of this repo From f878156f56fed31efb7e9f0b5e3a2d17a6faaec5 Mon Sep 17 00:00:00 2001 From: jdevstatic Date: Tue, 9 Apr 2024 00:37:16 +0800 Subject: [PATCH 11/20] Create FUNDING.yml --- .github/FUNDING.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..9e50aa4 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +github: jdevstatic From c431d9db7ce5af36300c7feb1eaac3e578276ccf Mon Sep 17 00:00:00 2001 From: jdevfullstack Date: Sat, 20 Jul 2024 23:57:37 +0800 Subject: [PATCH 12/20] Update README.md --- README.md | 27 ++++++++++----------------- 1 file changed, 10 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 818fb14..0692353 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,5 @@ - - - - # Java Projects -*`updated 4 August 2022`* - [![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Fxdvrx1%2Fjava&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=PAGE+VIEWS&edge_flat=false)](https://hits.seeyoufarm.com) ## Subdirectories @@ -31,6 +19,16 @@ you need to click `View on GitHub` to download the source codes. Thanks! + +## Disclaimer +Please note that these projects are presented as a showcase of my work during a +specific period. They represent a snapshot of my skills and accomplishments +at that time. As such, these projects are no longer actively maintained or updated. +They are kept public for demonstration purposes and may not reflect my current +abilities or the latest best practices in the field. + +However, feel free to learn from these archived projects, +preserved as they were during that specific period ! ## Java Highlights > - Java has an excellent reputation in web development. @@ -78,10 +76,5 @@ web apps. ## Compiling -## Contributing -1. Fork the repo! -2. Then, made changes and create a pull request. -3. If not fork, just please star this. Thanks! - ## License MIT - the permissive license From 132e7b67b4b7cf9de0e537ef2e088fee98de3391 Mon Sep 17 00:00:00 2001 From: jdevfullstack Date: Sat, 20 Jul 2024 23:58:38 +0800 Subject: [PATCH 13/20] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 0692353..68da6a6 100644 --- a/README.md +++ b/README.md @@ -2,12 +2,6 @@ [![Hits](https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https%3A%2F%2Fgithub.com%2Fxdvrx1%2Fjava&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=PAGE+VIEWS&edge_flat=false)](https://hits.seeyoufarm.com) -## Subdirectories -1. [Java Web Server](https://github.com/jdevstatic/lightweight-web-server/) -2. [Java Converter App](https://github.com/jdevstatic/converter-app/) -3. [Java Flappy Bird](https://github.com/xkcph2017x/FlappyBird) -4. [Java Coding Problems](https://github.com/jdevstatic/java-coding-problems) - ## Intro When you are at GitHub, every subdirectory of this repo is a separate sample project that you can use @@ -30,6 +24,12 @@ abilities or the latest best practices in the field. However, feel free to learn from these archived projects, preserved as they were during that specific period ! +## Subdirectories +1. [Java Web Server](https://github.com/jdevstatic/lightweight-web-server/) +2. [Java Converter App](https://github.com/jdevstatic/converter-app/) +3. [Java Flappy Bird](https://github.com/xkcph2017x/FlappyBird) +4. [Java Coding Problems](https://github.com/jdevstatic/java-coding-problems) + ## Java Highlights > - Java has an excellent reputation in web development. > From 5370726578297f107f67ddaa7ade9c07b168d5e5 Mon Sep 17 00:00:00 2001 From: jdevfullstack Date: Sat, 20 Jul 2024 23:59:51 +0800 Subject: [PATCH 14/20] update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 68da6a6..29f0924 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ is a separate sample project that you can use if you have a similar project. But when you are viewing this -right now as web page in `jdevstatic.github.io` domain, +right now as web page in `jdevfullstack.github.io` domain, you need to click `View on GitHub` to download the source codes. @@ -25,10 +25,10 @@ However, feel free to learn from these archived projects, preserved as they were during that specific period ! ## Subdirectories -1. [Java Web Server](https://github.com/jdevstatic/lightweight-web-server/) -2. [Java Converter App](https://github.com/jdevstatic/converter-app/) +1. [Java Web Server](https://github.com/jdevfullstack/lightweight-web-server/) +2. [Java Converter App](https://github.com/jdevfullstack/converter-app/) 3. [Java Flappy Bird](https://github.com/xkcph2017x/FlappyBird) -4. [Java Coding Problems](https://github.com/jdevstatic/java-coding-problems) +4. [Java Coding Problems](https://github.com/jdevfullstack/java-coding-problems) ## Java Highlights > - Java has an excellent reputation in web development. From f818bcf3d6fa9ed611277b61035745052c458962 Mon Sep 17 00:00:00 2001 From: jdevfullstack Date: Sun, 21 Jul 2024 00:01:25 +0800 Subject: [PATCH 15/20] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 29f0924..9984ac1 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ preserved as they were during that specific period ! ## Subdirectories 1. [Java Web Server](https://github.com/jdevfullstack/lightweight-web-server/) -2. [Java Converter App](https://github.com/jdevfullstack/converter-app/) +2. [Java Converter App](https://github.com/jdevfullstack-projects/converter-app/) 3. [Java Flappy Bird](https://github.com/xkcph2017x/FlappyBird) 4. [Java Coding Problems](https://github.com/jdevfullstack/java-coding-problems) From 3450eefad56052fa474c6f3079a8915dcbae02ac Mon Sep 17 00:00:00 2001 From: jdevfullstack Date: Sun, 21 Jul 2024 00:02:47 +0800 Subject: [PATCH 16/20] Update README.md --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 9984ac1..23ddbee 100644 --- a/README.md +++ b/README.md @@ -31,18 +31,18 @@ preserved as they were during that specific period ! 4. [Java Coding Problems](https://github.com/jdevfullstack/java-coding-problems) ## Java Highlights -> - Java has an excellent reputation in web development. -> -> - Java has a good User Interface library, the Swing and JavaFX, +- Java has an excellent reputation in web development. + +- Java has a good User Interface library, the Swing and JavaFX, where you don't need to install external UI library for your programs. -> -> - Java has also an excellent reputation in network programming. -> -> - Java is excellent in modular programming through its `beans`. -> -> - Reputable frameworks like Spring Boot and Spring are based on Java. -> -> - Object-Oriented Programming (OOP) is truly achieved in Java programming. + +- Java has also an excellent reputation in network programming. + +- Java is excellent in modular programming through its `beans`. + +- Reputable frameworks like Spring Boot and Spring are based on Java. + +- Object-Oriented Programming (OOP) is truly achieved in Java programming. ## About Object-Oriented Programming (OOP) The C language is excellent in system programming. From a9fe3ba31bcb7eff62526b81dbaae3ea4e5b85e0 Mon Sep 17 00:00:00 2001 From: jdevfullstack Date: Sun, 21 Jul 2024 01:53:35 +0800 Subject: [PATCH 17/20] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 23ddbee..7621e20 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ when you are creating user applications like web apps. ## Compiling - + ## License MIT - the permissive license From bcf9c07204aaa2e657c692f67fc1b83d0f047ead Mon Sep 17 00:00:00 2001 From: jdevfullstack Date: Sun, 21 Jul 2024 02:04:30 +0800 Subject: [PATCH 18/20] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7621e20..b8b99b7 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ when you are creating user applications like web apps. ## Compiling - + ## License MIT - the permissive license From 6122e3c2abeb4536a421e772d8b2b1f61668c1c9 Mon Sep 17 00:00:00 2001 From: jdevfullstack Date: Mon, 22 Jul 2024 21:09:38 +0800 Subject: [PATCH 19/20] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index b8b99b7..9be3f2c 100644 --- a/README.md +++ b/README.md @@ -78,3 +78,9 @@ web apps. ## License MIT - the permissive license + +## More Of My Content +- [jdevfullstack Profile](https://github.com/jdevfullstack) +- [jdevfullstack Repos](https://github.com/jdevfullstack?tab=repositories) +- [jdevfullstack Projects](https://github.com/jdevfullstack-projects) +- [jdevfullstack Tutorials](https://github.com/jdevfullstack-tutorials) From daed0f25987178dd2e96a46e2ad06912105e3747 Mon Sep 17 00:00:00 2001 From: jdevfullstack Date: Sat, 27 Jul 2024 18:54:53 +0800 Subject: [PATCH 20/20] Update README.md --- README.md | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 9be3f2c..cbe38e4 100644 --- a/README.md +++ b/README.md @@ -13,16 +13,18 @@ you need to click `View on GitHub` to download the source codes. Thanks! - + ## Disclaimer -Please note that these projects are presented as a showcase of my work during a -specific period. They represent a snapshot of my skills and accomplishments -at that time. As such, these projects are no longer actively maintained or updated. -They are kept public for demonstration purposes and may not reflect my current -abilities or the latest best practices in the field. - -However, feel free to learn from these archived projects, -preserved as they were during that specific period ! +Please note that some of these projects are presented as a showcase +of my work during a specific period. They represent a snapshot of my +skills and accomplishments at that time. As such, these projects are +no longer actively maintained or updated. These repositories contain +a disclaimer indicating that they are archived. They are kept public +for demonstration purposes and may not reflect my current abilities +or the latest best practices in the field. + +However, feel free to learn from these archived projects, preserved +as they were during that specific period! ## Subdirectories 1. [Java Web Server](https://github.com/jdevfullstack/lightweight-web-server/) pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy