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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: Easiest way to build something I can use across devices?

5 点作者 rajlego将近 4 年前
I want to build something pretty simple with python, all it needs to do is take a text file and based on some tags generate a queue each day.<p>What&#x27;s the easiest, least painful way to do this such that I can use it across computers?<p>Ideally something that would still let it work offline too, if needed. If it works on my phone too, would be nice.<p>My python knowledge isn&#x27;t that deep so can&#x27;t do anything too complicated

5 条评论

vbsteven将近 4 年前
Requirements are still a bit vague but I would probably start with a simple python script to process the text file and output the result. That can already be used on computers on the command line.<p>Then you could wrap it up in a website using django or another small web framework with an html form to upload the text file, process it using the same script and output the result as html. Then it becomes available on all devices with a web browser.
评论 #27332488 未加载
rajlego将近 4 年前
Sorry for poor explanation, basically I want to build an app for managing trigger action plans: <a href="https:&#x2F;&#x2F;www.lesswrong.com&#x2F;posts&#x2F;wJutA2czyFg6HbYoW&#x2F;what-are-trigger-action-plans-taps" rel="nofollow">https:&#x2F;&#x2F;www.lesswrong.com&#x2F;posts&#x2F;wJutA2czyFg6HbYoW&#x2F;what-are-t...</a>. The idea is that, when I&#x27;m first implementing one I&#x27;ll want to review all the ones I&#x27;ve just made each morning till they&#x27;re a certain level of automatic. After that, I&#x27;d want to make them less frequent, say every other day, and then continuously decreasing as I get better and better at doing them. Vaguely akin to spaced repetition.
somtum将近 4 年前
Not quite sure you mean by &quot;generate a queue&quot;.<p>But if you mean message queue, you could create a python script that parses the text file using regex and place messages in a AWS SQS queue.<p>Simplest way to use across computers would be just to transfer the script to each computer you use.
slightwinder将近 4 年前
Not really sure what you mean with queue, so I assume you mean some kind of todo-list?<p>The most simple way in this cade would be using an existing service with python-bindings. Todoist for example is a good service with a proper python-libary.
评论 #27332468 未加载
halefx将近 4 年前
Just download Flutter and build an app with that. The primary tutorial is a To Do app, and it&#x27;s easy to customize.
评论 #27332449 未加载