Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions Projects/1-Beginner/Password-Strength-Checker.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Password Strength Checker Idea

**Tier:** 1-Beginner

A web application that helps users create strong passwords by providing real-time feedback on password strength.

## User Stories

- [ ] User can enter a password into an input field
- [ ] User can see strength indicators as they type:
- Password length (minimum 8 characters)
- Contains uppercase letters
- Contains lowercase letters
- Contains numbers
- Contains special characters
- [ ] User can see the overall password strength rating (Weak, Medium, Strong)
- [ ] User receives real-time feedback as they type
- [ ] User can see suggestions for improving their password

## Bonus features

- [ ] User can generate a random strong password
- [ ] User can copy the password to clipboard with a button click
- [ ] User can see a password strength meter/bar that updates in real-time
- [ ] User can toggle password visibility (show/hide)
- [ ] User can see how long it would take to crack the password

## Useful links and resources

- [zxcvbn - Password Strength Estimation Library](https://github.com/dropbox/zxcvbn)
- [MDN Web Docs - Regular Expressions](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions)
- [How to Create a Strong Password (Article)](https://www.security.org/how-secure-is-my-password/)
- [HTML DOM Input Password](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/password)

## Example projects

- [Password Strength Checker with zxcvbn](https://codepen.io/preserveddarnell/pen/oNNQxQm)
- [Password Strength Meter](https://github.com/pascalbell/password-strength-meter)
- [React Password Strength Checker](https://github.com/mloureiro/react-password-strength)
Comment on lines +30 to +39
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

Verify external links and example project references.

The resource links and example projects should be validated to ensure they remain current and accessible. Given that documentation may become stale, please verify:

  • The zxcvbn library link and its current status
  • The MDN documentation links
  • The CodePen and GitHub example projects are still available and provide relevant implementations

Run the following script to verify link accessibility:


🏁 Script executed:

#!/bin/bash
# Description: Verify that external links in Password-Strength-Checker.md are accessible

links=(
  "https://github.com/dropbox/zxcvbn"
  "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions"
  "https://www.security.org/how-secure-is-my-password/"
  "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/password"
  "https://codepen.io/preserveddarnell/pen/oNNQxQm"
  "https://github.com/pascalbell/password-strength-meter"
  "https://github.com/mloureiro/react-password-strength"
)

for link in "${links[@]}"; do
  status=$(curl -s -o /dev/null -w "%{http_code}" "$link")
  echo "$link - Status: $status"
done

Length of output: 493


Remove or replace broken example project links.

Three of the example projects are no longer accessible:

  • CodePen preserveddarnell/pen/oNNQxQm returns 403 (Forbidden)
  • pascalbell/password-strength-meter repository returns 404 (deleted)
  • mloureiro/react-password-strength repository returns 404 (deleted)

Either remove these non-functional links or replace them with current, accessible implementations that demonstrate password strength validation.

🤖 Prompt for AI Agents
In Projects/1-Beginner/Password-Strength-Checker.md around lines 30–39, three
example project links are broken (CodePen preserveddarnell/pen/oNNQxQm returns
403; pascalbell/password-strength-meter and mloureiro/react-password-strength
return 404); remove those non-functional links or replace them with live,
accessible examples (e.g., the official zxcvbn repo demo, an OWASP/MDN example,
or a working CodePen/GitHub repo demonstrating password strength meters), and
verify each replacement URL loads successfully before committing.

40 changes: 40 additions & 0 deletions Projects/1-Beginner/Weather-Dashboard.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Weather Dashboard

**Tier:** 1-Beginner

Create a weather dashboard that fetches and displays current weather conditions and forecasts for different cities.

## User Stories

- [ ] User can enter a city name to get weather information
- [ ] User can see the current temperature, humidity, wind speed, and weather conditions
- [ ] User can see a weather icon representing the current conditions
- [ ] User can see the location and current date/time
- [ ] User can view a 5-day weather forecast
- [ ] User can toggle between Celsius and Fahrenheit

## Bonus features

- [ ] User can see their current location's weather automatically using geolocation
- [ ] User can save favorite locations for quick access
- [ ] User can see sunrise and sunset times
- [ ] User can see an air quality index
- [ ] User can see weather alerts for severe conditions
- [ ] User can see hourly forecasts
- [ ] User can see animated weather icons
- [ ] User can see a map visualization of the weather

## Useful links and resources

- [OpenWeather API](https://openweathermap.org/api) - Free weather data API
- [Geolocation API](https://developer.mozilla.org/en-US/docs/Web/API/Geolocation_API)
- [Weather Icons](https://erikflowers.github.io/weather-icons/)
- [localStorage API](https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage)
- [Chart.js](https://www.chartjs.org/) - For temperature graphs
- [Leaflet](https://leafletjs.com/) - For weather maps

## Example projects

- [Weather App with React](https://github.com/ayushkul/react-weather-app)
- [Vanilla JS Weather App](https://github.com/avinash-kr-pandey/Weather_app)
- [Weather Dashboard Demo](https://weather-dashboard.netlify.app/)
Comment on lines +29 to +40
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

Verify external links and clarify API requirements.

The resources and example projects should be validated. Additionally, consider adding a note about API key requirements:

  • The OpenWeather API (line 29) requires free registration and an API key—this should be mentioned in the user stories or bonus features to set expectations
  • Verify all resource links remain current and accessible
  • Confirm the example projects are still maintained and provide relevant implementations

Run the following script to verify link accessibility:


🏁 Script executed:

#!/bin/bash
# Description: Verify that external links in Weather-Dashboard.md are accessible

links=(
  "https://openweathermap.org/api"
  "https://developer.mozilla.org/en-US/docs/Web/API/Geolocation_API"
  "https://erikflowers.github.io/weather-icons/"
  "https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage"
  "https://www.chartjs.org/"
  "https://leafletjs.com/"
  "https://github.com/ayushkul/react-weather-app"
  "https://github.com/avinash-kr-pandey/Weather_app"
  "https://weather-dashboard.netlify.app/"
)

for link in "${links[@]}"; do
  status=$(curl -s -o /dev/null -w "%{http_code}" "$link")
  echo "$link - Status: $status"
done

Length of output: 517


Fix broken example project link and document API key requirement.

One of the example projects is no longer accessible:

  • https://github.com/avinash-kr-pandey/Weather_app returns a 404—remove this link or replace with a working alternative

Additionally, the OpenWeather API requires free registration for an API key. This dependency should be mentioned in the user stories or bonus features to set expectations for developers using this project.

🤖 Prompt for AI Agents
In Projects/1-Beginner/Weather-Dashboard.md around lines 29 to 40, one example
project link (https://github.com/avinash-kr-pandey/Weather_app) is broken and
the OpenWeather API dependency lacks mention of the required API key; remove or
replace the broken GitHub link with a working alternative (or drop it), and
update the project description or user stories/bonus features to explicitly
state that OpenWeather requires free registration for an API key and where to
place it (e.g., environment variable or config) so contributors know this
prerequisite.