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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: can one post to a blog without opening a browser?

3 点作者 dhbradshaw超过 14 年前
Right now I post mostly by email, but sometimes I don't want to open up a browser and wait for Gmail. Is there a way to a blog directly from the desktop?

6 条评论

skowmunk超过 14 年前
Out of my reductionist tendencies, I would say - can this question be reduced to "Can one post to a blog without opening an application?"<p>If one would like to not open an application (browser) to be able to blog what would make them like opening another application to be able to blog without opening the browser?<p>Unless that alternative application can bring more user friendly utility than blogging directly through the browser.<p>I am a web technology neophyte, so wouldnt' know if such a thing exists, but if there is ONE application (could be desktop a la Ipad or web based) that can simultaneously post on facebook, twitter, techcrunch, posterous, myspace, orkut, etc I think it would save a lot of effort to lots of people who like to post on multiple blogs, etc. If you can save a lot of effort to a lot of people, you got a product with customers.<p>If it can have a selectability feature if one wants to post just on one of these social/blogging entities, still better.<p>Good luck.
colinprince超过 14 年前
telnet your.mail.server 25<p>HELO your.domain<p>MAIL FROM: you@your.domain<p>RCPT TO: post@posterous.com<p>DATA<p>Subject: Post title<p>[ press Enter twice ]<p>body of your post<p>End it with a single . on a line of its own.<p>QUIT
apotheon超过 14 年前
I just started writing my own Weblog-oriented CMS this week, called Lump, and started using it at blogstrapping.com -- and not only can I post to it without opening a browser, but there is actually no way to post to it with the browser at all. I write up an entry using Markdown syntax in a text file, then use scp to stick the file in a content directory. Lump picks it up automatically.<p>I don't imagine many people would want to use Lump in its present state of simplicity, but it certainly shows that it's possible to post to a Weblog without having to open a browser.
bobds超过 14 年前
There's various desktop blogging clients you could use.<p>w.bloggar is one I've used in the past: <a href="http://wbloggar.com/" rel="nofollow">http://wbloggar.com/</a><p>and another random one: <a href="http://alchemii.net/bleezer/" rel="nofollow">http://alchemii.net/bleezer/</a>
jakewalker超过 14 年前
On MacOS X, I used to use a program called MarsEdit. See <a href="http://www.red-sweater.com/marsedit/" rel="nofollow">http://www.red-sweater.com/marsedit/</a>
baltcode超过 14 年前
try google command line tools. <a href="http://code.google.com/p/googlecl/" rel="nofollow">http://code.google.com/p/googlecl/</a><p>example: $ google blogger post --title "foo" "command line posting"