Archive for the ‘impworks site news’ Category

impworks Now with Added Social Media Buttons

Friday, August 19th, 2011

I’ve had a little fiddle round with this site to add Google +1 button, Tweet Button and Facebook like. Not because I exepect anyone to use them but so I can use all three in anger. The formatting needs a bit of work still but all three seem to be working.

Rebuilt Site

Monday, April 4th, 2011

Just finished an under the hood (no visible changes on the surface yet) rebuild of impworks. The big bonus being this site is now clean of a couple of years of junk messing around and I have a separate development site I can mess up to my hearts content.

Vue Free Objects Page

Tuesday, January 11th, 2011

Google may want to organise the Web – I just want to organise my website.  So since I had a couple of freebies for Vue floating around on Too Many Ideas without a proper home and I think I may have some more on the way I’ve made a new home for Free Vue Objects downloads.

Vue Search Sites Automated and Other Site Tweaks

Saturday, January 8th, 2011

Back in October I did some fiddling with the Vue sites search engine that uses Google custom search to let you search the sites in my Vue links directory. Each time the list of sites changed I had to manually upload a file listing the sites to be included that was generated from the database behind the directory.  Not particularly time consuming but in theory it could be automated.  I tried to set up the automation but for no readily apparent reason it just didn’t work.

In December my 404 error log checking picked up hits on one of the page that I’d made to automate this.   So I republished that page and now through the magic of the Internet the automation seems to be all systems go.

I’d somehow managed to knock out the redirection of my old blogspot blog to the one integrated here.  I hadn’t realised just how many visitors were coming through from there still so breaking / fixing it has had a surprising impact on the impworks visitor statistics!

I was also seeing occasional 404s on the directory page for tags that didn’t exist so I’ve thrown in a simple tag cloud page to give visitors to that page something to chew on.

Top Films of 2010

Thursday, December 30th, 2010

Here are my personal top films of 2010…

Since journalists are doing this why shouldn’t I ;-)

  1. Inception
  2. Monsters
  3. The Town
  4. RED – Retired Extremely Dangerous
  5. The A-Team
  6. The Expendables
  7. Solomon Kane
  8. The American
  9. Salt
  10. Clash of the Titans

Biggest missed opportunity:
Burke and Hare

Fiddling with Pictures

Thursday, December 2nd, 2010

I’ve been fiddling with my pictures pages because it gets quite a lot of visits when there is snow and in the run up to Christmas. I’ve found a jQuery lightbox that doesn’t seem to be cursed with lots of problems with bad paths. I’ve also written a little display plug-in to add a thumbnail from each page to the pictures page so it’s not so bare and boring. Now all I need to do is add some new pictures.

Experimenting with Feedburner

Thursday, October 28th, 2010

I’ve moved the Too Many Ideas RSS over to Feedburner mostly to get a better idea of what Feedburner has to offer. The existing feed is still there and will carry on working but if you want to try the new feed you can subscribe to it on:

http://feeds.feedburner.com/impworks

The first added extra using feedburner lets me offer is subscribing to the feed by email.  I’ve added the form to my site – its a bit ugly but changing the design breaks some of its functionality.

I’ve also added a tweet this link to my blog.

Vue Python Script Pages, Links Directory and Search Updated

Friday, October 8th, 2010

I’ve tweaked the display of the Vue links directory and the Google custom search of the site’s in the directory to hopefully make them easier to use.  I’ve also worked through all the python script and so they’re all displayed with a code highlighter.

One Page Can Make a Difference

Monday, August 16th, 2010

The original Knight Rider used to end with the refrain of Wilton Knight’s last words to Michael…

One man can make a difference

Tonight I thought I’d share how one page (and a tiny bit of PHP code for WordPress) made a difference to my site.  At least its made a difference for Google.  I’ll apologise for the over stretched Knight Rider references now.

I’d noticed in Google Webmaster tools that around five hundred of my site’s pages were no longer in the Google index that used to be.  I’m not sure if this was the result of Google’s Caffeine launch but the timing of the fall is quite close. I’d also seen a 5% drop in visits to the site but that could be just a random fluctuation in the numbers.

There are some pages I exclude deliberately using robot meta tags like tag index pages and category pages.  They don’t have any useful content so I didn’t want to risk a duplicate content penalty.  Even deducting those from the total number of missing pages and 300+ pages were no longer in the index.

A bit of investigation (the obligatory bit of any Knight Rider episode where Michael would wander round a warehouse filled with cardboard boxes with a torch) and deduction hinted that the missing pages were old blog posts.  The missing ones were buried deep in the blog.  They are in the XML sitemap but Google’s spider just wasn’t getting deep enough through links to think they should be in the index. I’d trusted the sitemap to keep real content in the index but it doesn”t seem to be doing that anymore.  The XML sitemap had become C.A.R.R. to my site’s K.I.T.T!

I can’t just drive into the back of the FLAG mobile unit and get Bonnie to fix the problem.  I had to come up with a solution for myself.  So I added a rather uninteresting Too Many Ideas Contents page that lists every page on my blog by title. It was pretty easy to set up in WordPress with a little bit of code in a plug-in…

  1. function show_all_posts($atts) {
  2. $posts = get_posts('numberposts=-1&orderby=title&order=ASC');
  3.  
  4. foreach($posts as $post)
  5. {
  6. $text.='<li><a href="'.$post->post_name.'">'.$post->post_title.'</a></li>';
  7. }
  8.  
  9. return '<ul>'.$text.'</ul>';
  10. }
  11.  
  12. add_shortcode('show_all_posts', 'show_all_posts');

I dropped the [show_all_posts] shortcode into a page and magically the list appeared.

Then all I had left to do was wait and see if it worked…

The impact was like Michael hitting Turbo Boost – the day after I published the page Google indexed 500+ pages on my site rather than the 200 it was doing in June and July.  Its done that every day for a week now and the number of pages has actually risen slightly to a high of 617 pages.

The 300 missing pages are now back in Google’s index so I think I can safely say…

One Page Can Make a Difference

« Older Entries