zoukankan      html  css  js  c++  java
  • A simple task management system (zz)

    //z 2013-09-12 11:22:48 IS2120@BG57IV3 T2025439826.K.F3707232185[T18,L170,R6,V233]
    1. 使用自定义语法的形式
    There are dozens of methodologies for project and task management, with focusses ranging from behemoth software solutions which are several years between major releases and social games with very high iteration and weekly releases. This article is not intended for either, however if you find at times keeping track of your work on small projects is most efficient with pen and paper or in notepad then you may find it of interest. It is easy to initially overlook its simplicity as a flaw, but I think in certain cases it presents itself to be extremely advantageous.

    //z 2013-09-12 11:22:48 IS2120@BG57IV3 T2025439826.K.F3707232185[T18,L170,R6,V233]
    Unlike complex task management systems which create a good deal of overhead I try to emphasise simplicity in my task management of small projects and make use of Notepad++ for storing them. I group tasks into four categories:

    1. Done – Task is complete
    2. Parole – Task is believed to be complete, requires testing to ratify its completion
    3. Pending – Task is not started or is not complete
    4. Obsolete – Task is now longer considered required
    I make use of Notepad++’s User Defined Language feature with syntax highlighting for each category. To set this up simply follow the following steps:
    1. From Notepad++’s view menu select User-Defined Dialogue to bring up a popup
    2. Click the Create New button and call it “ToDo”
    3. Click the Keywords Lists tab
    4. You’ll know see four keyword boxes, put the following in each respective box (including the colon):
      1. Done:
      2. Parole:
      3. Pending:
      4. Obsolete:
    5. Set the colours of each keyword to what you desire, I tend to use green, orange, red and grey respectively, I also check the bold box of each so that the keyword stands out more
    6. Finally create a new document and start some entries prefixing each with a category from step 4 and follow it by a space to ensure the following word doesn’t also get highlighted. Select Language and select ToDo to enable the new highlighting.

    It’s a remarkably simple solution which I find works very well for small projects although it certainly isn’t capable of scaling. I don’t really use it for planning but more for day to day tracking of bugs and features and as such it has demonstrated to be an extremely powerful and flexible system. Take for example needing to break a task down into five sub-tasks, with traditional systems it would probably take you 5 to 10 minutes. With this system you merely press the enter key a few times in the right places. Which for small projects wins me over in terms of simplicity over big solutions or over the problems of editing paper and pen notes.

    Another strong benefit of this system is it’s very easy when you start work to refresh your mind as to exactly what you’re on and when you leave to assess the progress made and make a note of what needs doing next, giving a great piece of mind. As a text editor solution it can be as ad-hoc as you want it to be and its trivial to include rough notes and then formalise them into entries at a later point.

    //z 2013-09-12 11:22:48 IS2120@BG57IV3 T2025439826.K.F3707232185[T18,L170,R6,V233]

    //z 2013-09-17 12:59:53 IS2120@BG57IV3 T3625854846.K.F3707232185[T27,L239,R8,V337]
    2. 插件
    https://code.google.com/p/npp-task-list/
    This plugin automatically scans the open document in Notepad++ and adds all "TODO:*" items to your task list, a window pane docked on the right. Double-clicking an item in the list will take you to that line in the code.

    @IS2120#CNBLOGS.T2169364049[T1,L65,R1,V259]:备忘
    $ € ₤ ₭ ₪ ₩ ₮ ₦ ₱ ฿ ₡ ₫ ﷼ ¥ ﷼ ₫ ₡ ฿ ₱ ₦ ₮ ₩ ₪ ₭ ₤ € $
  • 相关阅读:
    扫移动护理系统mysql数据库视图的Database通讯点报错Caused by: java.sql.SQLException: Value '00000000 00:00:00' can not be represented as java.sql.Timestamp
    ORACLE sql insert case when
    解决超过4000字符的字符串insert的时候报错ORA01461: 仅能绑定要插入LONG列的LONG值
    将92服务器上面的加解密服务run.bat形式改为后台服务形式
    Oracle调整sga_max_size内存参后报ORA00844和ORA00851 SGA_MAX_SIZE 42949672960 cannot be set to more than MEMORY_TARGET 6979321856. 导致数据库连接不上去,提示ORA01034:ORACLE notavailable
    解决MATLAB一直初始化,加速MATLAB(转载)
    WIN7下隐藏或显示Lenovo_Recovery_Q盘(转载)
    flowable流程中心设计(一)
    mysqlgroup by原理
    SpringMVC系列导航
  • 原文地址:https://www.cnblogs.com/IS2120/p/6745729.html
Copyright © 2011-2022 走看看