Summaries
Short AI and tech summaries with source links, signal scores, and why each update matters for builders, founders, and Malaysian tech workers.
Showing 1-1 of 1 results
| Date | Provider | Score | Summary |
|---|---|---|---|
| 18 Aug 2026, 6:20 AM | Hacker News | 4.5 | How Bluesky draws its logo on screenshots
Bluesky's iOS app hides its logo during normal use and only reveals it on screenshots by rendering the 'Follow' button inside a UITextField with isSecureTextEntry set to true, leveraging iOS's screenshot-blanking behavior for secure fields. The implementation lives in a file called GrowthHack.tsx, introduced in January 2026 by mozzius, using their own expo-privacy-sensitive package. The logo is always present underneath; iOS blanks the secure field layer on screenshot capture, exposing the logo. Why: If you build mobile apps and want to watermark screenshots or hide sensitive UI elements on capture, this is a concrete, copyable technique using a documented iOS privacy API. The author notes Telegram and Signal use the same approach for secret chats, so Apple is unlikely to patch it. The community debate over whether this is 'cute' or 'abuse of a privacy API' is worth knowing before you adopt it. |