Holy mama! I've got Dreamhost invites!

I don’t know if anyone from Dreamhost noticed my recent promotion for Self-hosting WordPress, but I’ve just been handed special 5 promotional codes to give around and boy are they a doozy.

  • You will get four (4) times the normal disk and bandwidth!
  • If you choose our five-year plan, you’ll get $150 off.
  • If you choose our ten-year plan, you’ll get $200 off.

Now, 4 times 500 is 2Tb of space. 2. T-e-r-r-a-b-y-t-e-s (I don’t get to say this word often enough) and quite a lot of bandwidth as well.

The only problem is that this is valid for 2 weeks only so I need to give these out quickly. If you were thinking of taking me up on my self-hosting proposal, then there’s no better time than now. Once this is gone, you can’t get this offer any other way, short of stumbling on someone who got this invite as well.

So step up. I don’t have anything else to do with these so I might as well give them out. If you’re interested just email me or leave a comment and I’ll give you the 12-digit code of your dreams (pun intended πŸ˜‰ )

UPDATE: I just noticed that If you go and sign with Dreamhost now, you get unlimited bandwidth and space for life, just because it’s their birthday. You don’t even need my invites, unless you want to save the money that is. Hurry up. Only 30 places left

Reblog this post [with Zemanta]

In case you still think blogging or wordpress is too hard…

Cerebral Palsy
Image by mtsofan via Flickr

Glenda Watson Hyatt is a severely disabled person (Cerebral Palsy) who has used blogging through WordPress to expand her social life and get an online voice. Simply WordPress has changed her life and for this she has crafted the following video ((h/t Internetakias)).

[youtube]ajqq9bHomn8[/youtube]

If a person who can only use the computer through her left thumb can find WordPress easy enough to use then certainly all of you can do it as well.

Reblog this post [with Zemanta]

Get ready for an Impossible Carnival of the Godless

So I am going to be your next host for the Carnival of the Godless and I am planning to make it a bit more interesting than simply having a list of links. I was a bit disappointed on how the 100th version turned out so I’d like to make something more memorable, something like the Pulp Edition. Of course I can’t really make such good art to go along with ((And I wouldn’t say no if anyone wanted toΒ  help with that)) it but I will at least try to make it as memorable.

So here’s what we’re going to do:

1. It’s going to be thematic

The theme in this carnival will be something a bit fitting to this blog’s name: Impossibilities.

Submissions dealing with Absurdities, Oxymorons, Inanities and even horrible facepalms are all going to be given the limelight in the version of the CotG. That does not mean that anything not dealing with these will be rejected but any post that belongs to the theme will be immediately pushed to the top and will have more care given to it’s presentation

So if you have something ready on this subject, go right along and send it. If not, well now is the time to spend some effort to make a better edition πŸ˜‰ If you site down for a bit and think about it, I’m certain you’ll have many ideas on this subject. But please, I know it’s tempting but don’t swamp me with Sarah Palin related submissions πŸ˜‰

2. It’s going to be storytold

I really want to avoid just posting a simple collection of links with a very short description as is what seems to be happening in almost all recent CotGs. That’s just boring. Thus, I’m going to attempt and weave an actual story out of the submissions sent. This is why it’s doubtly helpful to have sumbissions that fit the theme, as such will be easier to weave into the story.

I already have a rought concept of how it’s going to go but the actual story will be decided by the kind of submissions I have to work with. Stories that don’t fit the theme, I will try to use as well but I may end up just posting them as links at the end if I can’t see a way to include them.

I’ve already started getting submissions which is something I didn’t expect. I was hoping I had the time to write this post before people started sending. Due to this, feel free to send a replacement post if you have something more fitting to the theme but I would also ask you to spread the word a bit so that more people are aware of this.

Let’s hope this works out. Cheers for impossibilities.

Last.fm activity now in Complexlife

Last.fm is one of the top, if not the best music service out there and it’s something I’ve been using for quite a while now. While last.fm includes things like groups, friends, forums and other aspects of a social network, your activities in these was never provided. In the latest version these activities (new friends, loved songs etc) were shown in the form of a little block in the sidebar but unfortunately there has been no way to grab that for use in Complexlife.

