Channels
Hey r/robotics, A while back I posted asking for name suggestions for my new mobile robot platform. Last time around, you guys gave me Arctos for the 6-DOF arm. This time, the top upvoted comment was Cary McCarface. So, officially, the robot is designated Arctos CMC. The "CMC" stands exactly for what you think it does. I finally finished the full build and just put together a quick video showing it driving around and doing its thing. Despite the ridiculous name, a lot of engineering went into making this thing work on a budget. If anyone wants to build one of these themselves, I’ve made the CAD files available. I’m also working on putting together a hardware kit that will be coming soon, but until that's ready, the full Bill of Materials (BOM) is available so you can source the parts yourself. submitted by /u/ganacbicnio [link] [Kommentare]
Hi reddit, I've built an accessibility app that helps people with mobility issues play video games hand-free and now we're developing a human-robot interaction for robotic systems. This HRI can help teleoperation of robots by providing a more precise and faster input method by using person's head movements to guide mechanical actuators, robotic arms etc. in combination with regular controllers. We are looking for a use-case provider with the profile of industrial company or infrastructure owner providing the industrial testbed, defining the use case for inspection and maintenance. And would like to join us in the JARVIS open call 2: external pilots stream. Any advice on finding someone for such a project is also VERY APPRECIATED. We are new to robotics industry and would love to make it happen as this HRI can also help a lot of people with mobility issues to control things in their day to day lives, like wheelchair robot arms or assistive robots. If you know anyone we could reach out to, please don't hesitate to DM me or comment. Thanks! submitted by /u/SensePilot [link] [Kommentare]
From eldercare robots to humanoid monks, South Koreans just can’t get enough of AI.
The Trump administration's decision that forced Anthropic to pull its latest cybersecurity models could be reactionary, retaliatory, or both, but the message is clear: The AI industry isn't immune from U.S. government interference.
Technical debt slows you down. Discovery debt sends you in the wrong direction.
Making a metasearch engine 1/14/2024 In 2020, tired of every search engine seemingly having suboptimal results and missing the instant answers I wanted, I decided to make a search engine for myself. I knew making a general-purpose web search engine from scratch by myself was infeasible, so instead I opted to make a meta-search engine, which aggregates results from other web search engines. First I tried forking Searx, but it was slow and the old Python codebase was annoying to work with. So instead of forking an existing project, I made my own (but with several ideas borrowed from Searx) in NodeJS which I called simply ”metasearch” (very unique name). I used it as my primary search engine for over a year, but it was slow (mostly due to it being hosted on Replit and being written in JS) and brittle to the point where at the time of writing the only working search engine left is Bing. A few weeks ago I decided to rewrite metasearch as (brace for it) metasearch2 (my project names only continue to get more original). In this rewrite I implemented several of the things I wish I would’ve done when writing my first metasearch engine, including writing it in a blazingly fast 🚀🚀🚀 language. There’s a hosted demo at s.matdoes.dev, but I’d much rather you host it yourself so I don’t start getting captcha’d and ratelimited. This blog post will explain what you should know if you want to make a metasearch engine for yourself. Other (meta)search engines First, some prior art. The metasearch engine most people know is probably Searx (now SearxNG), which is open source, written in Python, and supports a very large number of engines. It was the biggest inspiration for my metasearch engine. The main things I took from it were how result engines are shown in the search page and its ranking algorithm. However, as mentioned previously, it’s slow and not as hackable as their readme would like you to think. The (probably) second most well-known metasearch engine is Kagi, which sources its results from its own crawler, Google, Yandex, Mojeek, Marginalia Search, and Brave (I’ll talk about these search engines later). One interesting feature Kagi has that users seem to appreciate is the ability to raise/lower rankings for chosen domains. I haven’t used Kagi much, but the reasons I don’t use it is because it’s paid (I can’t afford to pay $10/month for a search engine) and because I can’t customize it as much as I can customize my own code. There’s also been some other metasearch engines in the past like Dogpile and metacrawler (both still exist, surprisingly) but they’re not worth talking about. Also, of course, there’s my metasearch engine. Instead of just listing what engines I use, I’ll tell my opinion of every search engine that I think is interesting. I haven’t used some of these in years, so if you think their quality has changed in that time, let me know. Google: Some people deny it, but from my experience it still tends to have the best results out of any other normal search engine. However, they do make themselves somewhat annoying to scrape without using their (paid) API. Google’s API: It’s paid, and its results appear to be worse sometimes, for some reason. You can see its results by searching on Startpage (which sources exclusively from Google’s API). However, you won’t have to worry about getting captcha’d if you use this. Bing: Bing’s results are worse than Microsoft pretends, but it’s certainly a search engine that exists. It’s decent when combined with other search engines. DuckDuckGo/Yahoo/Ecosia/Swisscows/You.com: They just use Bing. Don’t use these for your metasearch engine. DuckDuckGo noscript: Definitely don’t use this. I don’t know why, but when you disable JavaScript on DuckDuckGo you get shown a different search experience with significantly worse results. If you know why this is, please let me know. Brave: I may not like their browser or CEO, but I do like Brave Search. They used to mix their own crawler results with Google, but not anymore. Its results are on-par with Google. Neeva: It doesn’t exist anymore, but I wanted to acknowledge it since I used it for my old metasearch engine. I liked its results, but I’m guessing they had issues becoming profitable and then they did weird NFT and AI stuff and died. Marginalia: It’s an open source search engine that focuses on discovering small sites. Because of this, it’s mostly only good at discovering new sites and not so much for actually getting good results. I do use it as a source for my metasearch engine because it’s fast enough and I think it’s cute, but I heavily downweigh its results since they’re almost never actually what you’re looking for. Yandex: I haven’t used Yandex much. Its results are probably decent? It captchas you too frequently though and it’s not very fast. Gigablast: Rest in peace. It’s open source, which is cool, but its results sucked. Also the privacy.sh thing they advertised looked sketchy to me. Mojeek: I’m glad that it exists, but its results aren’t very good. Also it appears to be down at the time of writing, hopefully it’s not going the way of Gigablast. Metaphor: I found this one very recently, its results are impressive but it’s slow and the way they advertise it makes me think it’ll stop existing within a couple years. Scraping If you didn’t figure it out already, the engines I use for my metasearch engine are Google, Bing, Brave, and Marginalia. Some of these have APIs, but I chose not to use them due to pricing, worse results, and increased complexity due to requiring API keys. Scraping the sites is relatively easy. In my NodeJS implementation I used Cheerio for parsing the HTML, and in my Rust implementation I used Scraper. They’re both very nice. The most annoying part of scraping is just figuring out what selectors to use, but it’s not too bad. To provide an example, here’s the CSS selectors I use for Google: Search result container: div.g > div, div.xpd > div:first-child (Search results are usually in .g, but not always. Other results, including ads, are in .xpd, but the :first-child filters out the advertisements since ads never have a div as their first element) Title: h3 Link: a[href] (For some search engines you have to get the text instead of the href, and for Bing you have to get the href and then base64 decode a parameter since it’s a tracking URL. Google used to put a tracking URL on their a tags too, but it seems to have mostly been removed, except on the links for featured snippets). Description: div[data-sncf], div[style='-webkit-line-clamp:2'] (I don’t like this at all, but Google is inconsistent with how descriptions are done in their HTML so both selectors are necessary to reliably get it). Note how I avoid using class names that look randomly generated, only using g and xpd (whatever they stand for) since I’ve noticed those never change, while the other random class names do change every time Google updates their website. You can check my source code and SearxNG’s if you need help figuring out what selectors to use, but you should always check your target site’s HTML in devtools. Some websites make themselves annoying to scrape in ways that aren’t just making their HTML ugly, though. Google is the major culprit here. Google appears to always captcha requests coming from a Hetzner IPv6, Google will block your requests after a while if you’re using your HTTP client library’s default user agent, and Google captchas you if you make too many queries, especially ones with many operators. A couple other things you should watch out for that you might not notice are that you should make sure your TCP connections are kept alive by your HTTP client library (usually done by reusing the same Client variable), and making sure compression is enabled (which can sometimes save hundreds of milliseconds on certain search engines). Ranking The algorithm I use for ranking is nearly identical to the one Searx uses, and it’s surprisingly effective for how simple it is. def result_score(result): weight = 1.0 for result_engine in result['engines']: if hasattr(engines[result_engine], 'weight'): weight *= float(engines[result_engine].weight) occurences = len(result['positions']) return sum((occurences * weight) / position for position in result['positions']) Note that the position is 1-indexed, otherwise you get results with infinite score, lol. The only change I made was to not multiply by occurences at the end (and instead just summing weight/position for each engine with the result). I never actually noticed I had this difference until writing this, but I don’t believe it made the rankings worse. Also keep in mind that you may want to slightly normalize the URLs, for example converting them to always be HTTPS and removing trailing slashes, so the results from different engines can merge more nicely. Instant answers Instant answers are the widgets that show up when you search things like math expressions or “what’s my ip”. I think Google calls them just “answers”, but that can get confusing. In my old metasearch, I had a lot of unique ones for things like pinging Minecraft servers and generating lorem ipsum text. In my rewrite I didn’t implement as many since I don’t have as much of a need for them anymore, but I still did implement a few (and I haven’t finished adding all the ones I want yet). My favorite engine I implemented in my rewrite is the calculator, which is powered by a very neat Rust crate I found called fend. This makes it able to calculate big math expressions and do things like unit conversions. I did have to add a check to make it avoid triggering on queries that probably weren’t meant to be calculated, though. I also added some checks to support queries like ord('a') and chr(97) (I wasn’t able to add a custom function to fend to support chr, so it has a very big regex instead :3). I imagine you already have ideas for instant answers you could add. If you want more inspiration, a good source with over a thousand instant answers is DuckDuckHack (which DDG unfortunately killed). Another thing I chose to do is to use Google’s featured snippets and display them similarly to instant answers. Also, I made it so if a StackExchange, GitHub, or docs.rs link is near the top of the results, then they get scraped and shown on the sidebar (only on desktop though, it takes up too much space on mobile). Rendering results This part is mostly easy, since search engines usually don’t have any complex styling. You can use whatever web/templating framework you like, but ideally it should be one that can return the response in chunks (so the header HTML is sent immediately, and later the HTML for the search results is sent) since it makes it feel faster for the user. I chose not to use any templating framework for metasearch2 (since simplicity was one of my goals), and instead just made it build up the HTML by hand. This also made it very easy to add chunking, and I took advantage of this by having it show the user real-time progress updates of the search engines that are being requested. Your turn There’s several things I intentionally omitted for the sake of simplicity in my metasearch engine. This includes pagination, the ability to search for images, reverse-image search, some type of authentication or ratelimiting to prevent abuse (I might have to do this eventually, hopefully not), adding more search/answer engines, and adding a way to configure it easily. I gave the CC0 license (public domain) to metasearch2 so you can do absolutely whatever you want with it (attribution isn’t required, but it is appreciated). Have fun.
AMD's stripping of TSME from consumer CPUs appears to be a deliberate, covert move.
I am facing a $700,000 loss on a massive $345 million Polymarket contract because the decentralized oracle system (UMA) is completely compromised by whale manipulation and a fatal tokenomics incentive loop. This isn’t just about my loss; it proves that if a market pool gets large enough, the "fail-safe" resolution system can be bought and hijacked in broad daylight. I am a major holder in the following market: US x Iran Permanent Peace Deal by June 15, 2026 The rules of this contract are incredibly strict. To resolve YES, there must be an official, permanent peace deal or treaty signaling a lasting cessation of military hostilities. The rules explicitly exclude temporary frameworks or extensions of the April ceasefire. The Reality: Over the weekend, the US and Iran announced an interim, 60-day agreement/framework to reopen the Strait of Hormuz. Geopolitical experts, mainstream media, and the state actors themselves have confirmed this is a temporary framework, not a permanent peace treaty. The Scam: Despite the clear text of the rules, a "YES" resolution was submitted. When it was rightfully disputed, it triggered the UMA (Universal Market Access) oracle voting process. UMA token holders are now aggressively voting "YES" to pocket millions on their own massive Polymarket side-bets. Polymarket outsources its truth-finding to UMA, a "vote-to-earn" crypto token governance system. This creates a terrifying flaw when the financial stakes are this high: Extreme Centralization: Public data shows that just nine anonymous UMA whale wallets control over half of the entire protocol's voting power. The Financial Incentive to Lie: These nine completely anonymous wallets can collude to vote that the sky is green. Why? Because the value they stand to make by forcing a fraudulent "YES" outcome on Polymarket vastly outweighs any temporary hit to the UMA token's "credibility" reputation. A Secondary Rigged Casino: Because the market stays open during an UMA dispute, people are no longer betting on geopolitical reality. They are literally just betting on whether a handful of anonymous crypto whales will decide to steal the liquidity pool. submitted by /u/bubbacordy [link] [Kommentare]
Take the Zora “every post is a coin” idea, move it to Solana, and aim it at creators specifically: each creator launches their own coin, fans back early and ride the upside, bonding curve (Meteora DBC) migrates at a cap. Non-custodial embedded wallets, fiat on-ramp, web + mobile both fully built. Curious where the room lands on two things: 1. Is CCM (creator capital markets) a meta you’d actually bet on, or already crowded post-Zora / pump? 2. A finished, working build in this lane with some users. what does that sell for as an asset? Low five figures? More if the right team wants the time-to-market? Built, not vaporware. Keeping specifics off the public post DM if you’ve bought or sold in this space. submitted by /u/alexsssaint [link] [Kommentare]
Quick Take The SEC’s draft five-year plan adds digital assets and blockchain as a standalone objective, framing them as financial infrastructure. That shift matters because institutional capital often waits for regulatory certainty, and a roadmap can move approvals before new rules. The unresolved issue is whether the SEC-CFTC harmonization and CLARITY Act will follow, locking tokenized markets into statute. submitted by /u/semanticweb [link] [Kommentare]
Speakers Tamer Ozmen — CEO & Founder, Mintus Staci Warden — CEO, Algorand Foundation Petr Stransky — Founding Partner, IDAP Global LLP John D'Agostino — Head of Strategy, Coinbase Institutional Moderator Nicole Purin — Legal & Regulatory Advisor, Financial Services & Digital Assets This session explored: How tokenization is transforming the structure and accessibility of global capital markets The digitization of real-world assets and its potential to unlock liquidity across traditionally illiquid asset classes The role of blockchain technology in enhancing efficiency, transparency, and settlement processes within financial markets How tokenized securities, private market assets, real estate, and alternative investments are creating new opportunities for investors The regulatory and legal frameworks required to support institutional adoption of tokenized assets The convergence of traditional finance and blockchain-based financial infrastructure The potential for fractional ownership to democratize access to investment opportunities and broaden market participation Challenges surrounding interoperability, custody, compliance, and investor protection in tokenized markets The role of digital asset platforms, financial institutions, and technology providers in driving market transformation The long-term outlook for tokenization as a foundational component of the future global financial system submitted by /u/semanticweb [link] [Kommentare]