Latest Tech News

Stay updated with the latest in technology, AI, cybersecurity, and more

Filtered by: length Clear Filter

Give Yourself a Few More Minutes of Sleep With This iOS 26 Trick

Apple released iOS 26 on Sept. 15, a few months after the company announced it at the June Worldwide Developers Conference. The update brings a new Liquid Glass design, call screening and more to your iPhone. It also updates the alarm feature in the clock app so you can change your snooze length, affording you a few more z's before you get up and tackle the day. Before this change, if you hit your iPhone alarm's snooze feature, you would always get an extra 9 minutes of shut-eye. With iOS 26, y

It’s Not Wrong that (for HN) “[facepalm emoji]”.length == 36

Hey! Unintentional clickbait! I am not talking about how a space character has length 36 in Hacker News! If you are coming here from HN the above 🤦🏼‍♂️ emoji have been replaced with a space! Edit: Success! HN has renamed my entry to It’s Not Wrong that (for HN) “[facepalm emoji]”.length == 36. At least better that the JS \u{HEX} one A couple of days I published a pretty innocent post to HN. The source article was talking about all the various escamotages techniques used to create new emojis.

Topics: 36 emoji hn length pretty

Show HN: Find Hidden Gems on HN

About HN Overlooked × This tool helps you discover recent hidden gems on Hacker News – high-effort posts that haven't gotten much attention. Why "Recent"? We search the HN API's Ask, Show, and New story feeds, which typically contain posts from the last 3-7 days. This ensures fresh content while keeping the search fast. Passion Score Posts are ranked by their Passion Score, which identifies high-effort, low-engagement content: Passion Score = (Text Length Score) / (Engagement + 1) Where

It's Not Wrong that (for HN) " ".length == 36

Hey! Unintentional clickbait! I am not talking about how a space character has length 36 in Hacker News! If you are coming here from HN the above 🤦🏼‍♂️ emoji have been replaced with a space! A couple of days I published a pretty innocent post to HN. The source article was talking about all the various escamotages techniques used to create new emojis. I noticed after posting it that the emoji have been replaced with a “ “ character. I was pretty sure to have seen emojis in the past on HN titles

Topics: 36 hn length post pretty

It’s not wrong that "\u{1F926}\u{1F3FC}\u200D\u2642\uFE0F".length == 7 (2019)

It’s Not Wrong that "🤦🏼‍♂️".length == 7 But It’s Better that "🤦🏼‍♂️".len() == 17 and Rather Useless that len("🤦🏼‍♂️") == 5 From time to time, someone shows that in JavaScript the .length of a string containing an emoji results in a number greater than 1 (typically 2) and then proceeds to the conclusion that haha JavaScript is so broken—and is rewarded with many likes. In this post, I will try to convince you that ridiculing JavaScript for this is less insightful than it first appears and that S

It’s not wrong that "🤦🏼‍♂️".length == 7 (2019)

It’s Not Wrong that "🤦🏼‍♂️".length == 7 But It’s Better that "🤦🏼‍♂️".len() == 17 and Rather Useless that len("🤦🏼‍♂️") == 5 From time to time, someone shows that in JavaScript the .length of a string containing an emoji results in a number greater than 1 (typically 2) and then proceeds to the conclusion that haha JavaScript is so broken—and is rewarded with many likes. In this post, I will try to convince you that ridiculing JavaScript for this is less insightful than it first appears and that S

It's Not Wrong that " ".length == 7

It’s Not Wrong that "🤦🏼‍♂️".length == 7 But It’s Better that "🤦🏼‍♂️".len() == 17 and Rather Useless that len("🤦🏼‍♂️") == 5 From time to time, someone shows that in JavaScript the .length of a string containing an emoji results in a number greater than 1 (typically 2) and then proceeds to the conclusion that haha JavaScript is so broken—and is rewarded with many likes. In this post, I will try to convince you that ridiculing JavaScript for this is less insightful than it first appears and that S

Analysis of the GFW's Unconditional Port 443 Block on August 20, 2025

1. Introduction Between approximately 00:34 and 01:48 (Beijing Time, UTC+8) on August 20, 2025, the Great Firewall of China (GFW) exhibited anomalous behavior by unconditionally injecting forged TCP RST+ACK packets to disrupt all connections on TCP port 443. This incident caused massive disruption of the Internet connections between China and the rest of the world (source1 and source2). This report documents our measurements and analysis of this temporary, widespread blocking event. Our primar

Topics: ack flags ip length tcp

Want a Little More Sleep? Try This iOS 26 Alarm Trick

Apple released the first public beta of iOS 26 on July 24, which brought a new Liquid Glass design, call screening, and other features to developers' and beta testers' iPhones. It also updated the alarm feature in the clock app so you can change your snooze length, affording you a few more z's before you get up and tackle the day. Prior to this change, if you hit your iPhone alarm's snooze feature, you would always get an extra 9 minutes of shut-eye. With the iOS 26 beta, you can customize your

New colors without shooting lasers into your eyes

1. Your eyes sense color. They do this because you have three different kinds of cone cells on your retinas, which are sensitive to different wavelengths of light. For whatever reason, evolution decided those wavelengths should be overlapping. For example, M cones are most sensitive to 535 nm light, while L cones are most sensitive to 560 nm light. But M cones are still stimulated quite a lot by 560 nm light—around 80% of maximum. This means you never (normally) get to experience having just o

So you want to serialize some DER?

So you want to serialize some DER? (Editor’s Note: My day job is at Anthropic.) This story starts where all good stories start, with ASN.1. ASN.1 is… I guess you’d call it a meta-serialization format? It’s a syntax for describing data abstractly (a notation, you might say), and then there’s a bunch of different actual encodings that you can use to turn data into bytes. There’s only one encoding I choose to acknowledge, which is DER (the Distinguished Encoding Representation, it’s got a monocle

The fastest way to detect a vowel in a string

Austin Z. Henley Associate Teaching Professor Carnegie Mellon University [email protected] @austinzhenley github/AZHenley The fastest way to detect a vowel in a string 6/13/2025 I was nerdsniped recently: What is the best way to detect if a string has a vowel in it? This is trivial, right? But as I started getting into it, I realized there is much more to this. I challenged myself to come up with as many ways to detect a vowel as possible. I even asked a few friends to give it a go. Whi