I knew there is a way to get these activities somehow as Friendfeed does show you when you love a track but having asked directly about it in the forum, I was told that getting this in a feed was just not an option.

Fortunately web-mastered stepped up and created a yahoo pipe which grabs the last.fm latest activities API and returns it as a feed. Very useful but unfrotunately I noticed that it wasn’t exactly in the format I needed. If I used that in Complexlife then you would only see the title (a generic “New activity from <username>”) and having no date info in the feed, b0rked the sort by date of Simplepie.

Thus I had to modify the pipe in a way that

  1. Made the content become the title of the post (removing any html which might break Complexlife)
  2. Provide the date in the RSS so that the item can be sorted

Creating the title

It took me a while to figure it out, but making the content become the title was the easiest part of it all. Since yahoo pipes provides a handy renaming function, all I needed to do is tell it to rename the content as the title

Renaming the content as Title
Renaming the content as Title

The first part copies the whole content as the date field. I will later use this get the date. The second part renames the current content to the title so that it is displayed in whole. If I didn’t do it, I would get only part of the content displayed with elipsis after 30 characters or so.

Now I need to remove all the html code the activity stream has in. As it includes links to my profile as well as to artists and tracks, this would break the link complexlife puts for each row. The only way to remove the unecessary parts is of course through regular expressions and yahoo pipes gives exactly that function.

Removing the unecessary parts from the content
Removing the unnecessary parts from the content

This part actually goes before the renaming/copying as I remove various parts I also don’t need from the date field. Thus when I copy, I save duplicating the work.
The most interesting part is the previous the last field, wherein I tell it to remove all html tags (anything between < and >) and all their settings (i.e. target=”_blank”). Thus I’m left with the title in plain text.

Creating the date

This was a more tricky part as not only does the last.fm activity stream API consider it a good idea to put the date on the content but it also puts it in as a relevant entry to the current date.

Putting the date in the correct field was the easy part as all I needed to do was copy the content in the date field and remove everything except the date. As right before the date there was a fullstop, it was fairly simple to use another regex to delete anything until the last fullstop

The regular expression removes everything until the last fullstop
With a little regex magic, anything except the date is gone

The more difficult part was to make the relevant fuzzy date to become something that is expected to be in an RSS feed, which is something very specific in time and format. Fortunately, I noticed that there is a specific module that does exactly that: Date builder. How convenient.

Unfortunately this module accepts only strings so I could not really parse my whole feed through it unless I had a loop. Oh wait…

With a loop I can make all date items in the correct format
With a loop I can make all date items in the correct format

Sweetness. Unfortunately one problem remains which is that because the date provided is always fuzzy, I end up getting a rolling date for the item each time the pipe is run. For example, an item which has a date of “one month ago” today will point to Aug 28, tomorrow on Aug 29 etc. There’s not much I can do about it other than wait until (and if) last.fm deems it worthy to give us a proper feed.

And now my new shiny feed is in exactly the format I need to have for Complexlife to use it. A little hacking later and version 0.9.8 is ready to go. The last.fm activity stream is finally lifestreamable πŸ™‚

Reblog this post [with Zemanta]

Convincing Intense Debate to liberate their source

open source gift guideAfter the recent exciting events I thought it is time to attempt and convince the guys behind Intense Debate to open up their code to the Free Software community and as a result reap all the known benefits such an action will produce.

open source gift guide
Image by pt via Flickr

After the recent exciting events I thought it is time to attempt and convince the guys behind Intense Debate to open up their code to the Free Software community and as a result reap all the known benefits such an action will produce.

I’ve been thinking of proposing something like this to them for a while but with all the recent alpha testing, convention-going and all the rest they were doing, I thought it might just fall through the cracks. However their acquisition from Automattic embolded me to go ahead and propose it.

I absolutely think that such a move will be an extreme success, both in terms of popularity and development.Β  Currently they are being outfeatured by their main competitor, Disqus who has already managed to rollout the version 2 of their wordpress plugin and also have various other necessary features like trackbacks (including trackback agnostic platforms like blogger).

Opening the source will also allow all the ideas that are currently waiting on the backburner to be worked on by anyone interested to have them. IDC can then just keep control of the commits and with two or three dedicated developers totally outrun everyone else.

