Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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.