Skip to content

Latest commit

 

History

History
75 lines (67 loc) · 2.39 KB

README.md

File metadata and controls

75 lines (67 loc) · 2.39 KB

simple-code-ideas

A compilation of good ideas for those new programmers.

Status:

✔️ Done ⛔ Developing ❌ Not started
2 1 4

⚠️ Suggestions

to be developed... [pull request?]

Ideas

  1. Math Solver
  2. Memo
  3. Wallpaper Changer
  4. Timer
  5. Quiz
  6. Money Counter ✔️
  7. Password Generator ✔️

A program with modules to solve mathematical equations (each module must be a "mathematical formula").

Example:

input: bhaskara a=2, b=12, c=-14
output: delta=256, x1=1, x2=-7

Status: ❌


A notepad for saving text, images and videos. (change the date format depending on your country).

Example:

input: today I coded my first program! +img[iUrl] +vid[vUrl]
output: saved. (title/date/time)
output: new note, edit notes, close

Status: ❌


A program that searches for images and allows the user to change their background image.

Example:

input: birds
output: [img1, img2, ..., imgN]
input: 2

Status: ❌


A timer + clock + alarm (change the format depending on your country).

Example:

input: clock
output: 02:00 PM

Status: ⛔


A quiz with random questions and correct answers, practically a game, an example: 10 questions, the highest score wins.

Example:

output: A or B?
input: B
output: True

Status: ❌


User enters an X amount of money, the output must be the same amount but separated into dollars and cents.

Example:

input: 14.50
output: [10, 2, 2, .50]

Status: ✔️


Just run and copy your strong password.

Example:

output: sTr0nG_!p4sSw0rD=

Status: ✔️