Archive for April 23rd, 2008

Testing VodPod

Just trying out the VodPod.com plugin / Firefox Extension which apparently will let me post videos on my WordPress.com blog - from ANYWHERE! Pretty cool if this works.This is a test! :)

And I suppose this is also a bit of a tease ;p - this video was created just over 10 weeks ago

from phreadz.com posted with vodpod

 

Random Nonsense Word Generator

As I went to sleep last night I was wondering how I could create some random word-like words, for something I’ve been working on. When I woke up, I had the solution! So, I thought I’d share how I did it.

The thing that was bothering me was where to find a list of dictionary words to look at to generate a nonsensical, but ‘word-like’ part of a word. I started thinking about dictionary.com and if they had some kind of API, amaong others.

Then it occurred to me that most Linux distros have a dictionary built in to the system. It lives at /usr/share/dict/words

So, with a little snippet of PHP, I was able to look at a part of this file and grab some characters.

here it is:

function makeNonsense($length){

        // used to create word fragments $length long

        $dictionaryFile = "/usr/share/dict/words";
        // eventually need to make this go higher than the rand max 32768
        $content=file_get_contents($dictionaryFile,FALSE,NULL,rand(0,32768),$length);
        // get rid of numbers. spaces and other characters
        $content = ereg_replace("[^a-zA-Z]“, “”, $content);
        $content = strtolower(str_replace(” “,”",$content));
        $nonsense = str_replace(”\n”,”",$content);
        return $nonsense;

}

And that’s it! ;)


 

April 2008
M T W T F S S
« Jan   May »
 123456
78910111213
14151617181920
21222324252627
282930  

Who is this 'kosso' anyway?

I am a 'Createc'. A creative technologist, entrepreneur/ hacker/ geek. Worked on building things on the web for over 12 years.

I'm engaged to the beautiful Efisia Fele :)

Used to work at BBC News interactive and created the publishing and delivery systems for video news to get distributed on huge screens in major railway stations around the country.

I left the BBC to become CTO / sole-lead architect/developer at podcast.com



I'm currently building a stealth-mode project in my spare time, which I'm VERY excited about! :)

kosso's flickr stream

Re: Re: Hash

Dalston Peace Mural

email tag test

Every camera phone should have one :)

bootstrapped schwag.!

Re: Re: @kosso

cable hell

Blank for Banksy?

gumballs

Hulk drink!

More Photos

About kosso

I'm currently the CTO at podcast.com - ex-BBC News interactive. Love gadgets. Loves to makes tools for gadgets. In love with building on the web for over a decade.

stats

  • 84,681

Top Clicks

  • None