web 2.0 knowledge management post #1

After a discussion with a friend (a Director of Projects for a large website), I was pondering the state of Knowledge Management and its intersection with the nebulous term “Web 2.0″. [Sad short-hand this phrase - because a wiki is not a blog, nor does it have "friends" but I digress... Note to self: write a post on the un-specificity of the term Web 2.0]

This is a subject near and dear to my frontal lobe because I abhor remembering things that do not bring me joy and well being. For a vague example, what did we decide to set as the discount for customer’s of type X? Or, what was the conclusion of our research into market Y?

And so, as in most corporations, I will email the AHSME (ad hoc subject matter expert) and act on the reply, and possibly file it into an email folder (albeit a different one from the last time I needed that data). [This cycle makes me feel dumb and it costs my company money.]

In this article from 2006, now perhaps out of date, Mr. Carr weights his discussion on people’s behavior. And rightfully so. As so aptly put by one of the comments on the post “You can’t run a library without librarians.” But his article, as is the best of le Web deuxieme, is actually a review of an article by Andrew McAfee of the Harvard Business School.

And in a follow up to Carr’s review, McAfee writes of business leaders, “If they can convince their organizations that using and contributing to
the internal collabosphere is part of the fabric, identity, and life of
the company, some interesting things will happen.”

Like what exactly? I suspect that the 24-30 year-olds will be ROTFL about the Sr. VP’s exhortation that “We’re hip! We blog!” You can’t legislate the organic!

But you can try this… (free and unsolicited advice coming up)

  • Ban Microsoft Office from the desktop! - Reports are done in blog, plans are done in wiki or other collaboration (e.g., Sharepoint) space.
  • Ban internal email - Back to collaboration space (where I query a colleague within a product, project or customer context)
  • Add Librarians - Hey India, Brasil, Kenya great opportunity for outsourced taxonomy admins now developing.
  • Abolish the IT department - Create an Agile Productivity Coaching team that roams and helps you create or update your dashboard and perhaps brings a camera to capture your (report, plan, idea, demo, training module)

Disclaimer: I am not a Knowledge Worker… but I play one on the Internet.

Book it!
  • del.icio.us
  • Technorati
  • ThisNext
  • Furl
  • blogmarks
  • Reddit
  • Digg
  • StumbleUpon

Skype to the Desktop with Belkin!

Belkin Skype Desktop PhoneI bought this 2 days ago and really like it. There is a review by rayboy that details the pros and cons pretty well. (This Skype Gear review is good but not very critical…)

The phone has some *issues*:
If you move to a different router, it doesn’t very gracefully update its Dynamic DHCP settings. I actually had to force it by setting it as static to my new router and then switching it back to Dynamic. (DUMB BELKIN. VERY DUMB.)

And also, at one point it just died. Not while I was using it but I noticed it was black and didn’t light up when I touched a button. I moved the power to a different strip and it has been fine now for a day. Maybe they should figure out how to draw power from the Ethernet cable…

This device is, however, exactly what I need. I work from home, don’t like paying monthly fees for fixed lines, and need a general “voicemail” line as well as a system for international calling. This is the thing!

It should be priced at more in the $50 range (you know, like a Belkin, not a Cisco). It has about $5 worth of phone parts, and maybe $10 worth of networking parts.

I bought this phone because sometimes I just need that old fashioned, phone feeling (speakerphone, big keypad). The networking is a big selling point (it better be as the plastic is cheap). If this had been yet another USB thing, it would have gotten tossed in a drawer (like the cheap Philips skype phone laying around here somewhere).

Book it!
  • del.icio.us
  • Technorati
  • ThisNext
  • Furl
  • blogmarks
  • Reddit
  • Digg
  • StumbleUpon

aStore into K2 theme on WordPress

Wha? If you have an Amazon Associates account, you can create a little store. If people buy from that, then you get PAID! That’s what the g-units want isn’t it? To get paid?

SO… You will have to search the web for tips on how to set up and customize your store but here’s how I made it look nice in my K2 powered blog over at Kulcha.

First thing, I got the inline frame code for my store and it looked horrible… about 2 inches wide and scrollbars everywhere!

Next, I created a template in my theme which would elminate the sidebar:

  • Take page.php & add template php code to the top e.g., <?php/*Template Name: No Sidebar*/?>
  • Remove the <? php get_sidebar(); ?> from near the end of it
  • Save this as pagenosidebar.php and upload to theme directory
  • Create a css class to increase the width of your primary div (I put it in the css of my custom K2 style)

After that, I had to edit the css of my aStore. (That sounds dirty huh?)
I just trimmed the margin of the body div from 24px to a lovely 5px.

Book it!
  • del.icio.us
  • Technorati
  • ThisNext
  • Furl
  • blogmarks
  • Reddit
  • Digg
  • StumbleUpon

K2 Theme for WordPress

This theme is kind of a monster. But in a good way. It has a kerjillion features and the code is diligently maintained. K2 has a very clean look and can be easily customized with your own “style”. In the options you can choose to have one, two or three columns.

The latest version (basically a release candidate 3/4 for version 2) boasts an amazing Ajax sidebar manager. There are also very fast live, search features and an Ajax comments engine which posts comments without reloading the page. Sweet?

