TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Show HN: A tool for conducting a virtual card sorting

4 点作者 indigane大约 3 年前
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 条评论

indigane大约 3 年前
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>
dsmmcken大约 3 年前
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 未加载
indigane大约 3 年前
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>