Standard Post with Image

Designing Resilient Drone Swarms: Leaderless-Tolerant Mesh Networks with Secure Communications

Introduction Drones are no longer solo actors. Modern mission profiles — search and rescue, precision agriculture, infrastructure inspection, defense — increasingly rely on swarms: coordinated groups of UAVs that divide tasks, share situational awareness, and collectively achieve what no single drone can.

Read More
Standard Post with Image

NumPy广播规则详解:为什么`(3,)`和`(3,1)`行为不同——以及它何时会悄悄给出错误答案

如果你使用NumPy有一段时间了,可能遇到过这样的情况: a = np.array([1, 2, 3]) b = np.array([10, 20, 30]) result = a + b # [11, 22, 33] ✅ 符合直觉

Read More
Standard Post with Image

NumPyブロードキャストの法則:`(3,)` と `(3,1)` の動作が異なる理由 ― そして「警告なしに間違った答えを返す」場面とは

NumPyを使い始めてしばらくすると、こんな経験をすることがある: a = np.array([1, 2, 3]) b = np.array([10, 20, 30]) result = a + b # [11, 22, 33] ✅ 直感的に理解できる

Read More
Standard Post with Image

กฎ Broadcasting ของ NumPy: ทำไม `(3,)` กับ `(3,1)` ถึงทำงานต่างกัน — และเมื่อไหร่ที่มันให้คำตอบผิดโดยไม่แจ้งเตือน

ถ้าคุณใช้ NumPy มาสักพักแล้ว คุณคงเคยเจอสถานการณ์แบบนี้: a = np.array([1, 2, 3]) b = np.array([10, 20, 30]) result = a + b # [11, 22, 33] ✅ เข้าใจได้

Read More
Standard Post with Image

NumPy Broadcasting Rules: Why `(3,)` and `(3,1)` Behave Differently — and When It Silently Gives Wrong Answers

If you’ve used NumPy for more than a week, you’ve probably hit a moment like this: a = np.array([1, 2, 3]) b = np.array([10, 20, 30]) result = a + b # [11, 22, 33] ✅ Makes sense

Read More
Standard Post with Image

关键基础设施遭受攻击:从乌克兰电网战争看工业IT/OT安全

战争从不局限于战场。自2022年俄罗斯全面入侵乌克兰以来,遭受最持续攻击的目标不是军事基地或武器库,而是能源基础设施——变电站、天然气管道、发电厂和输电线路被导弹、无人机和网络攻击反复打击,目标是冻结平民生活,瓦解关键系统。

Read More
Standard Post with Image

重要インフラへの攻撃:ウクライナ電力網から学ぶIT/OTセキュリティの教訓

戦争は戦場だけにとどまりません。2022年にロシアがウクライナへの全面侵攻を開始して以来、最も一貫して標的にされてきたのは軍事基地でも武器庫でもなく、エネルギーインフラです。変電所、ガスパイプライン、発電所、送電線が繰り返しミサイル、ドローン、そしてサイバー攻撃によって標的にされてきました。

Read More
Standard Post with Image

โครงสร้างพื้นฐานสำคัญภายใต้การโจมตี: บทเรียน OT Security จากสงครามยูเครน สู่องค์กรไทย

สงครามไม่ได้เกิดขึ้นแค่บนสนามรบ นับตั้งแต่รัสเซียเปิดฉากรุกรานยูเครนเต็มรูปแบบในปี 2565 เป้าหมายที่ถูกโจมตีอย่างสม่ำเสมอที่สุดไม่ใช่ฐานทัพหรือคลังอาวุธ แต่คือ ระบบโครงสร้างพื้นฐานด้านพลังงาน — สถานีไฟฟ้า ท่อส่งก๊าซ โรงไฟฟ้า และสายส่งไฟฟ้า ล้วนถูกโจมตีซ้ำแล้วซ้ำเล่าโดยทั้งอาวุธจริงและมัลแวร์

Read More
Standard Post with Image

Critical Infrastructure Under Fire: What IT/OT Security Teams Can Learn from Ukraine’s Energy Grid

War does not stay on the battlefield. Since Russia’s full-scale invasion of Ukraine in 2022, one of the most consistent targets has not been a military base or a weapons depot — it has been the power grid. Substations, gas pipelines, thermal plants, and transmission lines have been hit repeatedly by missiles, drones, and cyberattacks […]

Read More
Standard Post with Image

LM Studio代码开发的系统提示词工程:`temperature`、`context_length`与`stop`词详解

你已经调好了top_p、top_k和repeat_penalty。输出不再无限循环,胡言乱语也少了。但模型仍然跑题、忘记之前的代码,或者不在你想要的地方停下来——

Read More