mirror of
https://github.com/kennethreitz/python-guide.git
synced 2026-06-05 14:50:19 +00:00
7a58e5c03a
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
45 lines
1.3 KiB
HTML
45 lines
1.3 KiB
HTML
<!-- Alabaster (krTheme++) Hacks -->
|
|
<aside id="python27">
|
|
Python 3, the new best practice, is here to stay.
|
|
Python 2 will retire in only <time></time> months!
|
|
</aside>
|
|
|
|
<!-- Python 2 Death Clock™ -->
|
|
<style type="text/css">
|
|
body { margin-top: 4em; }
|
|
#python27 {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0; right: 0;
|
|
height: auto;
|
|
text-align: center;
|
|
color: white;
|
|
background-color: black;
|
|
font-size: larger;
|
|
line-height: 3;
|
|
}
|
|
|
|
</style>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script>
|
|
<script>
|
|
var death = new Date('2020-04-12');
|
|
|
|
var diff = moment.duration(death - moment());
|
|
|
|
document.querySelector('#python27 time').innerText = (diff.years() * 12) + diff.months();
|
|
</script>
|
|
|
|
<script type="text/javascript">
|
|
var _gauges = _gauges || [];
|
|
(function() {
|
|
var t = document.createElement('script');
|
|
t.type = 'text/javascript';
|
|
t.async = true;
|
|
t.id = 'gauges-tracker';
|
|
t.setAttribute('data-site-id', '56ca79a64b2ffa7a470027ea');
|
|
t.setAttribute('data-track-path', 'https://track.gaug.es/track.gif');
|
|
t.src = 'https://d36ee2fcip1434.cloudfront.net/track.js';
|
|
var s = document.getElementsByTagName('script')[0];
|
|
s.parentNode.insertBefore(t, s);
|
|
})();
|
|
</script> |