본문 바로가기

전체 글

(1805)
so damn interesting math problems made by me Q1 You roll a fair 6-sided [1, 2, 3, 4, 5, 6] die three times (so outcomes are like (2,6,1), (4,4,4), etc.). You define a random variable X as the sum of the three rolls. Then define another random variable Y as whether the sequence is non-decreasing; 𝑅1≤ 𝑅2 ≤ 𝑅3 What is P(Y=True∣X=10)? Q2 A secret agent is in your cyber café. You know: 70% of people are regular customers (class Regular C=Reg..
goldbach crazy #!/usr/bin/env python3"""goldbach_helper.py – hybrid verifier / reducer for Goldbach’s conjectureSTRATEGY 1. If N ≤ WALL = 4·10^18 → rely on published exhaustive check. 2. Try to find a prime pair → full Goldbach success. 3. Fall back to Chen representation → prime + semiprime (p + (q·r)). • if the semiprime turns out to be prime → upgrade to Goldbach success..
The Silent Override Chapter 1: Shadows in the Wire Night had settled over Greenlake Chemicals like a weighted blanket, smothering the noise of the outside world. The plant sat on the edge of town—out of sight, out of mind—where the concrete walls swallowed the echo of machinery, and the windows, if there were any, never opened. Inside the control room, the air was stale with habit. Gabe slouched in his chair, half-..
다음 대선 주인공은 lacrima 재명이다 다음 대선 주인공은 lacrima 재명이다 3년 전 이미 윤석열의 현재를 꿰뚫어본 갓영웅의 갓 갓갓 추리 시작한다 물론 솔직히 말해서 이번 만큼 쉬운 예측은 거의 없을 것이다 뭐 사실 대부분 사람들은 다 알고있는 부분이겠지만, lacrima 재명 씨가 중간에 법에 잡혀가지 않는 이상 혹은 칼찌 당하지 않는 이상 다음 한고쿠 통령이는 lacrima 재명이가 될 수밖에 없다 내 개인적인 의견으로는 현재 그나마 차악은 안철수 의원인 거 같다 그렇지만 한고쿠에서 미쳤다고 안철수를 대통령으로 뽑을 거 같지는 않고 대부분 이름이 있는 의원돌이들은 계속 끝까지 하겠다고 깝칠텐데 그러면 무조건 표가 갈리게 될 거고 생각보다 lacrima 재명이 2위랑 차이가 많이나는 방식으로 당선되게 될 것이다 (lacrima..
모든 것 우주를 손 안에 담고보니  우주를 얻으려면 우주를 잊을 줄 알아야 한다네
military drone hacking Military Drone Hacking Incidents (2022–2025): Case Study and Cybersecurity CountermeasuresIntroduction(UK tech is protecting Ukrainian drones from Russian hackers in real-time - Euromaidan Press) Soldiers training with a quadcopter drone. Modern militaries rely heavily on unmanned aerial vehicles (UAVs), which have become targets for cyber attacks.Unmanned military drones have risen to prominenc..
log_dict.py from collections import defaultdictactivity_logs = {    'neuronet.edu': [(10, 5), (14, 5), (10, 6), (10, 5), (15, 6), (9, 4), (10, 5)],    'cybersys.tech': [(8, 3), (8, 3), (9, 3), (8, 4), (7, 2)],    'quantumhub.ac': [(11, 10), (11, 10), (15, 12), (11, 10), (16, 12)],    'aetherlab.io': [(13, 6), (14, 6), (13, 7), (14, 7), (14, 8), (13, 8)],    'xvoid.org': [(20, 20), (21, 21), (20, 21), (22, 2..
smart_home.py import uuidclass SmartDevice:    def __init__(self, device_id, name, location):        self.id = device_id or str(uuid.uuid4())        self.name = name        self.location = location        self._status = "Inactive"    def get_status(self):        return {            "id": self.id,            "name": self.name,            "location": self.location,            "status": self._status        }    ..