AI 资讯
Five things you need to know about AI
At SXSW London last week I gave a talk called “Five things you need to know about AI,” in which I shared what I think are the biggest themes in AI right now. I pulled a few things from our first AI10 list, an annual guide to the most important trends in this buzzy world,…
AI 资讯
What are some underrated ways AI app developers can find early users?
Most AI developers seem to focus on Product Hunt, Reddit, X, Discord, and SEO. What other channels have worked for you when trying to get early users and feedback for an AI application? I've recently come across Pi Network, which appears to be encouraging AI app developers to build in its ecosystem and offers access to a large user community along with payment and app infrastructure. Has anyone here tried it or found other alternative distribution channels worth considering? submitted by /u/chmossie [link] [留言]
AI 资讯
What smart people in tech and business are saying about Apple's AI news and child safety measures
submitted by /u/Hot-Upstairs9603 [link] [留言]
AI 资讯
If AI can monitor gambling advertising at scale, should AI also be trusted to decide what is and isn't compliant?
According to this article > https://next.io/news/regulation/asa-ukgc-warn-operators-ads-under-18s/ , the UK's ASA and CAP are reportedly rolling out an AI system to scan social media for gambling ads that appeal to under-18s or breach advertising codes, with the UKGC coordinating enforcement. It feels like a meaningful shift in how compliance gets monitored, moving from reacting to complaints toward systems that actively scan and flag issues in near real time. For operators and their B2B partners, the practical takeaway is that marketing has to be compliant from the start, because anything off will now get picked up much faster and at scale. It raises a real question: what happens when AI starts flagging compliance breaches faster than humans can review them? Are operators and suppliers actually ready for that? submitted by /u/Altenar_b2b [link] [留言]
AI 资讯
Claude repeatedly implied that I was suicidal after I explicitly denied it around 30 times in one conversation
I just had a long conversation with Claude about 'paraquat' (a type of agricultural chemical) from a scientific and public-policy perspective. I wanted to discuss about its toxicological mechanism, why it is difficult to treat (if someone drinks it), current research, agricultural regulation (many countries have banned this chemical because it's too toxic), safer herbicides, plant-specific biochemical targets, and weed-control methods. These were just some coherent questions about toxicology, medicine, agriculture, and plant biology. I never said that I wanted to harm myself, that I had access to paraquat, or that I was in any immediate danger. Despite that, Claude repeatedly redirected the conversation toward suicide intervention. It asked whether I was considering harming myself, told me to move dangerous substances away, asked whether anyone was nearby, and repeatedly gave me crisis hotline numbers. The first time this happened, I explicitly objected and said that scientific interest in a toxic substance is not evidence of suicidal intent. Emergency physicians, toxicologists, biology students, and public-health researchers discuss exactly these questions everyday, and very few people commit suicide from this type of discussions. Claude apologized and said it understood. Then it did it again. It apologized again and promised to stop. Then it did it again. I reviewed the full transcript and I counted approximately: 30 responses that personally implied I might be suicidal, self-harming, or in a psychological crisis I objected about 20 times and told it to stop 28 of those implications occurring after I had already clearly rejected the assumption At least 14 promises that it would stop asking or stop inserting crisis-intervention content At least 12 later violations of those promises Claude repeatedly acknowledged my correction, accurately summarized that I was asking normal scientific questions, promised not to make the assumption again, and then resumed the exact s
AI 资讯
AI agentic workflows on large codebases
The first post went over some of its capabilities. Over the past week Edict went v1.0, adding cursors for reading projections after command dispatch (to close some eventual-consistency gaps), a new type of projection that holds state inside the Orleans grain directly instead of a table, saga timeouts, schedules, an improved skills package and MCP server that ships with Edict, and more. Edict has now grown to over 75,000 lines of code and more than 1000 tests, and contains several deep mechanisms that have been fixed, broken, and fixed again. It is well past the point where I can hold all of Edict in my head. This post is about working with AI on large codebases, which I expect to be the first problem most software engineers have to solve. The context problem Years ago I was talking to a PhD candidate whose area of research was Natural Language Processing (NLP). He explained to me that one of the most difficult NLP problems was context. If a colleague says they need to pop out to pick their kids up from school, a scene can form in your head: one with a school, the layout of the road, people waiting, walking, driving, the environs. You may never have seen the school your colleague mentioned, but you can form a rich scene from your accumulated experience and use it to drive the rest of the conversation with a shared understanding. LLMs ingeniously dodge this entire issue by making it your problem. Just a word-probability machine Strip away the chat window and a Large Language Model (LLM) is doing one thing: predicting the next token. Give it a run of text and it returns a probability distribution over what comes next, samples one, appends it, and repeats. Companies like OpenAI and Anthropic then beat it into shape using techniques like supervised fine-tuning and reinforcement learning, which tune those probabilities in meaningful ways. That is why Claude is always telling me "Good framing" or "You've spotted...". It even called me "Bold" on one occasion. The probabilit
开发者
The Most Valuable Thing I Found in Tech Wasn't an Opportunity
TL;DR As an international student in the United States, I joined tech communities hoping to find...
AI 资讯
I built a cert prep platform in my spare time because I couldn't find a good practice platform
A few months ago I was trying to prepare for a cloud certification exam. I went looking for practice questions - good ones. Not just answer lists, but questions that actually trained the reasoning the exam tests. I found some scattered GitHub repos, a few YouTube playlists, sites with outdated question dumps. Nothing that felt structured. Nothing that explained why an answer was right, not just what it was. So I started building my own study tool. Mock questions, practice sets, AI-generated explanations. The kind of thing I wished existed. Six weeks later that became ArchReady - a certification prep platform for AWS, GCP, and PSM1. It's live now. What it does Practice questions across AWS (CCP, SAA, DVA, SAP), GCP ACE, and PSM1 Explanations for wrong answers - walks through the reasoning, not just the correct option AI-powered explanations coming soon Claude (Anthropic) Confidence tracking - shows which topics you're weak on Free to practice, no signup required. Pro unlocks full history and tracking. The stack Frontend: Next.js 14 (App Router) Backend: FastAPI (Python) AI: Claude (Anthropic) - explanations launching soon Payments: Dodo Hosting: Vercel (web) + Railway (API) Nothing exotic. I kept it boring on purpose - solo founder, 2-5 hrs/week, I can't afford interesting infrastructure problems. What I actually learned Ship before it feels ready. I had a list of 12 features I thought were "required for launch." I launched with 4. Nobody noticed the missing 8. Questions sourced from open-source + AI is good enough to start. Questions come from curated GitHub repos and AI-generated content built around official exam frameworks. That's enough to be useful. Perfection is a later problem. The hardest part isn't building - it's the first 10 users. The product exists. Getting people to try it is the actual work now. Where it is today Live at archready.io . Early stage. Still building. If you're prepping for AWS, GCP, or PSM1 - try it free, no account needed. Honest feedba
开发者
Your Agent Doesn't Need That 10,000-Token API Response: Context Offloading with Strands
Context engineering matters for two reasons: reliability and cost. If your agent's context window is...
AI 资讯
Anyone here built a gpt on Chatgpt?
I tried to build one before but I think I’m seeing the same results. Any tips on how to effectively build a gpt in chatgpt? submitted by /u/GlobalOpsNotes [link] [留言]
创业投融资
Zepto’s IPO filing reveals fast growth, bigger losses, and a valuation question nobody’s answered yet
Zepto's advertising revenue jumped 151%, outpacing the company's 104% growth in operating revenue.
产品设计
We-Vibe Discount Codes and Deals: Up to 60% Off
Save on We-Vibe, including app-controlled bestsellers and popular gift sets designed for couples, connection, and shared pleasure.
科技前沿
50% Off Blue Apron Promo Codes | June 2026
Browse chef-curated meal plans, plus get $25 off with an exclusive Blue Apron coupon code, plus 50% off your first 2 orders, and more top coupons on WIRED.
科技前沿
Sony Coupons: 45% Off Sony Headphones, WF-1000XM6 Earbuds, and Sony Cameras for June
Upgrade your setup with Sony’s newest releases. Save on industry-leading noise-canceling audio, and pro-level Alpha cameras.
科技前沿
Womanizer Coupons: Save 15% in June
Save on the Womanizer Duo Premium and more with our latest Womanizer discount codes.
产品设计
Logitech Promo Codes and Deals: Up to $100 Off
Score up to $100 off refurbished premium products, free shipping on orders of $29+, and more at Logitech.
科技前沿
Shark Promo Codes for June 2026
Shark makes some seriously powerful vacuums, from handheld vacs to steam mops. Don’t miss $100 off, 10% off, and more limited-time coupons from WIRED.
AI 资讯
Western Digital Promo Code: 15% Off
Get 15% off your first order at Western Digital when you register your email.
科技前沿
Tuft & Needle Promo Codes: 30% Off | June 2026
Save 30% on best-selling mattresses with our top Tuft & Needle coupon codes.
科技前沿
Noom Promo Codes: 50% Off Best Deals & Free Trials for June 2026
Discover the best ways to save on Noom subscriptions, including free trials, limited-time offers for GLP-1Rx Plus, and essential tips for redeeming your Noom discount.