Daylight Saving Time

Intro:

The sooner it's permanently repealed, the better! This map in particular shows how crazy it isit's used in this Wikipedia article.
Not only do we humans have more important things to worry about, DST doesn't fix a problem—especially thanks to something like electricity...

Dates and times:

Current:

19h51m28s

Current with DST:

20h51m28s

Current ±30min:

20h21m28s (My proposal for half-way as a trade-off between winter- and summer time.)

Notes:

Of course, good luck to all those who made applications (heavily) rely on DST...

As for more alternatives? Some would actually argue that we should stick to winter time permanently--and then maybe either start work earlier or simply shorten the work days... Others would prefer permanent summer time...

PHP source code used for this page to compute the times:

  1. <?php

  2. // Test to see if DST is in effect and then set some variables:

  3. if (date('I') == '0') { $dst_state_0 = 0; $dst_state_1 = 1; } else { $dst_state_0 = -1; $dst_state_1 = 0; }

  4. $base_time = 'H\hi\ms\s';

  5. $get_hour = date('H');

  6. $current_time = date($base_time, mktime($get_hour+$dst_state_0));

  7. $current_time_DST = date($base_time, mktime($get_hour+$dst_state_1));

  8. $current_time_30min_hw = date($base_time, mktime($get_hour+$dst_state_0, date('i')+30));

  9.  

  10. // Extremely simple example:

  11. echo $current_time_hw;

  12. ?>