There are of course more benefits other than fast development. For one, they will finally be able to put their wordpress plugin in the Plugin Codex so that we can get automatic upgrades. It will also open up the system to people with very specific needs who cannot currently use it. Those people could simply install it locally and tweak it for their own uses without taking up valuable support time.

So if you like this idea, go ahead and vote it up. All you need is a Get Satisfaction account and to click a button. Show them how popular this will be.

I would also love to hear any other ways you can think of that liberating the source will help. We can then use those as extra reasons for them to switch. Of course, if you have reasons why this would not be a good idea, also speak up. Lets discuss it πŸ˜‰

Reblog this post [with Zemanta]

It keeps getting better and better: Intense Debate acquired by Automattic

Exciting Stuff.

Automattic is one of my favorite companies. Not only because they make the best blogging platform but because they are doing it through free software and good ethics. When IDC announced that they would be using Akismet for spam control, I was glad. Now that I know that they are wholly under the umbrella of the Automattic group, I’m stoked!

IDC has already shown amazing support for WordPress. Their new plugin (which I’m testing in the Alpha version) already has awesome features that make your comment managing so much less of a headache. Now that they have the people with the definite wordpress knowledge backing them, the features and integration can only grow better.

I’m getting more excited just by thinking of the possibilities.

One thing that I’m certain will follow from this, is that we are finally going to have ID Comments on WordPress.com. As other have said, the default comment system of wordpress is in dire need of an overhaul. While definitelly superior to blogger’s (not only in comments), it is still lagging behind in necessary features for a good discussion, one of which is good threading.

Unfortunately, due to the limited nature of WordPress.com, it meant that individual users could not install either IDC or any of their competitors but now that Automattic got them, we can all foresee what will follow. WordPress.com is about to get (even better).

The only way blogger can now keep up, is if Google acquires Disqus, which I don’t find as very far fetched to tell you the truth. At least then blogger might get a decent commment system at last.

So, for all of you who have not yet jumped on the IDC bandwagon, especially if you’re self-hosting WordPress, there’s no better place than now to join.

Unfortunately for now, IDC has gone back to invitation only so if you want to try, let me know and I’ll try and get you a code if you can’t wait πŸ˜‰

Reblog this post [with Zemanta]

Zemanta is getting better

In case you still haven’t jumped to the Zemanta bandwagon, this might make you reconsider: They just got an upgrade, including many cool new features.

  • My Friends & Feeds– ability to include your friends and custom feeds to your Zemanta account
  • My Flickr – we will now also find pictures in your Flickr account
  • Filter – you can filter recommendations to more fine grain the results to your content
  • Z-Blog, Sep 2008

The most interesting parts is the Feeds option which allows you to import your favorite feeds into zemanta and have it find posts available there, that are relevant to your content. By using the friends function and simply adding you twitter contacts (yet another reason why you should join the twitter atheists) you can simply select the ones you want to follow. Plus, mybloglog became more useful now πŸ˜€

With the huge amount of atheist blogs, this is certainly going to come in handly in facilitating interlinking to others in the Atheosphere (whereas before you just had to have something available). Now I can easily start writing something about ethics, and get some stuff from, say, the Atheist Ethicist to add.

The other one I like is that you can now filter you image results. This was sorely needed as you very often have an idea on what to put as a image but zemanta does not give you the option. This has finally become better than photodropper now since it is both faster, and you get previews and you get to see more sources than simply flickr. Plus, you can tell it to only grab your own stuff if you have a flickr account πŸ˜‰

Cool week for bloggers πŸ˜€

Reblog this post [with Zemanta]

Slap in the face

This mountain bicycle features oversized tires...

I’ve been trying to control and introspect my feelings lately, after the recent event where the Barefoot Bum abruptly terminated his self-hosted blog. This sudden turn of events left me stunned and hurt, very much like a slap in the face.

Thus, I’ve been waiting for the last few days to get an explanation, a reason or something anyway to understand what led to this. But after my emails were ignored and my IM attempts were shot down, I’m starting to believe this is for him, somehow personal.

But why is this a slap in the face for me? Let me give you an analogy.

Lets say that you have an old fashioned bicycle which does not have any speed control but always moves at the same old speed. This bicycle does not have anything fancy but it takes you where you want it eventually but like all bikes missing speed control, when the road gets upward, it makes you struggle and when it goes downwards, your pedaling becomes useless.

