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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: Any HN clone that improves headlines using AI?

1 点作者 xchip3 个月前
I want a Hacker News (HN) clone that:<p>- Reformulates question headlines into statements that include the actual answer. - Headlines that mention something is better or worse should include a metric - Includes in headlines for academic papers how much the paper improves the state-of-the-art (SOTA). - Filters out clickbait titles to ensure that headlines are informative and relevant. - Highlights articles with detailed technical insights, making it easier to find in-depth content. - Adds tags or categories to help users quickly identify the main topic of each article. - Filters out articles that are purely self-promotional or advertisements. - Prioritizes content that has been peer-reviewed or verified by experts in the field.

2 条评论

minimaxir3 个月前
You can try to do that already with a prompt to your favorite LLM.<p>But to point out the obvious problems, headlines that are a) informative and b) very concise are contradictory. The other major problem is that if there is no incentive to click a link due to the summaries (e.g. the Perplexity problem), there is less of a reason for people to write the content since they don&#x27;t get the recognition&#x2F;revenue from it.
sargstuff3 个月前
Quick way to impliment what&#x27;s requested is to set up search engine&#x2F;web scrape of article and find the article&#x27;s doi number.<p>if the article has doi number, then can quickly find&#x2F;filter on the requested statistics on-line and generate a personal interest ranking metric without using &#x27;AI&#x27;. aka no peer review &#x2F; subject field expert review(s), rank as &#x27;don&#x27;t display&#x27;<p>CrossRef[0] is a site that has related direct&#x2F;indirect doi &#x2F; paper statistics. note: Journals and publishers have their own platforms where you can access usage statistics for papers with DOIs. Things done prior to DOI&#x27;s might require some AI&#x2F;chatgpt stuff.<p>abstracts&#x2F;synopsis section of papers and&#x2F;or search engine AI generated synopsis&#x2F;summary might be a quick&#x2F;easy way to assess &#x27;technical content&#x27;.<p>[0] : <a href="http:&#x2F;&#x2F;www.crossref.org&#x2F;" rel="nofollow">http:&#x2F;&#x2F;www.crossref.org&#x2F;</a><p>---<p>&#x27;state of the art&#x27; side note(s):<p>&#x27;State of the art&#x27; kind of depends on subject matter &#x2F; intended context.<p>Automobile industry, state of the are is good for about 1yr. Digital electronics, may be as little as 24hrs when the next patch is pushed out.<p>Researching what was &#x27;state of the art&#x27; in 1850&#x27;s ( aka mechanical fax[1]) bit different context than &#x27;current now&#x27; state of the art.<p>[1] mechanical &#x2F; digital fax : <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Fax" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Fax</a><p>---<p>HN customization via browser plug-ins side notes:<p>One potential option would be to request modifications to a web browser plugin to be able to &#x27;use&#x2F;generate a customized metric of how to curate&#x2F;filter what gets display from HN&#x27;.<p>example of potential canidate site for modification request if using chrome web browser : <a href="http:&#x2F;&#x2F;chromewebstore.google.com&#x2F;detail&#x2F;hacker-news-enhancement-s&#x2F;bappiabcodbpphnojdiaddhnilfnjmpm?hl=en" rel="nofollow">http:&#x2F;&#x2F;chromewebstore.google.com&#x2F;detail&#x2F;hacker-news-enhancem...</a><p>---<p>Misc other ways to curate HN side notes:<p>a) check out &quot;Ask HN: Is there a way to customize stories on hacker news?&quot; : <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=40074360">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=40074360</a><p>b) Add-on relevant filter metrics to HN &#x2F; Emacs combo : <a href="https:&#x2F;&#x2F;github.com&#x2F;clarete&#x2F;hackernews.el">https:&#x2F;&#x2F;github.com&#x2F;clarete&#x2F;hackernews.el</a><p>c) Dump HN RSS to relevant filter metric script &#x2F; AI,chatgpt bot and feed only what want. HN RSS : <a href="https:&#x2F;&#x2F;hnrss.github.io&#x2F;" rel="nofollow">https:&#x2F;&#x2F;hnrss.github.io&#x2F;</a><p>---