You can start your own thread here. Posting allows you to create a new article on the front page of the blog. Only invited contributors can post here. To add a new post like this, you need to log on to the blog. Log on to Blogger BLOGGER DASHBOARD, select the .:. fuck decaf .:. blog, choose POST, and away you go. There's lot's of help there: HELP:BLOGGER
You can comment on an existing article or thread of comments too. This is easier. In fact anyone with internet access can a comment to any article. Just click the comment link, and follow the directions. Invite others you know to subscribe to the blog, and add their comments too.
Post photos and pictures. While those who know HTML can insert html code and img src links where they want, blogger offers an upload tool for everyone else. Click the little icon on blogger's create post interface to launch the upload window. There, you can enter the web URL or the path to a picture on your hard drive. Then save. This will add a bit of code to your post. HELP:PHOTOS If you decide to upload a picture, you'll need to do a bit of editting. Since the blog is hosted on the fuckdecaf.org server, the picture is uploaded there. You'll notice that in the img src code, the picture's path contains the domain name. You need to delete some code from inside the img src="" part (but leave the quotes where they are). Delete: "http://www.fuckdecaf.org/". Example:
Once you upload a pic, some code is added to the blog entry, which I'm sure you see there.
You need to delete the domain name from the src string:
This is what blogger pastes in:
<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e)
{}" href="http://www.fuckdecaf.org/uploaded_images/Lumber-Truck-703514.jpg">
<img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;"
src="http://www.fuckdecaf.org/uploaded_images/Lumber-Truck-701486.jpg"
alt="" border="0" /></a>
And you delete the stuff I show in red (always the same) as follows:
<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e)
{}" href="http://www.fuckdecaf.org/uploaded_images/Lumber-Truck-703514.jpg">
<img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;"
src="http://www.fuckdecaf.org/uploaded_images/Lumber-Truck-701486.jpg"
alt="" border="0" /></a>
To leave:
<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e)
{}" href="http://www.fuckdecaf.org/uploaded_images/Lumber-Truck-703514.jpg">
<img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;"
src="uploaded_images/Lumber-Truck-701486.jpg"
alt="" border="0" /></a>
For some reason, because the graphic is hosted on the same machine as the blog, the full URL messes up! It needs to be a relative URL. Silly stuff. This is the only blog I host on my server, and is inelegantly supported. ;)