Skip to Content
Technical Articles
Author's profile photo Nabheet Madan

Devtoberfest tracking via CLI

Background

As you are already aware we have our SAP Devtoberfest 2023 going on and every one is busy not only learning but as well as earning some points. I saw this app from Marian and that got me thinking. This is devtoberfest for developers why can’t we track it via CLI so that we don’t have to open the browser. All action points from the terminal.

PS: Source code is provided at the end, we can keep enhancing it to suit our needs.

End Result

Ended up making a CLI app using of course Marian endpoint to fetch and display the data. Now all we need to do is install the npm package and start tracking your progress from the CLI.

Options to run the CLI

  • User id is mandatory

devfest -u nabheetscn

 

  • Filter by Week

devfest -u nabheetscn -w "Week 0"

  • Filter by Completed

devfest -u nabheetscn -w "Week 0" -d true

  • Filter by Not Completed

devfest -u nabheetscn -w "Week 0" -d false

  • Filter by Type

devfest -u nabheetscn -w "Week 1" -d true -t "Session"

Source Code

Package can be installed from here.

Source code availble at https://github.com/NabheetCloud/devfest

Assigned Tags

      1 Comment
      You must be Logged on to comment or reply to a post.
      Author's profile photo Amaury VAN ESPEN
      Amaury VAN ESPEN

      Great Job @Nabheet Madan