TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Show HN: A tool for conducting a virtual card sorting

4 pointsby indiganeabout 3 years ago
TL;DR: I ended up yak shaving a tool for conducting a card sorting online, and wanted to share it because I couldn&#x27;t find one myself. Also I don&#x27;t have to maintain or host it so it should stay up for a long time, hopefully.<p>https:&#x2F;&#x2F;github.com&#x2F;indigane&#x2F;cardsort<p>The long version of why:<p>I wanted to conduct a quick, one-off card sorting for a side project, but after spending hours looking at the available commercial and open source solutions, I couldn&#x27;t find one that worked for me.<p>The commercial ones either had too restrictive free tier with only 20 cards or so, or they lacked basic features such as open sorting vs. closed sorting, or they would have cost me upwards of $100&#x2F;month.<p>The open source ones would have required me to self-host them, which I wasn&#x27;t too excited about, and after trying docker-compose up on one of them and hitting errors after errors, I was even less excited so I gave up on that. I also looked for demos of open source projects that could have worked for the one-off use I needed, but no luck there.<p>I wanted to avoid spending time developing my own solution, as I already had the side project I was supposed to be working on. I also especially wanted to avoid spending time on maintaining and hosting. If I could get away with a static site, no database, thus no need for me to host it, and get it done without spending too much time on it, it might be worth it, and maybe someone else could benefit from it too. And the result was this.<p>The lack of a backend has some obvious trade-offs, but the benefit is that it is fire and forget, and I can hopefully come back years later and use it again for some other one-off thing.

3 comments

indiganeabout 3 years ago
In case someone reads this in search of another tool, I did a search again, and found one I had missed, that actually has a usable free tier as of writing <a href="https:&#x2F;&#x2F;uxmetrics.com" rel="nofollow">https:&#x2F;&#x2F;uxmetrics.com</a>
dsmmckenabout 3 years ago
Nice. A quick way that I&#x27;ve used is a google slide setup with colored text boxes, but you don&#x27;t get a nice data array back like you do here.<p>I noticed that &quot;Export results&quot; only outputs the first unnamed group if the user doesn&#x27;t name all the groups. Looks like it try&#x27;s to use the empty string as a key multiple times. You could instead have it be {[{name: &quot;mygroup&quot;, values: []}]} or something where it doesn&#x27;t matter if you have duplicate or empty group names. Or show an error message to the user on empty&#x2F;duplicates. Can&#x27;t trust participants to always complete the task correctly.
评论 #31412660 未加载
indiganeabout 3 years ago
Clickable link <a href="https:&#x2F;&#x2F;github.com&#x2F;indigane&#x2F;cardsort" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;indigane&#x2F;cardsort</a>