BΞN

18.8K posts

BΞN banner
BΞN

BΞN

@ben3bil

Build w/ AI and post about blockchain , alt health, peptides, Tarkov, esoteric, geopol. software since '02. God. BTC ‘13 ETH ‘14 SEO since ‘08

Middle of The USA Katılım Nisan 2008
561 Takip Edilen1.4K Takipçiler
BΞN retweetledi
c
c@punishedfounder·
some hero just uploaded 7(!!!) COAs to peptaura, including for rarely tested compounds: -epitalon -pinealon -tirzepatide -SS-31, selank, ipamorelin, cjc-1295 you're not gonna believe it… they're all >99.5% with the exception of epitalon which is literally 98.9% peptaura.
c tweet media
c@punishedfounder

10x peptide resellers are so garbo how can anyone trust even their stale COAs? they can test 5 vials and only show you the best result since it’s not a permissionless system oh you’ll test it yourself? at $150 per vial? doubt.jpg peptaura.

English
17
2
202
17.4K
BΞN retweetledi
ThePeptideList
ThePeptideList@PeptideList·
563 verified peptide therapy providers. Color-coded by type. Filterable. Searchable. All on one map. Clinics, pharmacies, telehealth, compounding labs, global suppliers. Find what's near you in seconds. Free. No account needed. More improvements coming. We built this for the person asking themselves today: "what are peptides?" thepeptidelist.com/map
ThePeptideList tweet media
English
6
13
265
21.1K
BΞN retweetledi
Nav Toor
Nav Toor@heynavtoor·
🚨Someone just open sourced a computer that works when the entire internet goes down. It's called Project N.O.M.A.D. A self-contained offline survival server with AI, Wikipedia, maps, medical references, and full education courses. No internet. No cloud. No subscription. It just works. Here's what's packed inside: → A local AI assistant powered by Ollama (works fully offline) → All of Wikipedia, downloadable and searchable → Offline maps of any region you choose → Medical references and survival guides → Full Khan Academy courses with progress tracking → Encryption and data analysis tools via CyberChef → Document upload with semantic search (local RAG) Here's the wildest part: A solar panel, a battery, a mini PC, and a WiFi access point. That's it. That's your entire off-grid knowledge station. 15 to 65 watts of power. Works from a cabin, an RV, a sailboat, or a bunker. Companies sell "prepper drives" with static PDFs for $185. This gives you a full AI brain, an entire encyclopedia, and real courses for free. One command to install. 100% Open Source. Apache 2.0 License.
Nav Toor tweet media
English
539
3.6K
21.9K
952.3K
BΞN
BΞN@ben3bil·
What is the best phone service for api connectivity ? I used openphone before and it was OK. What's the most open/easy to integrate system out there
English
2
0
0
35
Todd Anderson - AI | SEO
Todd Anderson - AI | SEO@_toddanderson·
Heres the latest version of Hermes, our speed to lead bot for home service companies. Complete with dynamic conversation handling, iMessages, and lead qualification/escalation.
English
7
3
134
12.6K
Dom
Dom@deadlinedom·
@right_questionz @_toddanderson You're probably losing 50% conversions cause of it. They don't need to be told ahead, but if the customer asks, the bot can reply: YES, I am an AI Assistant leading you through the first steps. That simple, semi/transparent and boom.
English
2
0
3
64
BΞN retweetledi
Rowan Cheung
Rowan Cheung@rowancheung·
This robotic hand can be 3D printed by anyone and assembled in under 8 hours. Researchers at ETH Zurich created the Orca hand, fully open-sourced with artificial bones and tendons. For context, advanced robotic hands cost over $100,000 and require constant maintenance... Orca costs under $2,000. 50x less (!) A self-calibration system maps every motor to every joint, eliminating the manual tuning that tendon-driven hands usually need. Each fingertip has built-in tactile sensors covered by silicone skin. The hand can actually feel when it touches something, giving it feedback to grip objects without crushing them or letting them slip. It can hold over 20 lbs, learn tasks by watching human demonstrations, and transfer skills trained in simulation directly to the real world. The team proved its durability by having it pick up and place a cube over 2,000 times across 7 hours with no human intervention. The full design files and source code are open source, so any robotics lab in the world can start building one today.
English
94
411
2.9K
191.2K
BΞN
BΞN@ben3bil·
@Austen Age restrictions?
English
0
0
0
11
BΞN retweetledi
Austen Allred
Austen Allred@Austen·
If you’re an engineer who wants to master AI, we want to * Fly you to Austin * Cover your housing * Cover your food * Have someone do your laundry * Train you to use AI * Get you a $200k+ job with our hiring partners And it’s completely free, no matter what
English
272
152
1.9K
295.9K
BΞN
BΞN@ben3bil·
@TeksEdge @openclaw I’m unsure why one couldn’t just emulate this in a vectordb
English
3
0
8
1.7K
David Hendrickson
David Hendrickson@TeksEdge·
Just saw this GitHub project 🛡️ OpenViking is skyrocketing 📈. This could be the best memory manager for @openclaw! 👀 ✅ OpenViking (volcengine/OpenViking) is an open-source project released by ByteDance’s cloud division, Volcengine. It's exploding in popularity and could become the standard for agentic memory. The community is already building direct plugins to integrate it with OpenClaw. Here is what I found about OpenViking as the ultimate memory manager for autonomous agents. 👇 🦞 What is OpenViking? Currently, most AI agents (like OpenClaw) use traditional RAG for memory. Traditional RAG dumps all your files, code, and memories into a massive, flat pool of vector embeddings. This is inefficient, expensive, sometimes slow, and can cause the AI to hallucinate or lose context. OpenViking replaces this. The authors call this new memory a "Context Database" that treats AI memory like a computer file system. Instead of a flat pool of data, all of an agent's memories, resources, and skills are organized into a clean, hierarchical folder structure using a custom protocol. 🚀 Why is this useful for OpenClaw? 🗂️ The Virtual File System Paradigm Instead of inefficiently searching a massive database, OpenClaw can now navigate its own memory exactly like a human navigates a Mac or PC. It can use terminal-like commands to ls (list contents), find (search), and tree (view folder structures) inside its own brain. If it needs a specific project file, it knows exactly which folder to look in (e.g., viking://resources/project-context/). 📉 Tiered Context Loading (Massive Token Savings) Stuffing massive documents into an AI's context window is expensive and slows the agent down. OpenViking solves this with an ingenious L0/L1/L2 tiered loading system: L0 (Abstract): A tiny 100-token summary of a file[5]. L1 (Overview): A 2k-token structural overview[5]. L2 (Detail): The full, massive document[5]. The agent browses the L0 and L1 summaries first. It only "downloads" the massive L2 file into its context window if it absolutely needs it, slashing token costs and API bills. 🎯 Directory Recursive Retrieval Traditional vector databases struggle with complex queries because they only search for keyphrases. OpenViking uses a hybrid approach. It first uses semantic search to find the correct folder. Once inside the folder, it drills down recursively into subdirectories to find the exact file. This drastically improves the AI's accuracy and eliminates "lost in the middle" context failures. 🧠 Self-Evolving and Persistent Memory When you close a normal AI chat, it forgets everything. OpenViking has a built-in memory self-iteration loop. At the end of every OpenClaw session, the system automatically analyzes the task results and updates the agent's persistent memory folders. It remembers your coding preferences, its past mistakes, and how to use specific tools for the next time you turn it on. 👁️ The End of the "Black Box" Developers hate traditional RAG because when the AI pulls the wrong file, it's impossible to know why. OpenViking makes the agent's memory completely observable. You can view the exact "Retrieval Trajectory" to see which folders the agent clicked on and why it made the decision it did, which I find the most useful feature. 🎯 The Bottom Line OpenViking is the missing piece of the puzzle for local autonomous AI. By giving OpenClaw a structured, file-based memory system that saves tokens and permanently learns from its mistakes, ByteDance has just given the 🦞 Clawdbots an enterprise-grade brain for free.
David Hendrickson tweet media
OpenViking@openvikingai

OpenViking has hit GitHub Trending 🏆 10k+ ⭐ in just 1.5 months since open-sourcing! Huge thanks to all contributors, users, and supporters. We’re building solid infra for the Context/Memory layer in the AI era. OpenViking will keep powering @OpenClaw and more Agent projects🚢🦞

English
47
94
943
151.2K
Cosmic
Cosmic@JonScampi3·
@TimurNegru Love it. What happens if you start having a heart attack
English
24
0
5
11K
Tim
Tim@TimurNegru·
69 acres of private Tuscany for €690k ($797k). The land includes an olive grove, a fruit orchard, a cork oak grove and 20 hectares of woodland. A natural spring produces 3,000 litres of water a day, solar panels cover the electricity and yes, it does have wifi. It's also been renovated, 370m² (3,983 sq ft) across 3 floors, 3 beds, 3 baths, with a pool and a sauna. 50 km to Volterra. Off-grid, self-sufficient, sauna, pool..what's missing here?
Tim tweet mediaTim tweet mediaTim tweet mediaTim tweet media
English
784
503
11.6K
1.8M
BΞN retweetledi
Google AI
Google AI@GoogleAI·
We’re launching a brand new, full-stack vibe coding experience in @GoogleAIStudio, made possible by integrations with the @Antigravity coding agent and @Firebase backends. This unlocks: — Full-stack multiplayer experiences: Create complex, multiplayer apps with fully-featured UIs and backends directly within AI Studio — Connection to real-world services: Build applications that connect to live data sources, databases, or payment processors and the Antigravity agent will securely store your API credentials for you — A smarter agent that works even when you don't: By maintaining a deeper understanding of your project structure and chat history, the agent can execute multi-step code edits from simpler prompts. It also remembers where you left off and completes your tasks while you’re away, so you can seamlessly resume your builds from anywhere — Configuration of database connections and authentication flows: Add Firebase integration to provision Cloud Firestore for databases and Firebase authentication for secure sign-in This demo displays what can be built in the new vibe coding experience in AI Studio. Geoseeker is a full-stack application that manages real-time multiplayer states, compass-based logic, and an external API integration with @GoogleMaps 🕹️
English
413
1.5K
12.1K
4.5M
ℏεsam
ℏεsam@Hesamation·
bro shares a goldmine Claude skill collection (selected few) that you will use every day.
English
9
59
663
47K
BΞN retweetledi
America First Legal
America First Legal@America1stLegal·
/1🚨EXPOSED — Biden CIA’s War on Motherhood: Newly released CIA documents reveal the Biden Administration identified “motherhood” and “homemaking” as indicators of “white racially and ethnically motivated violent extremism” (REMVE).
America First Legal tweet media
English
533
4.2K
10.7K
1.9M
BΞN
BΞN@ben3bil·
@realDaveReilly What universe would you need to reside in to believe Iran has more stock of missiles than the US?
English
0
0
0
152
David J. Reilly 🇺🇸
David J. Reilly 🇺🇸@realDaveReilly·
Probably the only REAL news I’ve seen about the Iran War in days. Everything coming from the White House & D.C. is lies and propaganda.
Died Suddenly@DiedSuddenly_

The investigators at Died Suddenly have received a very concerning piece of intel that we wanted to share with our followers regarding the war in Iran. Over the course of the last 4 years, this same source has given us intel that we have shared that has never once been wrong. Please feel free to pray about this and use discernment in what we are about to share: America has only one week of missiles left to defend allies in Middle East. Nukes, invasion, and war with Russia all on the table. Joe Kent resigned for one simple reason: He knows the Iran war is going poorly, was started purely by Israel lying and manipulating Trump, and he refuses to lie about those facts publicly. I have spoken to several national security sources and this is the summary of what they have told me. 1) America is one week from exhausting our supply of interceptor missiles, without which we have NO EFFECTIVE MEANS of stopping incoming missiles and drones to Israel, Jordan, Qatar, UAE, and Saudi Arabia. Iran knows this and has intentionally kept back their biggest, most advanced, and deadly cruise missiles. Attempts by the U.S. to destroy those missile sites have failed and a good portion remain operational and ready to launch. If America cannot protect our allies in the region, they will sue for peace without us. And without protection, Israel will suffer massive casualties. The stockpile is dangerously low from the Trump administration using missiles to defend Israel since the Oct 7 attacks, and the war in Ukraine. 2) The current Supreme Leader of Iran, Mojtaba Khamenei, survived the decapitation strike and follow on attempts, and has now successfully fled to Russia, where the U.S. is weighing committing another act of war, with Putin, by trying to kill him in Moscow. AI videos or not, Iran will never surrender if they find out they successfully killed or gravely injured the “Great Satan’s” puppet master. 3) America has no good options to end this war, which needed to be finished quickly due to tyranny of variables stacked against the U.S. such as terrain, distance, lack of ground forces, and durability of the Iranian government. Options now being considered are nuclear, and futuristic weapons, like the ones which were deployed in Venezuela, that struck fear into the minds of all our adversaries, the same adversaries now watching in shock and laughter as America falters in this half cocked, expedition against one of the strongest nations in the Middle East. 4) China is weighing an invasion of Taiwan by July of this year, because of the very real distraction and depletion of U.S. military stock piles, troops, and resources, for the Iran conflict. 5) U.S. casualties have easily reached 500, with many injured and dead that have not yet been admitted by the Pentagon. America has lost 4 fixed wing aircraft, more than we’ve lost in 20 years of war combined. The aircraft were not shot down “accidentally” as previously thought. They were downed by sympathizers in the Kuwaiti Air Force. The pilot indeed went rogue, and other fractures in the shaky Middle East alliance are plausible as this war drags on. Russia and China have been capturing data from the combat operations, and providing satellite and intelligence support to Iran, and as part of this, have cracked the signal communication for America’s B-2 bombers, meaning, one of our primary deployment means for nuclear weapons, previously stealth and untraceable in radar, can now be tracked in flight and shot down, a major blow to nuclear deterrence and MAD threat against other super powers. This war may have effectively “evened the playing field” for China. America’s only options are bad, and Kent knew this when he resigned. Best thing we can do is literally and figuratively “put down the shovel” and stop digging our hole deeper. Cease all combat operations before this escalates into a new world war, and more Americans and allies are killed.

English
14
159
2.1K
451.7K
Gary George Cook
Gary George Cook@GaryGeorgeCook·
@hridoyreh Because theyre not offering enough unique value and probably clearly written by AI
English
1
0
1
405
Hridoy Rehman
Hridoy Rehman@hridoyreh·
Guys, this is really very painful. This is data from one of my websites. When I checked the Search Console 7 days ago, there were still 1,500+ pages indexed. But when I checked today, I saw that many pages were no longer indexed. I don't know why this happened. However, I am investigating...
Hridoy Rehman tweet media
English
25
5
67
20.5K
BΞN
BΞN@ben3bil·
@GoForRake @hridoyreh Are you looking on mobile or desktop? Desktop lets you see up to current date
English
0
0
0
17
Rake
Rake@GoForRake·
@hridoyreh GSC data has been extremely odd/delayed for me. Most recent data I have on my account is from March 14th.
English
4
0
4
1.8K