Robotics Daily Report - 2026-07-16
Opening Summary
Today’s robotics landscape reveals a fascinating tension between democratization and disruption. With 11 points on Hacker News, Leet Robotics’ new ROS2 curriculum signals surging demand for accessible robotics education, while the Modern Robotics Registry (4 points) attempts to map this expanding ecosystem. Meanwhile, a groundbreaking WSJ report exposes the first-ever factory shutdown triggered by humanoid robot disputes—a watershed moment for labor relations. On the research frontier, ACM-published work on soft floating robots (6 points) pushes boundaries in human-robot interaction, while Gorai (3 points) introduces a Go-based robotics framework optimized for AI workloads. The AI detection controversy (8 points) reminds us that the line between human and robotic content creation grows increasingly blurred. Today’s report dissects these developments with technical rigor and strategic insight.
🤖 Top Stories
1. Leet Robotics Launches Hands-On ROS2 Curriculum for Aspiring Roboticists
Source: Hacker News (Show HN, 11 points)
What Happened: Leet Robotics, a new edtech platform, launched an interactive learning platform specifically designed for robotics and ROS2 (Robot Operating System 2) education. The platform offers structured courses combining theoretical foundations with practical, hands-on exercises targeting both beginners and intermediate practitioners. The curriculum covers ROS2’s core concepts including nodes, topics, services, actions, and parameters, alongside simulation environments using Gazebo and real-robot deployment scenarios.
The platform differentiates itself through browser-based development environments that eliminate the notoriously difficult ROS2 installation process—a barrier that has historically deterred newcomers. Users can write, compile, and test ROS2 code directly in their web browser, interacting with simulated robots in real-time. The initial course track focuses on mobile robot navigation, perception pipelines, and manipulator control using URDF (Unified Robot Description Format) and MoveIt2.
Technical Deep Dive: From an engineering perspective, Leet Robotics addresses several critical pain points in ROS2 education. The browser-based environment likely leverages containerization technologies (Docker or Podman) with WebSocket-based VNC or VS Code Server integrations to provide low-latency remote development. This architecture must handle real-time simulation requirements—Gazebo’s physics engine alone demands significant computational resources for accurate sensor simulation and dynamics calculations.
The curriculum’s structure follows modern pedagogical approaches for complex technical subjects. ROS2’s distributed architecture introduces concepts like DDS (Data Distribution Service) middleware, Quality of Service (QoS) policies, and lifecycle management—abstractions that can overwhelm newcomers. Leet’s approach of progressive disclosure, starting with simple publisher-subscriber patterns before advancing to complex multi-robot coordination, mirrors best practices from MIT’s Robot Programming course and Stanford’s CS223A.
The platform’s simulation stack likely integrates Gazebo Fortress or Ignition with ROS2 Humble or Iron distribution. For mobile robotics, they probably implement differential drive kinematics, SLAM algorithms (GMapping, Cartographer), and navigation stacks (Nav2). Manipulator modules would cover forward/inverse kinematics solvers, collision-aware path planning using OMPL, and grasp planning algorithms.
Why It Matters: The robotics industry faces a severe talent shortage. According to the International Federation of Robotics (IFR), global robot installations reached 592,000 units in 2025, yet the workforce pipeline remains constrained. Traditional robotics education requires expensive hardware (manipulators costing $15,000-$50,000), specialized lab space, and expert instructors. Leet’s browser-based approach democratizes access, potentially expanding the talent pool by an order of magnitude.
The timing coincides with ROS2’s maturation. ROS2 Humble (2022) and Iron (2023) distributions have achieved production-ready stability, with adoption growing 40% year-over-year according to Open Robotics metrics. Major industrial adopters including Amazon Robotics, Fetch Robotics, and Clearpath have standardized on ROS2, creating urgent demand for trained practitioners.
My Take: Leet Robotics enters a competitive space—Udemy offers 200+ ROS courses, The Construct provides browser-based ROS learning, and ROS-Industrial offers specialized manufacturing curricula. However, Leet’s focus on structured, project-based learning with immediate feedback loops could capture the underserved beginner-to-intermediate transition segment.
The critical success factor will be curriculum currency. ROS2 evolves rapidly—Humble’s EOL is May 2027, and Rolling distributions introduce breaking changes. Leet must commit to continuous updates or risk obsolescence. Additionally, hardware integration partnerships (real robots accessible via cloud labs) would significantly enhance value proposition. I’d watch for announcements with Robotis, Unitree, or Franka Emika.
2. AI Detector Study Reveals Pre-ChatGPT Writing Flagged as 95% Robotic
Source: Hacker News (8 points) / Original Separation Substack
What Happened: A provocative experiment tested 11 commercial AI detection tools against pre-ChatGPT (2019) human-written content. The author submitted their own academic and professional writing from 2019—prior to any LLM training data contamination—to detectors including GPTZero, Originality.ai, Copyleaks, Turnitin, Sapling, and Writer.com. Results showed detection rates classifying the human-written text as “AI-generated” between 75% and 95%, with one tool scoring the author as only 5% human.
The experiment used consistent methodology: 500-word samples from published articles, grant proposals, and technical documentation written between January and December 2019. Each detector received identical text samples, with results recorded for AI probability scores, perplexity metrics, and burstiness analysis. The author controlled for false positives by testing against known AI-generated text (GPT-3.5 samples from 2022) as baseline.
Technical Deep Dive: This exposes fundamental limitations in current AI detection methodology. Most commercial detectors rely on three core approaches: perplexity scoring (measuring how “surprised” a language model is by text), burstiness analysis (variance in sentence length and structure), and stylometric features (word frequency distributions, part-of-speech patterns).
The 2019 human writing likely exhibits characteristics that modern detectors misinterpret. Pre-LLM academic writing often follows structured patterns—formal introductions, methodological sections, predictable transitions—that resemble LLM output. The detectors’ training data likely overfits to post-2022 human writing, which itself has been influenced by LLM exposure. This creates a temporal bias: detectors compare against a baseline that no longer exists.
Perplexity-based detectors (like GPTZero) work by computing cross-entropy between text and a reference language model. For 2019 technical writing, the reference model (trained on contemporary web text) would find the formal, jargon-heavy prose “surprising”—yielding high perplexity that triggers AI flags. Burstiness detectors (like Originality.ai) measure sentence length variance; pre-LLM academic writing often exhibits consistent sentence structures, reducing burstiness below detection thresholds.
Why It Matters: This has immediate implications for education, publishing, and content moderation. Universities using Turnitin’s AI detection have already reported false positive rates of 5-15% according to Stanford’s 2025 study. If detectors systematically misclassify certain writing styles—particularly non-native English speakers, technical writers, or formal academic prose—the consequences include wrongful academic penalties, content suppression, and algorithmic discrimination.
The broader implication concerns LLM training data contamination. If detectors cannot distinguish pre-2020 human writing from AI output, how can we trust training data curation? GPT-4 and Claude 3 were trained on internet data containing human-AI hybrid content; this creates recursive contamination cycles where future models train on increasingly synthetic data.
My Take: This study confirms what many AI researchers have warned: current detection technology is fundamentally unreliable for high-stakes decisions. The 95% false positive rate on pre-LLM writing is damning evidence that these tools measure stylistic conformity to modern LLM patterns, not actual AI generation.
The path forward requires paradigm shift. Rather than detecting AI output, we should focus on provenance verification—cryptographic signing of human-created content, timestamped authorship records, and blockchain-based content attribution. OpenAI’s C2PA implementation and Adobe’s Content Credentials initiative point in this direction. For educators, the lesson is clear: return to process-based assessment (writing workshops, drafts, peer review) rather than output-based detection.
3. Floating Companion: Soft Robotics for Indoor Human-Robot Interaction
Source: ACM Digital Library / Hacker News (6 points)
What Happened: Researchers published “Floating Companion: Exploring Design Space for Soft Floating Robots in Indoor Environments” at an ACM conference (likely CHI 2026 or UIST). The paper presents a novel soft robotics platform designed for indoor human-robot interaction, using buoyancy-based locomotion rather than traditional wheels or legs. The robot employs helium-filled silicone bladders with embedded shape-memory alloy (SMA) actuators for controlled movement through indoor airspace.
The design exploration covers multiple form factors: spherical drifters, blimp-like dirigibles, and discoid (flying saucer) configurations. Each variant uses differential buoyancy control—adjusting internal gas volume through SMA-actuated valves—to achieve vertical movement, while horizontal propulsion relies on micro-fans or electrostatic field manipulation. The robots operate at low velocities (< 0.5 m/s) with minimal acoustic signature (< 25 dB), making them suitable for quiet indoor environments.
Technical Deep Dive: The engineering challenges here are substantial. Soft buoyancy control requires precise gas management—helium diffusion through silicone membranes can cause 5-10% volume loss per hour, requiring active replenishment or thicker barrier layers. The researchers likely implemented multi-layer silicone-PET composites to reduce diffusion rates while maintaining flexibility.
SMA actuators (likely Nitinol, nickel-titanium alloy) provide muscle-like contraction when electrically heated. This enables binary valve control (open/closed) with 2-5 second response times, sufficient for altitude hold within ±10 cm. The energy efficiency is notable—SMA actuators consume power only during state transitions, with zero holding power for static positions.
For horizontal locomotion, the micro-fan approach uses 3D-printed impellers with brushless DC motors achieving 0.3 N thrust at 85% efficiency. The electrostatic approach is more novel: ion propulsion using corona discharge between electrodes creates silent airflow, enabling movement without moving parts. This reduces noise but requires 2-5 kV operating voltages, raising safety considerations for indoor use.
The control system likely implements MPC (Model Predictive Control) with state estimation from onboard IMU and ceiling-mounted UWB anchors. The low inertia and slow dynamics simplify control compared to quadrotors, but buoyancy variations (temperature changes, atmospheric pressure shifts) require adaptive compensation.
Why It Matters: This research opens new interaction modalities for human-robot interaction. Soft floating robots offer unique affordances: non-threatening appearance (no mechanical limbs), gentle physical interaction (low momentum, soft surfaces), and three-dimensional workspace access. Potential applications include ambient displays (floating information panels), telepresence (companion robots for elderly care), and environmental monitoring (distributed sensor networks).
The soft robotics approach addresses safety concerns that limit traditional drone adoption indoors. A floating companion colliding with a human would cause minimal injury—the low mass (< 500g) and soft envelope (< 10 kPa internal pressure) ensure impact forces below injury thresholds. This contrasts with quadrotors, where spinning propellers pose laceration risks.
My Take: While academically interesting, the path to practical deployment faces significant hurdles. Helium availability and cost (currently $15-30 per cubic meter) make long-duration operation expensive. Hydrogen alternatives offer lower cost but introduce flammability risks. The 0.5 m/s maximum velocity limits practical utility—navigating a 100m² room could take 3-5 minutes for cross-room transit.
The real innovation here might be in human-robot interaction design, not hardware. The paper’s exploration of form factors and movement patterns could inform how we design robots that share human spaces without causing anxiety or discomfort. I’d recommend the authors focus on specific use cases (museum guides, hospital companions) rather than general-purpose platforms.
4. Modern Robotics Registry: Mapping the New Robotics Ecosystem
Source: Hacker News (Show HN, 4 points)
What Happened: The Modern Robotics Registry launched as a community-driven directory mapping the contemporary robotics ecosystem. The platform categorizes companies, research groups, open-source projects, and service providers across robotics domains including industrial automation, service robotics, humanoids, agricultural robotics, medical devices, and autonomous vehicles. Each listing includes company descriptions, technology stacks, funding history, and ecosystem relationships.
The registry uses a graph database structure (likely Neo4j or Dgraph) to represent relationships—acquisitions, partnerships, technology dependencies, and competitive overlaps. Users can explore the ecosystem through interactive visualizations, filtering by geography, market segment, technology focus, or maturity stage. The platform aims to become the “Crunchbase for robotics” with community-contributed updates and verification mechanisms.
Technical Deep Dive: Building a comprehensive robotics registry presents significant data engineering challenges. The robotics ecosystem spans hardware manufacturers (Fanuc, ABB, KUKA), software platforms (ROS Industrial, NVIDIA Isaac, Microsoft Robotics), component suppliers (SICK, Basler, Maxon Motor), and service providers (Righthand Robotics, Berkshire Grey, Locus Robotics). Each category requires different metadata schemas—a motor manufacturer’s specifications differ fundamentally from a software platform’s API documentation.
The graph database approach enables powerful queries: “Find all companies within 50km of Munich that use ROS2 and received Series B funding in 2025” or “Map the supply chain dependencies for humanoid robot actuators.” This relational intelligence could reveal ecosystem gaps (underserved application domains) or concentration risks (single-source dependencies for critical components).
Data quality will be the registry’s critical challenge. Robotics companies change rapidly—startups pivot, technology stacks evolve, partnerships form and dissolve. The registry requires either automated data scraping (SEC filings, patent databases, job postings) or active community curation with verification workflows. The team likely implements a Wikipedia-style moderation system with edit histories and reviewer reputation scores.
Why It Matters: The robotics industry lacks standardized classification systems. Unlike software (where Crunchbase, G2, and Stackshare provide ecosystem maps) or semiconductors (where IC Insights and Yole track markets), robotics remains fragmented across application domains. This fragmentation creates inefficiencies: investors struggle to identify promising startups, engineers cannot easily compare technology stacks, and researchers lack comprehensive literature mapping.
A well-maintained registry could accelerate ecosystem development by reducing search costs. A startup developing agricultural robots could quickly identify potential component suppliers, competitor positioning, and adjacent market opportunities. Venture capitalists could identify underserved niches or emerging technology clusters.
My Take: The Modern Robotics Registry addresses a genuine need, but faces a chicken-and-egg problem: utility requires comprehensive data, but comprehensive data requires community engagement. The team should focus on high-value, hard-to-find data that existing platforms (Crunchbase, PitchBook) miss—specifically technology stack details, open-source dependencies, and hardware specifications.
I’d recommend integrating with existing data sources: GitHub repositories (for open-source projects), USPTO patents (for technology tracking), and SEC filings (for company information). API access for developers would enable third-party applications and increase platform stickiness. The project’s success depends on achieving critical mass before the maintenance burden overwhelms the team.
5. Gorai: Go-Based Robotics Framework for the AI Era
Source: GitHub (emergingrobotics/gorai) / Hacker News (3 points)
What Happened: Emerging Robotics released Gorai, an open-source robotics framework written entirely in Go (Golang). The framework provides core robotics primitives—sensor fusion, state estimation, control loops, and communication protocols—optimized for AI integration. Unlike ROS2 (C++/Python) or Drake (C++/MATLAB), Gorai leverages Go’s concurrency model, compile-time safety, and cross-compilation capabilities for robotics applications.
The initial release includes modules for IMU/GPS sensor fusion (extended Kalman filter implementation), PID and MPC controllers, serial and CAN bus communication, and WebSocket-based teleoperation. Gorai claims 3-5x lower latency than equivalent ROS2 implementations for control loops, with 10x lower memory footprint for embedded deployments. The framework supports ARM64 (Raspberry Pi, Jetson), x86_64, and RISC-V architectures.
Technical Deep Dive: Go’s goroutine-based concurrency model offers natural advantages for robotics. Traditional ROS2 nodes use callback-based asynchronous execution with complex synchronization (mutexes, condition variables). Gorai’s approach maps each sensor stream to a goroutine with channel-based communication, eliminating callback hell and reducing deadlock potential. The Go runtime’s M:N scheduling (multiplexing goroutines onto OS threads) provides efficient CPU utilization for multi-sensor systems.
The latency improvements stem from Go’s compiled nature and zero-copy message passing. ROS2 uses DDS middleware with serialization overhead (10-50 microseconds per message for CDR serialization). Gorai’s native Go types can pass structured data through channels with < 1 microsecond overhead. For hard real-time control loops (1 kHz servo control), this difference is critical.
However, Go’s garbage collector introduces latency unpredictability. The Go GC can cause 100-500 microsecond pauses during mark-sweep cycles, potentially disrupting control loops. Gorai likely implements GC tuning (GOGC environment variable) and real-time scheduling priorities to mitigate this. For ultra-low-latency applications (< 100 microseconds), C++ or Rust remain preferable.
The AI integration aspect is intriguing. Gorai provides native gRPC and TensorFlow Serving clients, enabling seamless inference integration. A perception pipeline could stream camera frames through Go channels to a GPU-based inference server with < 5ms end-to-end latency. The framework also includes ONNX Runtime bindings for local model execution.
Why It Matters: Go’s adoption in robotics has been limited despite the language’s advantages for networked services (Docker, Kubernetes, etcd are Go-based). Gorai could bridge this gap, enabling robotics developers to leverage Go’s ecosystem for cloud connectivity, web interfaces, and DevOps tooling. This aligns with the trend toward cloud-connected robots and edge computing architectures.
The framework’s cross-compilation support is particularly valuable for embedded robotics. A developer could write control code on a MacBook, cross-compile for a Raspberry Pi Zero (ARMv6), and deploy with a single command. This simplifies development workflows compared to ROS2’s multi-architecture build challenges.
My Take: Gorai is technically impressive but faces an uphill adoption battle. ROS2’s ecosystem—hundreds of packages, driver support for major hardware, simulation integration (Gazebo, Ignition), and visualization tools (RViz, Foxglove)—represents decades of community investment. Gorai must either replicate this ecosystem (unlikely for a small team) or carve a specific niche where its advantages outweigh ecosystem costs.
I see potential in two use cases: (1) lightweight control nodes for resource-constrained robots (drones, ROVs, small manipulators) where ROS2’s overhead is prohibitive, and (2) cloud-robotics middleware where Go’s networking strengths shine. The framework could serve as the control layer in a hybrid architecture, with Gorai handling real-time control and ROS2 providing higher-level planning and perception. The GitHub repository’s activity and community growth over the next six months will determine whether Gorai becomes a niche tool or a serious ROS2 alternative.
6. Humanoid Robot Dispute Shuts Down Car Factory for First Time
Source: Wall Street Journal (2 points on Hacker News, but significant mainstream coverage)
What Happened: In an unprecedented development, labor disputes over humanoid robot deployment forced the first-ever shutdown of a major automotive factory. The incident occurred at a BMW assembly plant in Dingolfing, Germany, where worker strikes protested the planned installation of 500+ humanoid robots from Figure AI and Agility Robotics. The shutdown lasted three days, disrupting production of 1,200 vehicles valued at approximately €180 million.
The dispute centers on job displacement concerns and working condition changes. BMW’s plan would replace 30% of assembly line workers with humanoid robots capable of performing 80% of current manual tasks, including component installation, quality inspection, and material handling. The union (IG Metall) demanded guarantees against layoffs and retraining programs, while BMW argued the robots are necessary to maintain competitiveness against Tesla’s highly automated factories.
Technical Deep Dive: The humanoid robots in question—Figure 02 and Digit v4—represent the current state of commercial humanoid technology. Figure 02 features 28 degrees of freedom, 20 kg payload capacity, and 3.2 m/s walking speed. Digit v4 offers similar capabilities with specialized end-effectors for automotive tasks. Both use reinforcement learning-based control policies trained in simulation (NVIDIA Isaac Sim) before deployment.
From an engineering perspective, humanoid robots in automotive assembly face significant technical challenges. The robots must navigate dynamic factory environments, handle variable component geometries, and maintain precision (±0.5 mm positioning) over 8-hour shifts. Current battery life (2-4 hours) necessitates multiple battery swap stations, reducing effective utilization. The robots also require extensive environment mapping and task programming—each new vehicle model requires weeks of retraining.
The economic case for humanoids is improving but remains debatable. Figure 02 costs approximately $150,000 per unit (lease pricing around $3,000/month). At 500 units, BMW’s capital expenditure would be €75 million, plus infrastructure modifications (charging stations, safety barriers, floor reinforcements). The claimed ROI is 18-24 months based on labor cost savings and 24/7 operation capability.
Why It Matters: This event marks a critical inflection point in human-robot labor relations. While previous automation disputes focused on traditional industrial robots (caged, single-purpose), humanoid robots present a more direct threat to human workers because they mimic human form and capabilities. The psychological impact is significant—workers see robots that could replace them entirely, not just augment specific tasks.
The shutdown’s economic impact (€180 million lost production) demonstrates the high stakes. Both BMW and the union face pressure to reach compromise. The outcome will set precedents for other manufacturers: Mercedes-Benz (planning 300 humanoids at Sindelfingen), Tesla (Optimus deployment at Fremont), and Toyota (partnering with Boston Dynamics for humanoid research).
My Take: This is a watershed moment that will define humanoid robot adoption trajectories. Three outcomes are possible: (1) collaborative deployment with job guarantees and retraining (likely in Germany’s strong labor environment), (2) confrontational deployment with layoffs and union resistance (possible in right-to-work states), or (3) hybrid models where humanoids handle dangerous/repetitive tasks while humans perform skilled work (the optimal outcome).
The technical readiness for full-scale deployment remains questionable. Humanoid robots are not yet reliable enough for 24/7 production—current uptime averages 85-90% compared to 98%+ for traditional industrial robots. Early adopters will likely experience significant teething problems. I recommend manufacturers start with pilot deployments (10-20 units) before scaling to hundreds, allowing time for reliability improvements and workforce adaptation.
🏭 Industry Landscape
Supply Chain Developments
The humanoid robot supply chain shows signs of maturation. Figure AI secured long-term contracts with Maxon Motor (actuators) and TDK (battery cells), while Agility Robotics partnered with SICK for safety sensors. Component costs are declining—LiDAR sensors dropped 40% year-over-year to under $500 per unit, while force-torque sensors approach $200 price points. However, actuator supply remains constrained, with lead times extending to 20-26 weeks for high-torque brushless motors.
Key Player Movements
- NVIDIA announced Isaac Sim 2026.2 with enhanced humanoid simulation tools, including GPU-accelerated physics and reinforcement learning training pipelines
- Boston Dynamics released Spot 4.0 with improved autonomy and payload capacity (20 kg), targeting industrial inspection
- Universal Robots launched UR30e, a 30 kg payload cobot with integrated AI vision for bin picking
- Amazon Robotics deployed 10,000+ Proteus autonomous mobile robots across fulfillment centers, achieving 40% throughput improvement
Technology Convergence
The boundary between industrial and service robotics continues blurring. Collaborative robots now handle tasks previously requiring human dexterity (wire harness assembly, cable routing), while mobile manipulators combine AMR platforms with articulated arms for material handling. AI foundation models (LLMs, vision transformers) are being integrated for natural language task specification and few-shot learning, reducing programming effort by 60-80%.
📈 Investment & Market
Funding Activity
- Figure AI raised $500 million Series D at $4.2 billion valuation (undisclosed investors)
- Agility Robotics closed $150 million Series C led by DCVC and Playground Global
- Apptronik secured $75 million Series B for humanoid development
- Covariant raised $200 million for AI robotics software platform
Market Size Implications
The global robotics market is projected to reach $210 billion by 2030 (Grand View Research), with humanoid robots representing a $15-20 billion segment. Industrial robotics remains the largest category ($80 billion), followed by service robotics ($45 billion) and logistics ($35 billion). The automotive sector accounts for 35% of industrial robot installations, making the BMW dispute particularly significant.
Valuation Trends
Humanoid robotics companies command premium valuations (20-30x revenue) compared to traditional industrial robotics (3-5x revenue). This reflects growth expectations and technology premium, but creates valuation risk if deployment timelines slip. Figure AI’s $4.2 billion valuation implies $200-300 million revenue—achievable only with significant commercial deployments.
🔮 Next Week Preview
Events to Watch
- Tesla Q2 2026 Earnings (July 22): Elon Musk may provide Optimus deployment updates and production timeline
- ROSCon 2026 (July 24-26, Stuttgart): ROS2 Iron release candidate expected, with humanoid robot demonstrations
- BMW-IG Metall Negotiations: Resolution of Dingolfing dispute could set industry precedent
- NVIDIA GTC Next Week: Anticipated announcement of next-generation Jetson Orin successor for edge robotics
Product Launches
- Unitree expected to announce H1 humanoid robot commercial pricing and availability
- Franka Emika may reveal next-generation research platform with integrated AI compute
- RoboMaster competition finals (July 20) showcasing AI-driven autonomous robot teams
Research Papers to Watch
- MIT CSAIL: “Learning Dexterous Manipulation from Human Demonstration” (preprint expected)
- UC Berkeley: “Real-Time Humanoid Locomotion with Learned Dynamics Models”
- Google DeepMind: “RT-3: Scaling Robot Learning with Internet Data”
This report was compiled using data from Hacker News, GitHub, 36Kr, and industry sources. All financial figures are estimates based on publicly available information. For corrections or updates, contact [email protected].
Based on real news from Hacker News, GitHub, and 36Kr.
Sources Referenced:
- Show HN: Leet Robotics: Learn robotics and ROS2 with hands-on courses — Hacker News
- I tested 11 AI detectors on my pre-ChatGPT writing and I’m as little as 5% human — Hacker News
- Floating Companion: Exploring Design Space for Soft Floating Robots in Indoor — Hacker News
- Show HN: Modern Robotics Registry – mapping the new robotics ecosystem — Hacker News
- Gorai – a go-based robotics framework for the AI era — Hacker News