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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: Single Line Calendar Event Standard?

1 点作者 acenturyandabit超过 3 年前
I&#x27;m developing a to do list app, and I want each task to be editable on one line (because as a developer I don&#x27;t own a mouse :P ).<p>I was wondering if there was an established standard for single-line calendar events?<p>I know Ical exists, but i don&#x27;t want to have to create an entire ical entry when i want to flag a task to happen in a day.<p>Currently I have a current system like this:<p>- Listen to music \{date: +1m} - in one minute<p>- Code new feature \{date: +1d} - in one day<p>- Wake up \{date: 9:00am} - next 9:00am<p>- Go for a run \{date: (9:00am)} - every 9:00am<p>Does anyone know of any standards like this?

1 comment

brudgers超过 3 年前
If it was me, I would consider writing code that translates a simpler format into iCal.<p>Then, the data...which is what is important...can be presented in other people&#x27;s software.<p>good luck.