CodeCraft Essentials
222 subscribers
187 photos
39 videos
49 files
164 links
Download Telegram
Channel created
Channel photo updated
👋 Hello everyone!

Welcome to our Java Programming Group created by AAiT software engineering students. Our main objective is to assist individuals who are eager to learn Java programming from scratch. We understand that it can be overwhelming to rely solely on books and videos, so we've designed a structured course with daily challenges to keep you engaged and motivated.

Starting tomorrow, we will introduce daily challenges to help you solidify your understanding of Java. Don't worry if you feel uncertain about these challenges. They are not meant for competition, but rather for personal growth. Each challenge aims to help you grasp important concepts and work on related projects. By taking part in this 50-day challenge, you'll build a strong foundation in Java programming, empowering you to confidently tackle real-world projects. Consider creating a 50-day checklist to track your progress along the way!

Our Java coding challenge will kick off tomorrow. In the meantime, feel free to share the group link with your friends and invite them to join us on this exciting learning journey. Together, we'll explore the wonders of Java programming! 🌟
👍4
Good morning everyone, I want you all to download the apps for java programming using the procedures I will send below. Try to follow each steps. And for those of you who don't have PC you can work on your phone by downloading and initializing the app below.
📥 Installing and Setting Up Java Development Environment 🖥📱

Before we dive into the course, let's make sure you have the Java development environment set up. Don't worry if you don't have a laptop; you can also use your mobile phone! 📲

For PC Users

1️⃣ Installing Java Development Kit (JDK)
- Visit the official Oracle website 🌐 (https://www.oracle.com/java/technologies/javase-jdk16-downloads.html) to download the latest JDK version.
- Choose the appropriate JDK version for your operating system (Windows, macOS, or Linux).
- Run the installer and follow the on-screen instructions to complete the installation process.
- Verify the installation by opening a command prompt (or terminal) and typing java -version. It should display the installed JDK version.

2️⃣ Configuring environment variables (PATH, JAVA_HOME)
- On Windows:
- Right-click on "This PC" or "My Computer" and select "Properties" to open the System Properties window.
- Click on "Advanced system settings" and navigate to the "Advanced" tab.
- Click on the "Environment Variables" button.
- In the "System variables" section, find the "Path" variable and click "Edit."
- Add the path to the bin directory of the JDK installation (e.g., C:\Program Files\Java\jdk16\bin).
- Click "OK" to save the changes.
- Verify the configuration by opening a new command prompt and typing java -version.

- On macOS and Linux:
- Open a terminal window.
- Edit the .bash_profile or .bashrc file in your user directory using a text editor (e.g., nano ~/.bash_profile).
- Add the following line at the end of the file: export JAVA_HOME=/path/to/jdk (replace /path/to/jdk with the actual JDK installation path).
- Save the file and exit the text editor.
- In the terminal, run the command source ~/.bash_profile or source ~/.bashrc to apply the changes.
- Verify the configuration by typing java -version in the terminal.

3️⃣ Setting up Integrated Development Environment (IDE)
- Download and install an IDE such as Eclipse (https://www.eclipse.org/downloads/) or IntelliJ IDEA (https://www.jetbrains.com/idea/download/).
- Run the installer and follow the installation instructions.
- Launch the IDE and configure it to use the installed JDK:
- In Eclipse, go to "Window" -> "Preferences" -> "Java" -> "Installed JREs" and add the installed JDK.
- In IntelliJ IDEA, go to "File" -> "Project Structure" -> "SDKs" and add the installed JDK.
- Create a new Java project in the IDE to start coding.

📲 For Android Users 📲

To use Java on your Android device, you can download and install the Jvdroid app from the Play Store. Here are the steps:

1️⃣ Open the following link on your Android device:
[🔗 Jvdroid - IDE for Java](https://play.google.com/store/apps/details?id=ru.iiec.jvdroid)

2️⃣ Tap the "Install" button to begin the download and installation process.
- 📌 Make sure to review the permissions requested by the app and tap "Accept" to proceed with the installation. The app requires certain permissions to function properly.
- Wait for the download and installation to complete. The progress will be displayed on the screen.

3️⃣ Once the installation is finished, you will see an "Open" button. Tap on it to launch the Jvdroid app.

The steps may vary slightly depending on your Android version and device, but the overall process should be similar. Happy coding! 💻
👍1