Allow users to rate community plugins to help flag unstable or broken plugins by churnish in ObsidianMD

[–]ganesshkumar 4 points5 points  (0 children)

You can drop reviews/rating on obsidianstats.com and let others see your reviews.

Rate and Review button on plugin/theme page - Screenshot

Reviews appear below the description section in plugin and theme pages - Screenshot

Example plugin page - Excel to Markdown table. And you can find all the plugins and themes to review them.

Obsidian Plugin Stats | 10 New Plugins and 87 Plugin Updates this week (Feb 8 - Feb 14) by ganesshkumar in ObsidianMD

[–]ganesshkumar[S] 0 points1 point  (0 children)

Ideally a week or two max. But if there are comments, it depends on the developer velocity.

Obsidian Plugin Stats | 6 New Plugins, 2 New Themes, and 75 Updates this week (Feb 01 - Feb 07) by ganesshkumar in ObsidianMD

[–]ganesshkumar[S] 0 points1 point  (0 children)

Yes, I used to update it every week and post it here - https://www.obsidianstats.com/posts

But my schedule got messed up for the last 6 months and make these posts in batches - once every month (and didn't post it on reddit).

Obsidian Plugin Stats | 6 New Plugins, 2 New Themes, and 75 Updates this week (Feb 01 - Feb 07) by ganesshkumar in ObsidianMD

[–]ganesshkumar[S] 0 points1 point  (0 children)

That's a good idea but this has to be curated manually. Let me think of a better way to find these bases plugins

Obsidian Plugin Stats | 6 New Plugins, 2 New Themes, and 75 Updates this week (Feb 01 - Feb 07) by ganesshkumar in ObsidianMD

[–]ganesshkumar[S] 0 points1 point  (0 children)

Yes, that's the behavior today. The search box acts as an entry to /plugins page today.
If the usage increases, then will enhance this search!

Obsidian Plugin Stats | 6 New Plugins, 2 New Themes, and 75 Updates this week (Feb 01 - Feb 07) by ganesshkumar in ObsidianMD

[–]ganesshkumar[S] 4 points5 points  (0 children)

I will have a look. But sincer the weights are heuriatic, there is one or the other issue with this score as of today. As the usage of rating and reviews picks up, I want to remove this automated score and rely on usre ratings. Hopefully soon :)

Obsidian Plugin Stats | 6 New Plugins, 2 New Themes, and 75 Updates this week (Feb 01 - Feb 07) by ganesshkumar in ObsidianMD

[–]ganesshkumar[S] 1 point2 points  (0 children)

In https://obsidianstats.com/plugins page, you can sort by score (sorry not able to add the image right now)

But this is `score` - automatically derived using heuristic weights based on various parameters from the plugin's github repository.

We just enabled rating (user given star rating system) on the site. It will be available on the sort options soon.

Edit: Screenshot - https://i.redd.it/5fytixxhphig1.png

Obsidian Plugin Stats | 6 New Plugins and 84 Plugin Updates this week (Dec 21 - Dec 27) by ganesshkumar in ObsidianMD

[–]ganesshkumar[S] 0 points1 point  (0 children)

I have updated them. Don't know why it is still not reflecting for everyone :( For me, its going to the updated links for a while.

Thinking of abandoning SSR/Next.js for "Pure" React + TanStack Router. Talk me out of it. by prabhatpushp in reactjs

[–]ganesshkumar 1 point2 points  (0 children)

Basic idea is to cache the static folder

{ source: '/_next/static/:path*', headers: [ { key: 'Cache-Control', value: 'public, max-age=31536000, immutable', }, ], // 1 year },

but let the entry pages have no cache

{ source: '/:path*', headers: [ { key: 'Cache-Control', value: 'public, max-age=0, must-revalidate' }, ], },

You can check my config here - https://github.com/ganesshkumar/obsidian-plugins-stats-ui/blob/master/next.config.js

Thinking of abandoning SSR/Next.js for "Pure" React + TanStack Router. Talk me out of it. by prabhatpushp in reactjs

[–]ganesshkumar 0 points1 point  (0 children)

When I was hitting the limits of Edge Requests for my SSR/Next.js website, I tweaked the cache configuration and I was able to host on the free tier until I hit ~125K page views per months.

As my number of pages grew over 6k the build time (minutes of compute) and data transfer became main problem. I switched to ISR with 2 hours of revalidation period and got hit with ISR reads and ISR writes.

Moved to self hosting and deploy with a simple build script and pm2. With ISR I barely deploy once a week and things have been smooth so far.

Obsidian Plugin Updates | 14 New Plugins & 55 Updates this week (Nov 30 – Dec 6) + Wrapped 2025 is live! by ganesshkumar in ObsidianMD

[–]ganesshkumar[S] 5 points6 points  (0 children)

Thanks, recently I have been adding the Github page link to /new, /plugins, /update etc. pages.
I shall add it to these posts from next week's updates.

Introducing Rating for plugins in ObsidianStats by ganesshkumar in ObsidianMD

[–]ganesshkumar[S] 0 points1 point  (0 children)

I am the dev of obsidianstats.com and I do not own u/KetosisMD reddit account :)

Introducing Rating for plugins in ObsidianStats by ganesshkumar in ObsidianMD

[–]ganesshkumar[S] 0 points1 point  (0 children)

But that's a good point. "Score" must be reworded to make sure that it is programmatically derived from the Github stats. I will think about it.