ExtJS Javascript Library for Beginners!

The Ext Javascript library for beginners, as I learn ExtJS so will you!

Archive for the ‘Home’ Category

I’ve Moved!

leave a comment »

Hey Ya’ll!

Ext-Perience has moved, although not far, it’s a change of theme and a change of URL so update your bookmarks and feed reader settings etc…

The 1018 domain was expiring at the end of April and since this was the only thing on that domain I decided to move home to wordpress.com for the managed hosting of this blog.

Everyone will get 301′d here from now on so hopefully I won’t loose any valuable traffic or linkage. If I do, not worries.

Hopefully this new hosted blog will inspire me to post more often as the other one started to run into technical difficulties due to the hosting provider, but you get what you pay for and I paid nothing so I have no room to complain.

By the way, I’m thinking of trying to push this blog a little more now they’ve released Ext Core, very cool idea guys… would anyone like to write a piece on here or a regular column? Leave a comment if you’re interest.

I know I don’t blog as often as I should but, my microblogging is second to none! Why not follow me on Twitter as well.

jameshd out.

Written by jameshd

23rd April, 2009 at 11:18 pm

Posted in Home

Tagged with

Want some free subversion hosting?

leave a comment »

So did I… I came across these guys.:

http://xp-dev.com/

Unlimited developers and projects!!!
So far so good for my little project.

In other news, Zoodle a site made by the guys I work with has gone live today, so if you’re looking for property reports in New Zealand, Zoodle is the place to get them.

2 useful blog posts in 1 day eh!

Written by jameshd

13th January, 2009 at 9:11 pm

Posted in Randoms

Tagged with ,

My Fake Page Rank Bar with CSS

leave a comment »

Hey,

The new year is getting off to a slow start, but here’s something that maybe of use to someone…We had a problem showing a PageRank bar on our site, something to do with IE bitching about non secure items, so to save an API call and bandwidth I made this. Now we just get the PageRank and display some div’s!


< ?php
$pagerank = rand(0,10);

?>

<style>
div.pagerank-holder
{
height:5px;
width:50px;
background-color:#f7f7f7;
border:1px #848484 solid;
float:left;
}

.rank
{
background-color:#009933;
height:5px;
float:left;
}

</style>
<p>Page rank: < ?php echo $pagerank;?> </p>
<div class="pagerank-holder">
<div class="rank" style="width:<?php echo ($pagerank/10)*100;?>%"></div>
</div>

Written by jameshd

5th January, 2009 at 4:21 pm

Posted in Randoms

Tagged with , ,

Follow

Get every new post delivered to your Inbox.