8000 GitHub - S1m0n32002/CodeReviews.Console.CodingTracker
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

S1m0n32002/CodeReviews.Console.CodingTracker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Console Coding Tracker

Console based CRUD application to track time spent coding daily.

Unfortunately I haven't really finished all the challanges on this one yet and I wanna move onto the other projects, but I will try to finish it in the future.

Project Requirements

Mandatoy:

  • This application has the same requirements as the previous project, except that now you'll be logging your daily coding time.
  • To show the data on the console, you should use the "Spectre.Console" library.
  • You're required to have separate classes in different files (ex. UserInput.cs, Validation.cs, CodingController.cs)
  • You should tell the user the specific format you want the date and time to be logged and not allow any other format.
  • You'll need to create a configuration file that you'll contain your database path and connection strings.
  • You'll need to create a "CodingSession" c 6D00 lass in a separate file. It will contain the properties of your coding session: Id, StartTime, EndTime, Duration
  • The user shouldn't input the duration of the session. It should be calculated based on the Start and End times, in a separate "CalculateDuration" method.
  • The user should be able to input the start and end times manually.
  • You need to use Dapper ORM for the data access instead of ADO.NET. (This requirement was included in Feb/2024)
  • When reading from the database, you can't use an anonymous object, you have to read your table into a List of Coding Sessions.
  • Follow the DRY Principle, and avoid code repetition.

Optional:

  • Add the possibility of tracking the coding time via a stopwatch so the user can track the session as it happens.
  • Let the users filter their coding records per period (weeks, days, years) and/or order ascending or descending.
  • Create reports where the users can see their total and average coding session per period.
  • Create the ability to set coding goals and show how far the users are from reaching their goal, along with how many hours a day they would have to code to reach their goal. You can do it via SQL queries or with C#.

Others:

  • Menu that enables the user to modify settings

Resources

Screenshots

Main Menu Choose session Action selection Session editing Session deletion Report Settings File explorer

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%
0