Tag Archives: projectmanagement

Two useful tools for people who want to be productive but find their work day gets away from them

Do you find the work day slide by and you think: what did I even get done today? Or do you find yourself tracking what you are doing but finding that you lost focus on what you are supposed to be doing?

If so, David Seah has tool useful tools on his web site you can use:

  1. The Emergent Task Timer
  2. The Emergent Task Planner

The first tool is a good way to track what you even got done today. David has some good examples of how he uses it. Generally I like to put what I think my focus will be at the top, put administrivia work and breaks at the bottom, and put meetings etc in the middle. You only have room for 12 tasks, so if you find you have a lot of meetings, consider grouping them all into one task: Meetings. Or you may have two tasks: Client Meetings and Internal Meetings.  However you do it, don’t sweat it too much. The first few days you might find it hard to get everything done, but it gets easier over time.

The second tool is a good way to plan your day and try to keep it focused. It takes a bit more work, but it is good when you want to ensure you spent your time well. It can be handy if you are doing daily standups, because you can list the main thing you are working on at the top. Ideally you are spending most of your day working on that…if you are doing other things below it, chances are they are a blocker of some sort.

These are just two useful tools on David Seah’s web site. I recommend you take a few minutes to check out the rest of his site: you might find other things he has worthwhile. I know I have. I’ve been using his tools off and on since 2007, and wrote about how good they are.

Good luck with the tools. Here’s to being more productive this week.

P.S. If you need a timer, I recommend this site.

(Image: link to image on David Seah’s web site)

Advertisement

It’s 2021. Why are you still using spreadsheets to manage your project plans? Use this instead

It’s 2021 and I still see people managing projects using Excel spreadsheets. Sure you CAN do it, but you can do better. I am a fan of OpenProj and I use it often. If that is not for you, consider this online version: Build Gantt Charts Online.

What I like about these tools is you can tie tasks together which have dependencies (as shown in the image). This is very helpful and something not easy to do with spreadsheets.

Speadsheets are great for many things: for managing projects, use a better tool.

How to set up Kanboard (a visual task board inspired by Kanban) on the IBM Bluemix platform

It is very easy to set up Kanboard on Bluemix, IBM’s PaaS solution. (For those of you not familiar with Kanboard, it it a visual task board inspired by Kanban). I encourage you to visit the Kanboard site for more information. 
 
Meanwhile, to set up Kanboard in Bluemix, I took the following steps, some which are optional:
 
1) Download the kanboard code from here: http://kanboard.net/downloads
2) Unzip the kanboard folder.
3) (Optional) Copy the kanboard folder into a local test environment. I had a Xampp test environment and I put the kanboard there. (e.g., C:\xampp\htdocs\kanboard). I started Apache and then pointed my browser at http://localhost/kanboard to see it working. (One of the benefits of doing this is I can configure the Kanboard environment before I push it into Bluemix. In my case, I created some new users, changed the admin password, and added some default tasks. If I push this folder, these changes will also show up in Bluemix.)
4) I had a copy of the Cloud Foundary executable (cf.exe) to push the code into Bluemix: I put the cf.exe file in the Kanboard folder.
5) I created a manifest.yml file in the Kanboard folder. In my manifest.yml file I had the following 
 

applications:
– name: <my app name>
  memory: 256M
  instances: 1
  host: <my host name>
  buildpack: https://github.com/zendtech/zend-server-php-buildpack.git
 
You can make the name and host name anything, though the hostname is part of the URL for the site, so it must be acceptible as part of a URL. Also the hostname needs to be unique in Bluemix. I tend to make the app and host name the same.
 
Open a command window, and from the Kanboard folder, enter the following commands:
  1. cf api https://api.ng.bluemix.net
  2. cf login -u <your Bluemix login account>
  3. cf target -o <your Bluemix login account> -s dev
  4. cf push
Once you see that the health and status for the app is “OK”, you can either go to Bluemix to check it out, or go directly to  the url: http://<hostname>.mybluemix.net/
You should be able to login and proceed to use it. (The default userid and password is here).