2024-07-01
美图鉴赏
00
2024-06-30
老狗随想
00

鲁迅没能救中国,胡友平能吗?

——老狗关于胡友平事件的一些感想

2024年9月19日记:

这篇文章原本是老狗写于【胡友平】事件时的一些感想,当时明确表示了,胡友平不能救中国。就在前不久,深圳又发生一起日本学校学生被捅事件,并且几乎确定了已经死亡。 根据通报,被捅学生年仅10岁,捅人者44岁,被捅学生与母亲一同前往学校上学时 ,距离学校约百米发生此事。

虽然这件事的发生并没有让老狗惊讶,但让老狗不禁想起胡友平,让人觉得她的死失去了意义,不说失去了全部意义,至少失去了大部分的意义。

无论如何这次事件再次说明,中国一些人已经无可救药。最后,仅以老狗个人名义,向这名小学生说句:对不起

事件简介

2024年6月24日16时左右,在苏州高新园区塔园路新地中心公交车站,一对日本母子在等候日本人学校校车时突遇一持刀歹徒袭击,担任乘务员的胡友平在袭击发生时试图阻止歹徒行凶,遭凶徒连捅数刀,最终伤重不治身亡。

6月27日,苏州市见义勇为称号评定工作小组提请苏州市政府,追授市民胡友平“苏州市见义勇为模范”称号。

6月28日,日本驻华大使馆降半旗向苏州离世中国女子致哀。

2024-06-29
美图鉴赏
00
2024-06-28
美图鉴赏
00
2024-06-27
编程与技术
00

提示:以下代码拷贝到本地,填入新建的 .html 文件,使用浏览器打开即可预览效果。

html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Countdown to Midnight</title> <style> #countdown { font-size: 4em; color: #333; text-align: center; } </style> </head> <body> <div id="countdown">倒计时:00:00:00</div> <script> function updateCountdown() { // 获取当前时间 const now = new Date(); // 获取明天00:00的时间 const tomorrow = new Date(); tomorrow.setHours(24, 0, 0, 0); // 计算时间差(毫秒) const timeDifference = tomorrow - now; // 计算剩余的小时、分钟和秒 const hours = Math.floor((timeDifference % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); const minutes = Math.floor((timeDifference % (1000 * 60 * 60)) / (1000 * 60)); const seconds = Math.floor((timeDifference % (1000 * 60)) / 1000); // 格式化时间 const formattedHours = hours.toString().padStart(2, '0'); const formattedMinutes = minutes.toString().padStart(2, '0'); const formattedSeconds = seconds.toString().padStart(2, '0'); // 更新倒计时显示 document.getElementById('countdown').textContent = `DLC解锁倒计时:${formattedHours}:${formattedMinutes}:${formattedSeconds}`; } // 每秒更新一次倒计时 setInterval(updateCountdown, 1000); // 初次调用,避免页面加载时的延迟 updateCountdown(); </script> </body> </html>