HackerTrans
TopNewTrendsCommentsPastAskShowJobs

paltman

no profile record

Submissions

Using Vite with Vue and Django

wedgworth.dev
1 points·by paltman·há 8 meses·0 comments

We Continually Delivery Software

wedgworth.dev
2 points·by paltman·há 8 meses·1 comments

Crafting Software: Writing Maintainable Code

wedgworth.dev
5 points·by paltman·há 9 meses·0 comments

Reusing GraphQL Queries Within Django

wedgworth.dev
1 points·by paltman·há 9 meses·0 comments

Polars vs. Pandas – Quantile Method

wedgworth.dev
2 points·by paltman·há 9 meses·1 comments

Keep Your Vue Apps Fresh

wedgworth.dev
2 points·by paltman·há 9 meses·0 comments

Connecting Cloud Apps to Industrial Equipment with Tailscale

wedgworth.dev
1 points·by paltman·há 9 meses·0 comments

comments

paltman
·há 7 meses·discuss
I author internal software rather than something public, but I think this method still would apply thinking back on SaaS apps I've built.

I use Github generated release notes based on Pull Request bodies and this is more than sufficient for my dev team.

I think have a small app in my different internal web application called `releases` (a Django app) that has a simple model called Release. I hand write the release notes, copy and paste the version number, and select date for each release (sometimes I'll batch add them if I get behind).

But I had write them with my audience in mind (business system users - who care about specific bugs or features; i leave out any internal things that wouldn't be of interest).

At the footer, or a small indicator in side bar, I display the version number that was created through our automated release process (Github Release triggers a release and the tag that is the version number gets set as an env var in my Docker image). Clicking that takes the user to a /release-notes/ page that has a descending order list of the notes that I hand author in the Django admin.

Pretty low tech but I find I like to be able to hand author the notes with the user's in mind.
paltman
·há 8 meses·discuss
Great work! Love the concept and implementation!
paltman
·há 8 meses·discuss
*How
paltman
·há 9 meses·discuss
You can save some memory by moving to Polars from Pandas but watch out for a subtle difference in the quantile's different default interpolation methods.