ソースを参照

Update 'README.md'

Kristofer Younger 6 年 前
コミット
709ec5dcbe
共有1 個のファイルを変更した97 個の追加1 個の削除を含む
  1. 97
    1
      README.md

+ 97
- 1
README.md ファイルの表示

@@ -1,3 +1,99 @@
1 1
 # PossibleMiniProjects
2 2
 
3
-some ideas for smaller web application projects.
3
+some ideas for smaller web application projects.
4
+
5
+### A WEIGHT TRACKER APP
6
+
7
+It accepts a set of manual entries of weight measurements taken at different dates
8
+It can plot a graph
9
+It can allow to track multiple entities, for example more than one person weight
10
+Store them somewhere
11
+### A CALCULATOR APP
12
+
13
+A standard calculator: numbers, +, -, *, /, and the result
14
+
15
+### A BOOK DATABASE
16
+
17
+Enter the books you own
18
+Enter the books you’d like to buy
19
+Store the book info, images
20
+### A RECIPES APP
21
+
22
+Enter a name, a description with the steps
23
+Have pictures
24
+Have some ranking for difficulty and quality
25
+Add the time needed
26
+Have different steps with a picture for each
27
+Store them somewhere
28
+
29
+### A BILL TRACKER
30
+
31
+Log bills, amounts and date
32
+List bills
33
+Have a few graphs (this year / last year)
34
+Store them somewhere
35
+### AN EXPENSES TRACKER
36
+
37
+Log expenses, tag them (or have categories)
38
+List expenses
39
+Have a few graphs (last month / last year)
40
+Store them somewhere
41
+### A CHAT APPLICATION
42
+
43
+Some sort of stripped-down Slack
44
+People enter without authentication and are assigned a name, stored for when they come back
45
+Store the history
46
+Add notifications
47
+### A NOTES APP
48
+
49
+Add a new note
50
+List all your notes in the sidebar
51
+Store them somewhere
52
+### A PERSONAL DIARY APP
53
+
54
+Add entries with a date and text
55
+Entries have a date
56
+Show more recent first
57
+Attach pictures
58
+Store them somewhere
59
+### A POMODORO APP
60
+
61
+Enter a time
62
+Start timer
63
+Alert when the time is over
64
+
65
+### A MEME GENERATOR
66
+
67
+Have 10 popular meme images
68
+Let the user add the text
69
+Result is image + text
70
+Store the history
71
+### TIC-TAC-TOE GAME
72
+
73
+We all know what a tic-tac-toe game is 🙂
74
+
75
+### A BLOG ENGINE
76
+
77
+Allow to login and add posts
78
+Visitors can add comments
79
+Store the data somewhere
80
+### A Q&A ENGINE
81
+
82
+Allow to login
83
+Allow to add questions
84
+Allow to answer to questions
85
+Allow original user to choose the best question
86
+Store the data somewhere
87
+### A FORUM ENGINE
88
+
89
+Allow to login
90
+Allow to add posts
91
+Allow to comment on posts
92
+Store the data somewhere
93
+### AN EMBEDDABLE LIVE CHAT
94
+
95
+Think Intercom or Olark.
96
+
97
+Have a “backend” where you respond
98
+Embed on a web page
99
+Let people write to you privately