1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
diff --git a/articles/single-person-apps.md b/articles/single-person-apps.md
index 3622c07998d7613c3556646a1d8c392cb3b52bb5..60e3491f9fb2fb38748eba8c91d608845e3721c4 100644
--- a/articles/single-person-apps.md
+++ b/articles/single-person-apps.md
@@ -6,17 +6,17 @@ category = "Other"
draft = true
+++
-### Why are so many apps built for >1 users?
+### Why Are So many Apps Built for >1 Users?
I think I know the answer to this, more or less. Most apps are fairly easy to extend from 1 user to 2 users,
and if you go >1 you may as well go to some undetermined limit of users.
In most cases this is probably great! Extending how many users an application can handle means you can share it with friends,
-colleagues, or whoever may want access.
+colleagues, or whoever else wants access.
As of late, however, I've been lamenting on how few apps are created for 1 user only.
-### What are the benefits of a single-user application?
+### What Are the Benefits of a Single-User Application?
1. Namespacing (or lack thereof)
@@ -27,7 +27,7 @@ blog.example.com/user2
blogexample.com/user3
```
-Now, say `user1` wants to simply host their blog on this hypothetical application for themself
+Now, say `user1` wants to simply host their blog on this hypothetical application for themselves
```
blog.user1.com/user1
```
@@ -36,7 +36,7 @@ There's stuttering in the domain. A minor issue, and maybe even a nonissue for most people, but it bothers me enough to want an alternative.
2. Security
-Okay, this one is somewhat subjective. But I would argue that ACLs for a single user can be significantly simpler than >1 users.
+Okay, this one is somewhat subjective. But ACLs for a single user can be significantly simpler than >1 users.
Any application that needs to deal with public/private (and maybe unlisted)
_and_ a matrix of those permissions between N users is going to be more complex than a single user.
|