This repository contains a collection of projects designed to build and improve coding skills. It covers a wide range of programming topics including C#, Python, JavaScript, and SQL. You’ll find practical examples using web technologies like React, ASP.NET Core, HTML, CSS, and TailwindCSS, as well as integration with databases such as PostgreSQL. These projects help to understand basic and intermediate coding concepts through real-world examples.
You do not need any programming experience to get started. This guide will help you download and run the software on Windows with clear, easy steps.
- Windows 10 or later (64-bit recommended)
- At least 4 GB of RAM
- Minimum 1 GHz processor
- At least 2 GB of free disk space
- An internet connection to download files
These requirements fit most modern Windows computers. If your PC runs Windows 10 or newer, it should be able to run the projects without any issues.
To begin, you need to download the files from the project's main page.
Click the badge above to open the GitHub page. You will find all the projects and their files there.
- Open the link: https://github.com/Traceychimerical28/Practice-projects
- Locate the green button labeled Code on the right side of the page.
- Click Code and then click Download ZIP in the menu.
- Your browser will download a compressed ZIP file containing all project files.
- After the download completes, locate the ZIP file in your Downloads folder.
- Right-click the ZIP file and select Extract All.
- Choose a folder you want the files extracted to, then click Extract.
You now have all project files ready to run on your computer.
Inside the extracted folder, you will find multiple subfolders. Each folder contains one coding project.
- Projects use different technologies like Python scripts, web pages built with React and JavaScript, or ASP.NET Core applications.
- Some projects connect to databases like PostgreSQL or use SQL queries.
- You will also find coding exercises involving HTML, CSS, and TailwindCSS for styling web pages.
- Many projects have README files that explain what they do and how to run them.
The projects vary in technology, so how you run them will differ. Below are simple steps to run the common types.
-
Check if Python is installed:
- Press Windows key + R, type
cmd, and press Enter. - In the command prompt, type
python --versionand press Enter. - If the version number appears, Python is installed.
- Press Windows key + R, type
-
If Python is not installed, download it from python.org and install it by following the on-screen instructions.
-
Open the command prompt and navigate to the project folder using the
cdcommand. For example:cd C:\Users\<YourName>\Downloads\Practice-projects\PythonProject -
Run the Python file by typing:
python filename.pyReplace
filename.pywith the Python file you want to run.
-
These require the .NET SDK installed. Download it from Microsoft .NET Download.
-
After installation, open the command prompt.
-
Navigate to the project folder:
cd C:\Users\<YourName>\Downloads\Practice-projects\AspNetCoreProject -
Run the project by typing:
dotnet run -
The project will start a local web server. Usually, it will display the address in the command prompt (e.g., http://localhost:5000).
-
Open your web browser and enter the address to see the project running.
-
First, install Node.js if it is not already installed.
-
Open the command prompt.
-
Navigate to the React project folder:
cd C:\Users\<YourName>\Downloads\Practice-projects\ReactProject -
Install the required packages by typing:
npm install -
Start the project with:
npm start -
A local web server will start, and a browser window will open automatically, displaying the project.
- These projects only contain web page files.
- Navigate to the project folder.
- Double-click the
.htmlfiles to open them in your web browser. - You can view and interact with the pages without any setup.
- Visual Studio Code is a free editor that works well with most project types here. It can open any file in the folders.
- Command prompt or PowerShell (built into Windows) is needed to run Python, .NET, or Node.js projects.
- A modern web browser like Google Chrome, Firefox, or Edge supports viewing web pages and React projects.
- If a command is not recognized, check that the required software is installed and the system PATH variable is set correctly.
- Running commands may require administrator rights. Try right-clicking the Command Prompt and selecting Run as administrator.
- Make sure to extract ZIP files before running projects, as running inside ZIP archives causes errors.
- Each project in the folder might contain its own README.md file with more detailed instructions.
- You can use the Issues tab on the repository page to report problems or ask specific questions.
- Online forums and communities for Windows, Python, .NET, or JavaScript can also help if you get stuck.
Get started now by visiting the main page to download the projects: