Posts

Showing posts from July, 2024

Global Microsoft Meltdown Tied to Bad Crowdstrike Update

## Faulty Software Update from CrowdStrike Cripples Windows Computers Worldwide Today, a faulty software update from cybersecurity company CrowdStrike caused major disruptions worldwide. The update affected countless Microsoft Windows computers, impacting everything from airline travel and financial institutions to hospitals and businesses. While CrowdStrike has issued a fix, experts warn that recovery could take some time, as the solution must be applied manually to each affected machine. ![Blue Screen of Death at San Jose Airport](https://twitter.com/adamdubya1990/status/photo) ### The Incident The trouble began earlier today when an incorrect update from CrowdStrike started causing Windows machines to display the dreaded "Blue Screen of Death." This error rendered the systems unusable. As with most security software, CrowdStrike needs deep integration with the Windows operating system to protect against digital threats, making a small coding mistake potentially catastrophi...

html analog clock

Analog Clock

Analog clock python code

import turtle import time # Set up the screen wn = turtle.Screen() wn.bgcolor("white") wn.setup(width=600, height=600) wn.title("Analog Clock") wn.tracer(0) # Create the drawing pen pen = turtle.Turtle() pen.hideturtle() pen.speed(0) pen.pensize(3) # Function to draw the clock face def draw_clock(h, m, s, pen): # Draw the clock face pen.up() pen.goto(0, 210) pen.setheading(180) pen.color("black") pen.pendown() pen.circle(210) # Draw the hour lines pen.up() pen.goto(0, 0) pen.setheading(90) for _ in range(12): pen.fd(190) pen.pendown() pen.fd(20) pen.up() pen.goto(0, 0) pen.rt(30) # Draw the hour hand pen.up() pen.goto(0, 0) pen.color("black") pen.setheading(90) angle = (h / 12) * 360 pen.rt(angle) pen.pendown() pen.fd(100) # Draw the minute hand pen.up() pen.goto(0, 0) pen.color("blue...