TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

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

3 pointsby dhbradshawover 14 years ago
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 comments

skowmunkover 14 years ago
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.
colinprinceover 14 years ago
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
apotheonover 14 years ago
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.
bobdsover 14 years ago
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>
jakewalkerover 14 years ago
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>
baltcodeover 14 years ago
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"