标签:#hackernews
找到 9971 篇相关文章
Make stolen phones unusable, Met Police urges tech giants
Apt Encounters of the Third Kind
Show HN: Inkwash, a watercolor sketching app and explanation
I've made a drawing app based on my physical sketching practice, using fluid sim and some shader tricks to mimic watercolor-style ink washes. Best used on iPad or with a drawing tablet. The linked article shows how the core engine works, with plenty of little interactive demos. It was fun to make, sharing in hopes others find it fun too :)
5.3M-year-old deep-sea whale necropolis in the Diamantina Zone
Vincent's parents 'never say he's good enough' so he turned to a couple online
The whirlwind 24 hours that led to export controls on Anthropic
Let's Destroy American Science
4 things to know about the new sunscreen ingredient the FDA approved
FDA OKs first new sunscreen ingredient in more than 25 years
The Manhoff Archives: Color photos of Stalin-era USSR taken by a US diplomat
Color Photos of Stalin-Era Soviet Union Taken by a US Diplomat
10th Gen Honda Civic Updates Are Signed with AOSP Test Keys
The Difference Between Rest and Idleness
Image Compression
WhatsApp Claims It Thwarted an NSO Spyware Campaign
Is there a name for the type of comments agents add where they leak the prompt?
This is a stupid example to illustrate what I mean. Say you have this code: def create_background(width: int, height: int) -> Image: ... You tell the agent to use default values for create_background, the same as in create_screen. It changes the code to: # Now create_background params have default values, the same as create_screen in screen.py def create_background(width: int = DEFAULT_WIDTH, height: int = DEFAULT_HEIGHT) -> Image: ... The unnecessary comment is a staple of vibed code, but the t