标签:#ha
找到 14840 篇相关文章
Building a serial and VGA "everything console"
Quadratic funding democratizes allocation by rewarding projects w/ broad support
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
General Token Economics: The Core System Behind a Sustainable Web3 Project
Token economics is not only about token price. It is about designing the rules, incentives, and long-term logic of a Web3 ecosystem. When people start building a Web3 project, they usually focus on the visible parts first. They think about the smart contract, the frontend, the wallet connection, the token launch, the whitepaper, and maybe the community. All of those are important. But there is one part that can decide whether the project survives or fails: Token economics. A project can have clean smart contracts, a nice UI, and strong marketing, but if the token economy is weak, the project can slowly collapse. Users may come only for rewards, early investors may dump, inflation may destroy value, and the token may lose its reason to exist. That is why token economics should not be treated as just a “crypto finance” topic. For developers and Web3 builders, token economics is closer to system design . It defines how value moves inside the ecosystem, how users are rewarded, how supply is controlled, how governance works, and how the project can grow without depending only on hype. What Is Token Economics? Token economics, often called tokenomics , means the design of how a token works inside a project. It answers questions like: Why does this token exist? Who receives the token? How is the token used? How many tokens will exist? How are rewards distributed? When can team and investor tokens unlock? How does the project treasury work? What creates real demand for the token? In simple words, token economics is the rule system behind a token. A token is not only something people buy and sell. In a real Web3 product, a token can be used for payments, staking, governance, access, rewards, collateral, or network fees. If the token has no clear role, it becomes only a speculative asset. That is dangerous because speculation can bring attention, but it cannot support a project forever. Why Developers Should Care Some developers think token economics is only for founders, eco
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