project

Announcing GitNotify.com

I started learning Go couple of months ago. Writing is the best way for learning a new language and appreciating the beauty.

This is my 2nd Go project github.com/sairam/gitnotify hosted at GitNotify.

The project aims at notifying users periodically about the new code changes that went it. I felt I was missing out new merges happening in smaller projects while learning a language. I found amazing libraries in Go and wanted a way to get weekly diffs to understand what happened.

GitNotify is useful to:

  • Track awesome lists
  • Observe small sized to large sized repositories
  • Get daily diffs for open source libraries
  • Host inside your own organization for private instances of Github

Go being a language of simplicity and no magic (unlike Ruby/Rails), the philosophy is that the developer is responsible for all the code and no complex frameworks or magic should be involved. Some of the beautiful Go Projects I have seen are

Deciding on the periodic notifications

The interface for providing periodic notifications needed a thought. I was going to allow my users give complete customization since different people wanted different times of day and a timezone was a factor to consider

After a lot of brainstorming on the User Interface to allow users to customize, hour, minute, day of the week and thinking about complex javascript interactions and validations on the backend, I decided to use the design pattern used in the Unix environment, The Crontab.

The Crontab

Crontab is the best and simplest way to setup recurring tasks. The UI for it became simple when you provide customization for only the hour and day of week for a recurring schedule.

Remember the sites which ask you to select your timezone or location, the information can be found with Javascript so that users don’t re-enter what we can find from system time.

For my case, timezone offset was not sufficient enough, The cron package I was using requires a Timezone instead of offset. Timezone helps detect DST offset as well which an offset like -0600 would help identify.

Coming Soon

  • Support for Gitlab Added support for Gitlab on 2016/12/21
  • Slack Notifications Added support for Slack Notifications on 2016/12/12