Files for my website
bwc9876.dev
1---
2name: Do Thing
3summary: (Yet Another) Cross-Platform To-Do List App
4timespan:
5 from: 2019
6 to: 2020
7tags:
8 - web
9 - android
10 - cpp
11 - python
12 - kotlin
13links:
14 github: Bwc9876/DoThingServer
15image: ./do-thing.webp
16---
17
18import ExtLink from "@components/ExtLink.astro";
19export const components = { a: ExtLink };
20
21Do Thing is (another) cross-platform to-do app. This was a pretty simple project
22where I just wanted to mess around with networking, web dev, and app development.
23
24Do Thing Consists Of:
25
26- [Do Thing Server](https://github/Bwc9876/DoThingServer)
27- [Do Thing Auth](https://github/Bwc9876/DoThingAuth)
28- [Do Thing Web](https://github/Bwc9876/DoThingWeb)
29- [Do Thing Android](https://github/Bwc9876/DoThingAndroid)
30
31The name of each is pretty self-explanatory, Server is the main server that
32stores data, Auth takes care of authentication, and Web and Android act as front-ends.
33
34This project was a learning experience in a lot of stuff, It doesn't have many
35practical uses but it helped me learn a bit about different systems interoperate.
36
37It also fulfilled the requirement to make a to-do app as a rite of passage
38to being a developer.