Products and Services
Find the right tools for your business. Select the right components and build the perfect web site.
When adding in or subtracting seconds, such as when dealing with the number of seconds since epoch, I find it much more readable and useful to multiply the number of seconds in a minute by the number of minutes in an hour by the number of hours in a day and so on until I get the period of time I need.
Of course any value can be played with by changing the appropriate column in much the same way that we learn the ten's and hundred's place in elementary school.
You could even choose to write out more complex time frames (e.g. 2 weeks 5 hours and 1 minute as (60 * 60 * 24 * 7 * 2) + (60 * 60 * 5) + (60))
While this can hardly be considered shorthand, it makes human manipulation exceedingly simple without appreciatively impacting script performance.