Skip to content

Commit 14603a2

Browse files
committed
Migrate development environment from Windows to macOS and continue project updates
- Shifted primary development environment from Windows to macOS to ensure better performance, stability, and streamlined workflow for Java development. - Removed OS-specific metadata and ensured platform-agnostic project compatibility. - Normalized line endings to LF for cross-platform consistency. - Verified and adjusted file paths, permissions, and encoding settings to suit macOS environment. - Cleaned up unnecessary Windows-generated files and updated Git configuration accordingly. - Future commits and development will now be managed entirely from macOS. This migration ensures a cleaner, more consistent setup moving forward and prepares the project for scalable development across Unix-based systems. Future development will continue on macOS for a smoother, Unix-based experience. Signed-off-by: Someshdiwan <[email protected]>
1 parent 31f2fba commit 14603a2

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

JAVA8/OpenLinks.cmd

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
@echo off
2+
pushd "%~dp0"
3+
4+
:MENU
5+
cls
6+
echo ==============================================================
7+
echo Java 8 - Optional Class Resources
8+
echo ==============================================================
9+
echo 1. 4 Reasons Why You Should Use Java Optional or Not (Medium)
10+
echo 2. GeeksforGeeks - Java 8 Optional Class
11+
echo 3. Exit
12+
echo.
13+
set /p choice=Enter your choice [1-3]:
14+
15+
if "%choice%"=="1" start https://medium.com/javarevisited/4-reasons-why-you-should-use-java-optional-or-not-4e44d51a9645#:~:text=We%20can%20use%20the%20Optional,in%20performance%20and%20code%20cluttering. & goto MENU
16+
if "%choice%"=="2" start https://www.geeksforgeeks.org/java-8-optional-class/?ref=lbp & goto MENU
17+
if "%choice%"=="3" goto END
18+
19+
echo.
20+
echo Invalid choice. Please select 1 to 3.
21+
pause
22+
goto MENU
23+
24+
:END
25+
echo Goodbye!
26+
pause
27+
28+
popd

0 commit comments

Comments
 (0)