blob: 2e2d7d1f7699e40afe80a03e49c52db807ac01aa (
plain)
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
\documentclass[12pt]{article}
\usepackage{url}
\usepackage{setspace}
\usepackage[superscript]{cite}
\usepackage{graphicx}
\usepackage[normalem]{ulem}
\graphicspath{ {Figures/} }
\usepackage{caption}
\usepackage{cite}
\usepackage{indentfirst}
\usepackage{float}
\usepackage{subcaption}
\usepackage{amsmath}
\textwidth=6.5in
\oddsidemargin=0.0in
\usepackage{listings}
\usepackage{listings}
\usepackage{fancyhdr}
\usepackage{longtable}
\usepackage[table]{xcolor}
\pagestyle{fancy}
\fancyhf{}
\lhead{Strengthy}
\rhead{Page \thepage}
\usepackage{color}
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
citecolor=black,
linktoc=all,
linkcolor=black,
}
\begin{document}
\begin{titlepage}
\newcommand{\HRule}{\rule{\linewidth}{0.5mm}}
\center
\textsc{\LARGE Missouri State University\\~\\Department computer Science}\\[1.0cm]
\HRule \\[0.4cm]
{ \huge \bfseries Strengthy}\\[0.4cm]
% change this \/
{ \large A Weightlifting tracking webapp}\\[0.4cm]
\HRule \\[1.5cm]
\begin{minipage}{0.4\textwidth}
\begin{flushleft} \large
Dylan Bolger \\ Hayden Pope
\end{flushleft}
\end{minipage}
~
\begin{minipage}{0.4\textwidth}
\begin{flushright} \large
Client Info \\
Dr. Mohammed Y. Belkhouche\\
\end{flushright}
\end{minipage}\\[2cm]
{\large \today}\\[2cm]
\end{titlepage}
\newpage
%-----------------------------------------------------------------------
\tableofcontents
\newpage
%----------------------------------------------------------------------
%-----------------------------------------------------------------------------
\section{Project Description}
\subsection{Proposal}
Our proposal is to develop a web application to track weightlifting sessions, progress, and statistics. This web-app will allow users to create personal accounts to track their information. We will allow the user to upload their data from days at the gym and be able to watch their progress as they continue to go to the gym. It will also show useful calculations, such as percentages of your 1RM (the most weight you can endure in one rep). Statistics like progress prediction of the user and analysis will be included. Users will also be able to create their own workout plans, or routines. The routines will suggest values in order for the user to make meaningful progression at the gym. Users can also record their weight.
\subsection{Stack}
The web application will be developed in Python using the Flask framework. A database will be used to store user information, likely SQLite. Graphs displayed to the user will be rendered using chart.js.
\section{References}
% ??? can we remove this?
\begingroup
\renewcommand{\section}[2]{}
\begin{thebibliography}{10}
\bigskip
\end{thebibliography}
\endgroup
\end{document}
|