Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juliasouz/julia-projects
A collection of projects developed in Julia for learning and practice.
https://github.com/juliasouz/julia-projects
data-science julia julia-language julialang scientific-computing
Last synced: about 1 month ago
JSON representation
A collection of projects developed in Julia for learning and practice.
- Host: GitHub
- URL: https://github.com/juliasouz/julia-projects
- Owner: juliasouz
- Created: 2024-08-23T20:03:33.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-08-26T00:11:36.000Z (3 months ago)
- Last Synced: 2024-09-30T07:43:24.083Z (about 2 months ago)
- Topics: data-science, julia, julia-language, julialang, scientific-computing
- Language: Julia
- Homepage:
- Size: 2.93 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Julia Projects
## Repository Overview
This repository contains two distinct Julia projects: Coin Toss Simulator and Password Generator. Each project is designed to be simple yet effective in showcasing the power and versatility of the Julia programming language.
### 1. Coin Toss Simulator
- **Description**: This project simulates the flipping of a coin multiple times and records the results. It is a simple yet effective way to understand random number generation and conditional statements in Julia.
- **Key Features**:
- Simulates a coin toss and returns "Heads" or "Tails";
- Allows the user to specify the number of tosses;
- Displays the results of each toss and the final count of heads and tails.
- **Technology Used**: Julia.### 2. Password Generator
- **Description**: This project generates a complex password based on user-specified length. It ensures the password contains a mix of lowercase and uppercase letters, digits, and special characters.
- **Key Features**:
- Generates a password with a minimum length of 8 characters;
- Ensures the password includes at least one lowercase letter, one uppercase letter, one digit, and one special character;
- Allows the user to specify the desired length of the password.
- **Technologies Used**: Julia, Random module.