Searching through themes can be a bit overwhelming… I’ll be looking for function and get distracted by form. Or I’ll be looking for something cool but then remember that I want it to be supported by the latest version of WordPress. K2 is, for now, taking care of all that for me. I’ve got other fish to fry so… I’m using it a lot. Isn’t that what its for?

Oh yeah, you can get it here. And there’s forums where you can post your nubile questions… or heck, ask me?

Book it!
  • del.icio.us
  • Technorati
  • ThisNext
  • Furl
  • blogmarks
  • Reddit
  • Digg
  • StumbleUpon

SoulCode Moves On WordPress 2.3

So, this is getting better and better! Ya’ll should really check this out.

I know that I still have much to learn but dang I like this software!

Coolest New Features in no particular order:

  • Convert categories to tags
  • Improved plugin management
Book it!
  • del.icio.us
  • Technorati
  • ThisNext
  • Furl
  • blogmarks
  • Reddit
  • Digg
  • StumbleUpon

Passing PHP variables to Javascript

I had a simple problem. I wanted to pass a single variable from the PHP Server to some Javascript code.
In the top of my page I set the variable:
$myVar = $_SERVER['PHP_SELF'];
?>

Then I just call my php function and pass it that variable as an argument.
But…
I have to use PHP to echo back the value.
myJscriptFunction('<?php echo $myVar; ?>');

Book it!
  • del.icio.us
  • Technorati
  • ThisNext
  • Furl
  • blogmarks
  • Reddit
  • Digg
  • StumbleUpon

Using Outlook Custom Forms and Getting Things Done

Ok. I’ll admit it. I haven’t read the book. But I did read the article on Wikipedia! And I have been working with Outlook, no, I’ve lived my life (sad, I know) from Outlook for almost a decade now. Since my days as a MicroSerf in Redmond and it had another, more vile name or two (MS Mail, then Schedule+, then Exchange) and ugly reputation for crashing.

Nowadays Microsoft Outlook can almost walk the dog! The day it can do that will be the day that it supports custom forms on portable devices. If you don’t know what custom forms are, then you have been bound by the design into a mode of productivity as decided by a Microsoft employee. Download rap music|Download Mp3 All Genres|Download Leona Lewis Mp3 Continue reading ‘Using Outlook Custom Forms and Getting Things Done’

Book it!
  • del.icio.us
  • Technorati
  • ThisNext
  • Furl
  • blogmarks
  • Reddit
  • Digg
  • StumbleUpon

WordPress 2.1 in its Own Folder with a Static Front Page

If you have an existing WordPress 2.0 and you’ve been using the old static_front plugin from Semiologic you might run into some issues… I was using v 2.4 of sem_static_front and once I upgraded to WordPress 2.1, the plugin wasn’t working any longer. While WordPress 2.1 now offers its own control for that setting, that too was not working correctly for me. But please, forgive us a word from our sponsors and read on…

Continue reading ‘WordPress 2.1 in its Own Folder with a Static Front Page’

Book it!
  • del.icio.us
  • Technorati
  • ThisNext
  • Furl
  • blogmarks
  • Reddit
  • Digg
  • StumbleUpon

Soulcode moves to Wordpress 2.1

The new version of Wordpress is now available. It offers many new features as well as increased speed and security. Soulcode is in the process of redesigning its template to be 2.1 compatible so look out for our new look coming soon!

Book it!
  • del.icio.us
  • Technorati
  • ThisNext
  • Furl
  • blogmarks
  • Reddit
  • Digg
  • StumbleUpon

Back Up Your Data

I recently decided that I could no longer live with only 40 GB worth of storage on my laptop. So I decided that I would buy a larger hard drive and use the original drive as a backup drive. And I would buy a little USB enclosure to house the backup drive. You can buy these 2 items together (and maybe get backup software too)…. but it will probably cost you double.

I looked at Tiger Direct, where I have happily shopped before, but saved $10 by shopping around and trying a new vendor,Directron. E-commerce is business “Darwinism on steroids”… indeed.

I found a great deal on a new Toshiba Travelstar 100GB - 5400RPM - 8MB cache. As of this writing, I have had it for a week. So far, so good. But only the paranoid survive, so please, regularly defragment your hard drive, run an occasional check disk (for errors) and back up your data weekly.

Hard drives are moving parts… they fail. Its worth the money and time. So, I also bought a cheap little external drive enclosure for $10. Good enough to use for the purposes of backups and archiving. If I was going to use it every day, I would have spent more money on the enclosure. But enough about the hardware.

If you want to backup your data, you could just drag the files from one drive to another. But why copy files that haven’t changed? That is the beauty of backup software. Even a simple little product like Microsoft’s Sync Toyknows whether a file has changed and thus, if it needs to be copied over to the backup set.

However, simple little tools like Sync Toy, are not slick enough to copy the Operating System files. So, while you may have a safe copy of that important document, you will have to spend days re-installing Windows XP or whatever your OS. Unless of course, you use a product like Norton Ghost, which I will discuss further in another post.

I will write more about Backup software and its principles in another posting but for now be forewarned. One day it will happen to you, either prepare yourself to be up and running quickly or prepare yourself to be greatly distressed. It is your choice!

Book it!
  • del.icio.us
  • Technorati
  • ThisNext
  • Furl
  • blogmarks
  • Reddit
  • Digg
  • StumbleUpon