I see this and I explain to you that there are new types of custom bicycles with speed control. They takes a bit of time to setup and get used to but give you much more power in your rides. You’re sceptical at first but once I explain the rest of the features and widgets that a custom bicycle can have and that I’ll be glad to set it up or you as a gift (once you buy for the material) you’re sold.

I also explain that I’m trying to convince more people to try these out as I think it’s worth it.

So I spend some time to setup this bicycle and you start using it. The first week goes just fine and while you don’t yet have the perfect understanding of speed control, you can ride it. Sometimes it gets a bit harder as you’re not used to switching the speeds but nothing serious. As far as I know, everything seems to be going fine until…

One sunday, I wake up to find you shouting how much these bicycles suck. You start calling them an absolute piece of crap that only bike mechanics could ever setup and ride, regardless of the fact that many non-mechanics are doing exactly that. Not understanding what changed, I try to explain that this criticism is a bit harsh.

And the next time I wake up and find that you’ve smashed your new bike into millions of pieces. This bike which as a gift I helped you setup, without any expectation of reward and with the best of intentions, is now scrap metal.

How do you think that makes me feel?

All along you knew that as my first attempt to setup a custom bike for, you are the first sample people are going to look at as an example. And yet, you now start saying that custom bikes are not working and that you can’t remove those dynamos I suggested for your old bike either.

You don’t consider that custom bikes may not fit your style. You don’t give me a chance to fix any problems. No, you smash it and then say that they are crap. As if you’re trying to deliberately turn people off and sabotage all I’m trying to achieve.

How do you think that makes me feel now?

If you thought hurt and surprised, you’d be spot on.

Like a slap in the face.

And here I am now. A few days after the “slap”, and I still do not know the fuck happened. I’ve been patiently waiting to see if anything will be explained but in vain. I’ve also been trying to suppress my outburst but I’ve had enough.

All I know is that from one day to the other a succesful migration was trashed and I’m reading impressions that I didn’t expect. At least not from someone I respected. And make no mistake. The migration was succesful. All the posts from the old blog were moved. All the comments, from both blogger and IDC were moved ((Save one post with ID Comments)). Everything was working. The only missing was the moving of the old blogroll and widgets to the new blog, and the only reason I did not do this as well, is because I was not given access.

There was absolutely nothing more complex left to do, than going to your dashboard and clicking on “Write new post”. Others agree.

As for the setup difficulty; do not be confused by my step-by-step process. In that, I went into excruciating detail in order to make it as easy and fool-proof to follow as possible. I could have easily shortened it to half the size.

That’s it then. This post was mostly a rant to take this stuff out of my chest before it easts me up and burst out like an alien of bitterness and anger. I cannot claim to know why BB acted the way he did but for me, it was certainly the wrong way.

For me, it is especially troublesome when we’re talking about atheist activism, solidarity and cooperation to have my first attempt to help others, pissed on like that from the get go.

UPDATE @ 02/11/2009: This post was never posted publicly until now. As a result of recent developments with the Barefoot Bum, I’m making it public as I see no hope of salvage. Make of it what you will.

Reblog this post [with Zemanta]

Medieval Pics

I’m too lazy and demotivated to write anything interesting, so instead I’m going to post some pics from recent Medieval Market Excursions

Frankfurt Mittelalter markt

The medieval market of Frankfrut happened in Offenbach and it was quite crowded. I guess mostly because so many people could come without traveling far.

There were quite a few interesting items on sale but I especially liked these blobs on sale

HehNyah

And there was also some extreme cuteness

So cute!

Burghayn

This was the first medieval market I went in germany back more than one year ago. This time the market was much much bigger

I also had a chance to wear some new clothes and there were surprisingly many people in medieval attire as well.

There was also some great swordfighting to be seen and I managed to get some great action pics. I find the last one especially cool.

I also tried to take some artistic photos

And finally, I got to see Schelmish in all their glory again. It was a very short gig however πŸ™ Nevertheless, you too can enjoy some pure medieval music now.

[youtube]B0HRvCAma2Y[/youtube]

If you liked all these, you might like the rest of my medieval pics.

Reblog this post [with Zemanta]