- Things 3 0 1 – Elegant Personal Task Management Software
- Things 3 0 1 – Elegant Personal Task Management Skills
For example, if the selected time for an element is 0.30 minute, the pace rating is 110% and if the sum of all secondary adjustments amounts to 20% then the normal time will be = 0.3 × 1.10 × 1.20 = 0.396 min. Physiological Evaluation of Performance Rating. Apple Apple Design Award. 'Things 3 is the best task management app out there. It is simple and easy to use, and it has a beautiful design. While being powerful enough for even the most detailed and organized power user, it is also simple enough for the rest of us.'. Shawn Blanc, The Sweet Setup. Get things done! The award-winning Things app helps you plan your day, manage your projects, and make real progress toward your goals. Best of all, it's easy to use. Within the hour, you'll have everything off your mind and neatly organized—from routine tasks to your biggest life goals—and you can.
Linux 3.0 released on 21 Jul, 2011
Summary: Besides a new version numbering scheme, Linux 3.0 also has several new features: Btrfs data scrubbing and automatic defragmentation, XEN Dom0 support, unprivileged ICMP_ECHO, wake on WLAN, Berkeley Packet Filter JIT filtering, a memcached-like system for the page cache, a sendmmsg() syscall that batches sendmsg() calls and setns(), a syscall that allows better handling of light virtualization systems such as containers. New hardware support has been added: for example, Microsoft Kinect, AMD Llano Fusion APUs, Intel iwlwifi 105 and 135, Intel C600 serial-attached-scsi controller, Ralink RT5370 USB, several Realtek RTL81xx devices or the Apple iSight webcam. Many other drivers and small improvements have been added.
Contents
- Prominent features
1.1. Btrfs: Automatic defragmentation, scrubbing, performance improvements
Automatic defragmentation
COW (copy-on-write) filesystems have many advantages, but they also have some disadvantages, for example fragmentation. Btrfs lays out the data sequentially when files are written to the disk for first time, but a COW design implies that any subsequent modification to the file must not be written on top of the old data, but be placed in a free block, which will cause fragmentation (RPM databases are a common case of this problem). Aditionally, it suffers the fragmentation problems common to all filesystems.
Btrfs already offers alternatives to fight this problem: First, it supports online defragmentation using the command 'btrfs filesystem defragment'. Second, it has a mount option, -o nodatacow, that disables COW for data. Now btrfs adds a third option, the -o autodefrag mount option. This mechanism detects small random writes into files and queues them up for an automatic defrag process, so the filesystem will defragment itself while it's used. It isn't suited to virtualization or big database workloads yet, but works well for smaller files such as rpm, SQLite or bdb databases. Code: (commit)
Scrub
'Scrubbing' is the process of checking the integrity of the data in the filesystem. This initial implementation of scrubbing will check the checksums of all the extents in the filesystem. If an error occurs (checksum or IO error), a good copy is searched for. If one is found, the bad copy will be rewritten. Code: (commit 1, 2)
Other improvements
-File creation/deletion speedup: The performance of file creation and deletion on btrfs was very poor. The reason is that for each creation or deletion, btrfs must do a lot of b+ tree insertions, such as inode item, directory name item, directory name index and so on. Now btrfs can do some delayed b+ tree insertions or deletions, which allows to batch these modifications. Microbenchmarks of file creation have been speed up by ~15%, and file deletion by ~20%. Code: (commit)
-Do not flush csum items of unchanged file data: speeds up fsync. A sysbench workload doing 'random write + fsync' went from 112.75 requests/sec to 1216 requests/sec. Code: (commit)
-Quasi-round-robin for space allocation in multidevice setups: the chunk allocator currently always allocates space on the devices in the same order. This leads to a very uneven distribution, especially with RAID1 or RAID10 and an uneven number of devices. Now Btrfs always sorts the devices before allocating, and allocates the stripes on the devices with the most available space. Code: (commit)
1.2. sendmmsg(): batching of sendmsg() calls
Recvmsg() and sendmsg() are the syscalls used to receive/send data to the network. In 2.6.33, Linux added recvmmsg(), a syscall that allows to receive in a single call data that would need multiple recvmsg() calls, improving throughput and latency for a number of scenarios. Now, a equivalent sendmmsg() syscall has been added. Breach & clear: deadline (2015). A microbenchmark saw a 20% improvement in throughput on UDP send and 30% on raw socket send
Code: (commit) Sqlpro studio 1 0 417 inches.
1.3. XEN dom0 support
Finally, Linux has got Xen dom0 support
1.4. Cleancache
Recommended LWN article: Cleancache and Frontswap
Cleancache is an optional feature that can potentially increases page cache performance. It could be described as a memcached-like system, but for cache memory pages. It provides memory storage not directly accessible or addressable by the kernel, and it does not guarantee that the data will not vanish. It can be used by virtualization software to improve memory handling for guests, but it can also be useful to implement things like a compressed cache.
Code: (commit), (commit)
1.5. Berkeley Packet Filter just-in-time filtering
Recommended LWN article: A JIT for packet filters
The Berkeley Packet Filter filtering capabilities, used by tools like libpcap/tcpdump, are normally handled by an interpreter. This release adds a simple JIT that generates native code when filter is loaded in memory (something already done by other OSes, like FreeBSD). Admin need to enable this feature writting '1' to /proc/sys/net/core/bpf_jit_enable
Code: (commit)
1.6. Wake on WLAN support
Wake on Wireless is a feature to allow the system to go into a low-power state (e.g. ACPI S3 suspend) while the wireless NIC remains active and does varying things for the host, e.g. Mimolive 4 7 36. staying connected to an AP or searching for networks. The 802.11 stack has added support for it.
Code: (commit 1, 2)
1.7. Unprivileged ICMP_ECHO messages
Recommended LWN article: ICMP sockets
This release makes it possible to send ICMP_ECHO messages (ping) and receive the corresponding ICMP_ECHOREPLY messages without any special privileges, similar to what is implemented in Mac OS X. In other words, the patch makes it possible to implement setuid-less and CAP_NET_RAW-less /bin/ping. Initially this functionality was written for Linux 2.4.32, but unfortunately it was never made public. The new functionality is disabled by default, and is enabled at bootup by supporting Linux distributions, optionally with restriction to a group or a group range.
Code: (commit)
1.8. setns() syscall: better namespace handling
Recommended LWN article: Namespace file descriptors
Linux supports different namespaces for many of the resources its handles; for example, lightweight forms of virtualization such as containers or systemd-nspaw show to the virtualized processes a virtual PID different from the real PID. The same thing can be done with the filesystem directory structure, network resources, IPC, etc. The only way to set different namespace configurations was using different flags in the clone() syscall, but that system didn't do things like allow to one processes to access to other process' namespace. The setns() syscall solves that problem-
Code: (commit 1, 2, 3, 4, 5, 6)
1.9. Alarm-timers
Recommended LWN article: Waking systems from suspend
Alarm-timers are a hybrid style timer, similar to high-resolution timers, but when the system is suspended, the RTC device is set to fire and wake the system for when the soonest alarm-timer expires. The concept for Alarm-timers was inspired by the Android Alarm driver, and the interface to userland uses the POSIX clock and timers interface, using two new clockids:CLOCK_REALTIME_ALARM and CLOCK_BOOTTIME_ALARM.
Code: (commit)
1.8. setns() syscall: better namespace handling
Recommended LWN article: Namespace file descriptors
Linux supports different namespaces for many of the resources its handles; for example, lightweight forms of virtualization such as containers or systemd-nspaw show to the virtualized processes a virtual PID different from the real PID. The same thing can be done with the filesystem directory structure, network resources, IPC, etc. The only way to set different namespace configurations was using different flags in the clone() syscall, but that system didn't do things like allow to one processes to access to other process' namespace. The setns() syscall solves that problem-
Code: (commit 1, 2, 3, 4, 5, 6)
1.9. Alarm-timers
Recommended LWN article: Waking systems from suspend
Alarm-timers are a hybrid style timer, similar to high-resolution timers, but when the system is suspended, the RTC device is set to fire and wake the system for when the soonest alarm-timer expires. The concept for Alarm-timers was inspired by the Android Alarm driver, and the interface to userland uses the POSIX clock and timers interface, using two new clockids:CLOCK_REALTIME_ALARM and CLOCK_BOOTTIME_ALARM.
Code: (commit 1, 2)
All the driver and architecture-specific changes can be found in the Linux_3.0_DriverArch page
Cache xattr security drop check for write: benchmarking on btrfs showed that a major scaling bottleneck on large systems on btrfs is currently the xattr lookup on every write, which causes an additional tree walk, hitting some per file system locks and quite bad scalability. This is also a problem in ext4, where it hits the global mbcache lock. Caching this check solves the problem (commit)
Increase SCHED_LOAD_SCALE resolution: With this extra resolution, the scheduler can handle deeper cgroup hiearchies and do better shares distribution and load balancing on larger systems (especially for low weight task groups) (commit), (commit)
Move the second half of ttwu() to the remote CPU: avoids having to take rq->lock and doing the task enqueue remotely, saving lots on cacheline transfers. A semaphore benchmark goes from 647278 worker burns per second to 816715 (commit)
Next buddy hint on sleep and preempt path: a worst-case benchmark consisting of 2 tbench client processes with 2 threads each running on a single CPU changed from 105.84 MB/sec to 112.42 MB/sec (commit)
Make mmu_gather preempemtible (commit)
Batch activate_page() calls to reduce zone->lru_lock contention (commit)
tmpfs: implement generic xattr support (commit)
- Memory cgroup controller:
Add memory.numastat API for NUMA statistics (commit)
Add the pagefault count into memcg stats (commit)
Reclaim memory from nodes in round-robin order (commit)
Remove the deprecated noswapaccount kernel parameter (commit)
Allow setting the network namespace by fd (commit)
- Wireless
Add the ability to advertise possible interface combinations (commit)
Add support for scheduled scans (commit)
Add userspace authentication flag to mesh setup (commit)
New notification to discover mesh peer candidates. (commit)
Allow ethtool to set interface in loopback mode. (commit)
Allow no-cache copy from user on transmit (commit)
ipset: SCTP, UDPLITE support added (commit)
sctp: implement socket option SCTP_GET_ASSOC_ID_LIST (commit), implement event notification SCTP_SENDER_DRY_EVENT (commit)
bridge: allow creating bridge devices with netlink (commit), allow creating/deleting fdb entries via netlink (commit)
batman-adv: multi vlan support for bridge loop detection (commit)
pkt_sched: QFQ - quick fair queue scheduler (commit)
RDMA: Add netlink infrastructure that allows for registration of RDMA clients (commit)
BLOCK LAYER
Submit discard bio in batches in blkdev_issue_discard() - makes discarding data faster (commit)
EXT4
Enable 'punch hole' functionality (recommended LWN article) (commit), (commit)
Add support for multiple mount protection (commit)
CIFS
Add support for mounting Windows 2008 DFS shares (commit)
Convert cifs_writepages to use async writes (commit), (commit)
Add rwpidforward mount option that enables a mode when CIFS forwards pid of a process who opened a file to any read and write operation (commit)
OCFS2
SSD trimming support (commit), (commit)
Support for moving extents (commit), (commit)
NILFS2
Implement resize ioctl (commit)
XFS
Add online discard support (commit)
caam - Add support for the Freescale SEC4/CAAM (commit)
padlock - Add SHA-1/256 module for VIA Nano (commit)
s390: add System z hardware support for CTR mode (commit), add System z hardware support for GHASH (commit), add System z hardware support for XTS mode (commit)
s5p-sss - add S5PV210 advanced crypto engine support (commit)
User-mode Linux: add earlyprintk support (commit), add ucast Ethernet transport (commit)
xen: add blkback support (commit)
Allow the application of capability limits to usermode helpers (commit)
- SELinux
add /sys/fs/selinux mount point to put selinuxfs (commit)
Make SELinux cache VFS RCU walks safe (improves VFS performance) (commit)
perf stat: Add -d -d and -d -d -d options to show more CPU events (commit), (commit)
perf stat: Add --sync/-S option (commit)
rcu: priority boosting for TREE_PREEMPT_RCU (commit)
ulimit: raise default hard ulimit on number of files to 4096 (commit)
- cgroups
remove the Namespace cgroup subsystem. It has been replaced by a compatibility flag 'clone_children', where a newly created cgroup will copy the parent cgroup values. The userspace has to manually create a cgroup and add a task to the 'tasks' file (commit)
Make 'procs' file writable (commit)
kbuild: implement several W= levels (commit)
PM/Hibernate: Add sysfs knob to control size of memory for drivers (commit)
posix-timers: RCU conversion (commit)
coredump: add support for exe_file in core name (commit)
Things 3 0 1 – Elegant Personal Task Management Software
CategoryReleases
When you have fewer commitments, your tendency towards To-Do list is lower
For a long while (even in the early days of AlphaEfficiency) I wasn't endorsing To-Do lists. At the beginning of my productivity journey, I've viewed them not only as an interruption, but as an activity with maintenance cost, one which was severely slowing me down. At that time, this was a fact of life, as I truly had only a few key assignments during the day that had to be executed. My brain was replacing the To-Do list just fine. I know it is blasphemous to say that memory can work as a To-Do list in GTD® and Productivity circles, but when you need to do 2–3 things in a single day, it really does work just fine.
This is one of the reasons why a lot of people will never truly understand the usefulness for task management as an activity. By the time necessity for it arises, these people will disregard it as something that doesn't work, because they've already tried it before, where overhead didn't justify the time investment.
Times and needs change
But lately I've been busy working, running AlphaEfficiency magazine, helping friends get their startups up, and as the natural consequence, there was an endless task list that seemed like a unstoppable treadmill. This transformed my life into an endless chase from one task to the next. The fact that I had a to-do list, didn't mean that I was completing every single task that was found on it. But it did mean that I was succeeding in an effort not to forget the important things to finish.
Later down the road, I've accumulated a couple of task management that weren't operating as a full blown integrated system. And finally, these days I've been very grateful that I've been playing with them for so long, because the apps that I've observed as merely a toy, are now helping me push the things through the door.
When your commitments don't scale, your to-do list is a safety net
You will never achieve a to-do list perfection, as it is always work in progress. The to-do list is simply a reflection of your life, and what is going on with it. It can be a pretty damn good indicator that we take too much on our plate. When your To-Do list is overfilled with tasks that you can't possibly finish within a reasonable timeframe, you can use it to make hard decisions what needs to be fired from your life.
But in order to achieve any of these things, you need to follow up with one very important aspect of task management: Task Management is a complex habit.
Unlike other habits, where you repeat one action, over and over again, and you establish a habit, task management requires a multiple set of habits that are working together, in order to establish an integrated system that ensures premium productivity levels.
3 Habits That Build Task Management
Three essential habits that build task management workflow are rather simple:
Everything else is going beyond the mechanics of the productivity principles and the CORE. While reviewing is nice to have, it isn't necessary as beforementioned activities. If you keep collecting, organizing and executing, you will be operational.
These three habits will keep you in the game and will keep moving you forward. They are your three main elements that will move you towards your goals. Keep the emphasis on executing, and you will consistently push the boundaries of what is possible.
Things 3 0 1 – Elegant Personal Task Management Skills
Related posts: