Tried out the simulator and was surprised to find that the movement keys are ZQSD; then realized that's the equivalent of WASD on an AZERTY keyboard. Checked and sure enough, Pollen Robotics is a French company.<p>They may want to at least add a preference for keyboard layout, pretty sure that QWERTY and QWERTZ are much more common worldwide than AZERTY.
As a French guy who grew up playing CS 1.6 on an AZERTY keyboard, I have a feeling that the people who made this website are either a generation above or below Millenials.<p>Because it doesn't make sense: you don't make a website in English, with prices in USD... while expecting users to have an AZERTY keyboard.<p>We even had a meme and tshirts about it: <a href="https://wiki.nofrag.com/Jte_niaue_q_lq_Kqlqsh" rel="nofollow">https://wiki.nofrag.com/Jte_niaue_q_lq_Kqlqsh</a>
I'm a millenial and can say you can absolutely make a site with i18n + currency conversion without knowing what keyboards people use. Especially Americans, who are much less familiar with "other markets", because companies can stay within US customers for so long.
It is a bit weird. As someone from Belgium (we also use our own variety of Azerty) you are very frequently reminded that you're on a weird keyboard. At least for someone who games, you wouldn't make ZQSD the default. It's the first thing you do in every game, change WASD to ZQSD
…"j'te nique à la kalash"?
When I started out playing Quake 1 many moons ago, when I complained about how to reach keybindings as I was using the arrow keys, a veteran player on the server told me patiently to use ESDF like a normal person. So I did, and learned, and it stuck with me. It wasn't until years later I realized that was more a rarity and people usually use WASD. I kept ESDF because I was used to it, and because it's nice have those two extra left keys as additional bindings.<p>All that's to say, if they'd used ESDF this wouldn't be an issue. You've been vindicated, kind hero.
Interestingly, the 10-lines-of-basic competition, which has been running the last 15 years (<a href="https://itch.io/profile/bunsen" rel="nofollow">https://itch.io/profile/bunsen</a>), has this covered in the rules:<p>15. If the game is controlled with the keyboard, use "O" for left, "P" for right, "E" for up and "D" for down if possible; this takes into account the most important keyboard layouts (no disadvantages for emulator users with QWERTZ, QWERTY or AZERTY keyboards)
At least my QUERTZ layout also works as expected in the simulator. You use WASD to move the duck, Q and E to kick left and right etc.<p>I think it's just the splash screen they didn't properly localize.
Huh, when I tried it WASD didn't work like I expected, hence I went back and checked and saw that it was ZQSD. Looks like they might have fixed it now since I posted. Either that or the lagginess caught me up; it takes a second before it starts moving forward, it might be I got caught up by that, went back to look at the instructions and noticed the ZQSD, then went back and used the arrow keys since that was easier.<p>edit: just checked the code, and they cover both layouts by using the physical key code rather than the character. And that was committed before I tried it. So it must have been the fact that it was a bit slow to respond that got me.<p><a href="https://huggingface.co/spaces/pollen-robotics/microduck-simulator/blob/main/app/src/game/controls/keyboard.js#L4-L5" rel="nofollow">https://huggingface.co/spaces/pollen-robotics/microduck-simu...</a>
Typing bash commands on a colleague’s French keyboard was one of the most frustrating experiences of my life.
Having tried (and failed) to use Issac to do the same thing, the fact that their simulator actually works out of the box, "batteries included", is a big deal for home hobbyists.
I think they just need to use KeyboardEvent.code to design for key location, not key character.
They do, which is why WASD (or whatever the positional equivalent in your layout is) work despite the text saying to press ZQSD. This only solves the input though, it doesn't let the page know ahead of time what letter it should tell you to press for those 4 positional inputs.<p>Chromium based browsers support navigator.keyboard.getLayoutMap() to tackle this exact problem. Safari and Firefox do not due to concerns over fingerprinting. Still, it wouldn't hurt to add this second half for those users <a href="https://caniuse.com/?search=navigator.keyboard.getLayoutMap%28%29" rel="nofollow">https://caniuse.com/?search=navigator.keyboard.getLayoutMap%...</a>
Or just add the key commands as a hint to the simulation page. Was so keen to try it didnt really register the commands and assumed WASD.
> Pollen Robotics is a French company<p>Acquired by HuggingFace, a French-American company.<p>Acquired by Nvidia, an American company.
Page is so dense, couldn't find the specs:<p>Rockchip RK3566 processor with an AI accelerator, 1GB RAM, 32GB storage, Wi-Fi, Bluetooth, microphones, speaker, two NFC antennas and removable battery (~1 hour runtime). Onboard policy loop: 50 hertz, Dynamixel servos, weight: 800g.<p>Seven behaviors at ship: walking, sitting and standing, kicking, ground pickup, roller skating and self-recovery, can train additional behaviors locally or through Hugging Face Jobs, export to ONNX and deploy through open-source runtime. Software: SDK, a MuJoCo-based simulator, training scripts, tools for transferring policies from simulation to the physical robot.
I found a few open-source small bipedal robots on the internet. There are actually many open-source robots available:<p>[1]. <a href="https://robotics.umich.edu/news/2024/a-smaller-simpler-bipedal-robot-student-project/" rel="nofollow">https://robotics.umich.edu/news/2024/a-smaller-simpler-biped...</a><p><a href="https://github.com/daviddoo02/Legolas-an-open-source-biped" rel="nofollow">https://github.com/daviddoo02/Legolas-an-open-source-biped</a><p>[2].<a href="https://github.com/MuShibo/Micro-Wheeled_leg-Robot" rel="nofollow">https://github.com/MuShibo/Micro-Wheeled_leg-Robot</a><p>[3].<a href="https://github.com/Yuexuan9/Tinker" rel="nofollow">https://github.com/Yuexuan9/Tinker</a><p>Quadruped:<p>[1].<a href="https://github.com/stanfordroboticsclub/StanfordQuadruped" rel="nofollow">https://github.com/stanfordroboticsclub/StanfordQuadruped</a><p>[2].<a href="https://open-dynamic-robot-initiative.github.io/" rel="nofollow">https://open-dynamic-robot-initiative.github.io/</a>
Thanks for the links! There is also Upkie: <a href="https://github.com/upkie/upkie" rel="nofollow">https://github.com/upkie/upkie</a>
So which one should people buy?
Not sure many people know this - most of the robotics stuff that you see in the news is based on MujoCo (Multi-Joint dynamics with Contact) engine, that is used primarily to create simulated environments in which these robots learn the RL policies. This project is maintained by Google deepmind - <a href="https://github.com/google-deepmind/mujoco" rel="nofollow">https://github.com/google-deepmind/mujoco</a>
It's either this or <a href="https://mondorobotics.com/" rel="nofollow">https://mondorobotics.com/</a> and I'm torn. Obviously it's for my daughter and I will just be safety checking, definitely, 100%.
That's a completely different class of robot. The Beni robot is just a toy, it's just connect the app and drive it around, record videos and do some fancy tricks like flips. It is <i>not</i> meant to be a platform you program yourself.<p>The Microduck is meant to be a hacker toy. Train it yourself, write software, hack it, etc.<p>It depends what you're trying to get for your daughter. Is it something to get her into robotics? Then probably the Microduck is the way. If it's literally just a toy, then the Beni robot is better because that's literally all it is.
I would describe the Microduck as more of a toy than Beni. Autonomous cameraman is a real application that Beni performs out of the box. I think you'll struggle to get Microduck to do anything genuinely useful.
The creators of Beni seem to have promised that the platform will be open (including sim2real parts of Beni).<p>I have ordered Beni for my family. It's sturdy and more practical for careless fun.
I'm an early backer and plan on jailbreaking Beni ASAP. Seems like really, really cool hardware.<p>With Unitree bots all but banned in the US I've been looking to pivot away from that platform anyway. Took a couple months to jailbreak the Go2 platform initially, but I'm betting this will go even faster with modern agents
> Train it yourself, write software, hack it, etc.<p>it seems like the only useful capability this thing has is picking up very small items of clothing with I imagine a very low success rate.
yes to both :)
Both are expensive e waste, companies come up every 5 years with these "house robots for kids", they're used for about 5 days, I've seen the cycle many times already
I love Battletech. If the IP holders ever get their shit together and have a properly walking Vulture/Mad-Dog, I'm sold.<p>Bonus points for laser tag capability like those tabletop tanks.
The household robot business other than vacuums are a classic way to lose your shirt, sadly.<p>Many, many startups and several megacorps have burned their money. Robots are <i>so fun</i> to make, if you have that spirit in you! But alas they are very, very hard to make valuable outside of manufacturing /warehousing/weapons.
Makes sense. Unless you can disassemble/reassemble. I guess selling kits (Meccano, Technics) would be the better approach. I recall countless hours building stuff and my kids love their Magnetiles and everything that lets them build in a free-form.
nerds cannot resist despite knowing this full well. "for kids"
MKBHD covered Beni the other day and it looks like a super super fun toy. Not sure about the educational value, but I was thinking about getting one for the kid in my life (me). <a href="https://youtu.be/mfmdXPT7nAM?t=592" rel="nofollow">https://youtu.be/mfmdXPT7nAM?t=592</a> (9:52)
I got this for my kids <a href="https://www.kickstarter.com/projects/doly/doly-more-than-a-robot" rel="nofollow">https://www.kickstarter.com/projects/doly/doly-more-than-a-r...</a> earlier this year (after a much longer than expected wait on Kickstarter)...was good for a bit and had some fun but mostly gathering dust now. Occasionally will come out if friends are over.
I believe the Microduck camera footage (the ad - reel) about 1000x more than the Mondo one.
For what it’s worth the mondo team has been posting development log videos on Reddit since before they incorporated. They raised money so they now have ads with more production value, but they came from small beginnings and I do trust their product.
The mondo beni bot was featured on mkbhd recently looked to work pretty well and got a positive review, for what's that's worth [0]<p>[0] - <a href="https://youtu.be/mfmdXPT7nAM" rel="nofollow">https://youtu.be/mfmdXPT7nAM</a>
As a kick-starter project is this thing actually real? My experience with kick-starter has been that the projects are almost universally faked.
totally, it's on MKBKD video posted in other comments. I watched it last week and hence why I'm split
<i>As a kick-starter project is this thing actually real? My experience with kick-starter has been that the projects are almost universally faked.</i><p>I've only contributed to three kickstarters, and they all worked out well. But I think I'm more selective than most people, and generally don't jump on something until it's already been fully funded by other people.
Personally I wouldn't choose one that hasn't shipped. Hardware projects are notorious for delivering late, with fewer features, or not at all.<p>Microduck looks amazing, but the "Ships before Christmas 2026" is begging to be blown past. That's why I'm not pre-ordering. If it's around in the spring, let's go, but considering that HuggingFace just got acquired by Nvidia, I'm not sure where this all will go.
100%, and I go further to "don't buy hardware until it hits version 3" - version 1 is full of bugs, version 2 tries to include all the stuff they couldn't fit into the original version 1, so it's not until version 3 they've got a clear idea of what the thing should be and how to make it without bugs.<p>I have been wrong (I love my Remarkable 2), but it still holds as a principle ;)
Boni seems more like a closed project and I'd rather have something where access isn't an afterthought as indicated on the Kickstarter.<p>> Right now, we simply haven't reached any conclusions regarding developer tools, documentation, or access. We haven't done the planning or the groundwork yet. Our current plan is to look into all of this after we've shipped the first batch and things settle down a bit.
Will Beni/monodorobotics have open source software, or at least a hackable stack?
What is really interesting for me is that they're not using Nvidia's Issac, which is famously impossible to get up and running for a custom robot by individual contributors. I can't tell how good their system is, but the fact that I got it running on my laptop in under an hour, vs wasting over a week of my spare time on Issac (ref: countless reddit threads by hundreds of people also failing to train their robot on Issac) gives me confidence I can finally convert my terrible IK stuff on my robot, to use this other framework.<p>This appears to be using mjlab, which is is MuJoCo Warp plus rsl_rl, which uses a completely different design/technology heritage from Issac, so that's worth a lot to me, since I've basically sworn off Issac for robot gait training.
Oh so <i>this</i> is why Nvidia (edit: trying to buy)/bought Hugging Face, $1B for all the ai sharing and stuff, and $12B for the duck!
It doesn't walk like a duck, but Reachy Mini by HF/Pollen Robotics is a great entry-level robot. And you get to assemble it!<p>Direct links:
<a href="https://pollen-robotics.com/microduck/" rel="nofollow">https://pollen-robotics.com/microduck/</a>
<a href="https://pollen-robotics.com/reachy-mini/" rel="nofollow">https://pollen-robotics.com/reachy-mini/</a>
This actually seems awesome, just going through the video on their site made me burst out with 100 different ways in which I would tinker with it, spend time in learning different gaits, some RL or some tricks to have it jump or do a back flip<p>I can see some parallel between how arduino gave hobbyist a mini computer they can use in any way imaginable, I can see this kind of thing being used to solve unimaginable problems by hobbyist or RL computer scientist or heck any UG student with claude subscription
It's mega-cute, but I can't help feeling it's going to be used as free training for commercial robots.
Waiting for robot vacuum cleaners to come with extension ports where you can add fun robot actuators.
Getting close: <a href="https://us.roborock.com/products/roborock-saros-z70" rel="nofollow">https://us.roborock.com/products/roborock-saros-z70</a>
Old Roombas used to come with a serial port so you could use drive the motors and use it as a robot base. Then, you stick a wireless router and a webcam on top - no raspberry pi in those days.
I maintain(ed) node bindings[1] for the old Roomba din OI serial protocol. Although it's targeting the old "create" educational series, it actually works on all Roombas predating the 900 series!<p>[1] <a href="https://github.com/drzaiusx11/create-oi" rel="nofollow">https://github.com/drzaiusx11/create-oi</a>
I have already added googly eyes to mine to give it a bit of a flair. It's hilarious to watch it roam around.
I think so too
for microduck I didn't find but their older reachy_miny was Apache 2.0 and hardware design files as Creative Commons BY-SA-NC
If there weren't any privacy issues, I'd love to have one just as a toy.
My wife would love one of these.<p>She's still bitter we didn't get the Sony dog a decade ago.
Surprised with the price, a similar form factor that I know of is even more expensive <a href="https://shop.xgorobot.com/products/xgo-rider-world-s-first-desktop-wheel-legged-robot-with-ai" rel="nofollow">https://shop.xgorobot.com/products/xgo-rider-world-s-first-d...</a><p>(Chinese but since it's esp32 and raspberry pi it is possible to tinker with it)<p>I wonder what's the catch? Cheap IMU/motors?
this looks 100x better than Casio's <a href="https://www.casio.com/us/moflin/" rel="nofollow">https://www.casio.com/us/moflin/</a>
It's a different target market I guess. I welcome innovation like this - it's possibly tackling the loneliness epidemic in however small ways.
The reason some people fine Moflin terriying is due to differences between the Western and Eastern face reading.<p>In Western cultures, "mouth" is how one perceives emotions, while in the Eastern cultures, it's the eyes.<p>e.g.<p>You see Disney characters got all big mouths, while say, Japanese ones like in anime or Hello Kitty has small or no mouth but BIG eyes.<p>Same for Microduck. It's got gigantic mouth, while Moflin has none.<p>---<p>As a personal preference, I like anime/manga characters but not fond of disney characters nor other Pixar characters. they look terrible to me.
This "with emotions like a living creature" should just not be allowed.
Its not even close to being the same product.
“I have no mouth but I must scream” is a Harlan Ellison story about an AI that tortures humans for revenge: <a href="https://en.wikipedia.org/wiki/I_Have_No_Mouth,_and_I_Must_Scream" rel="nofollow">https://en.wikipedia.org/wiki/I_Have_No_Mouth,_and_I_Must_Sc...</a><p>I suppose Moflin is preemptive revenge against that scenario. “How do you like them apples, future torturing AI?”
Black Mirror vibes
I find it terrifying
Finally an AI slop I can keep as a pet. I hate this dystopia.
I still prefer (<a href="https://roboracer.ai/" rel="nofollow">https://roboracer.ai/</a>) 1:10 racing platform well known in academic circles as RoboRacer, F1TENTH, f1tenth, or F1/10.
This is a dust magnet after the first few days of excitement. An expensive dust magent.
wonder how it compares to <a href="https://github.com/apirrone/Open_Duck_Mini" rel="nofollow">https://github.com/apirrone/Open_Duck_Mini</a> (besides being a lot easier to put together)
He works at Pollen, so that was the inspiration for it pre-product.
That explains why it reminded me of Disney<p><a href="https://www.youtube.com/watch?v=-cfIm06tcfA" rel="nofollow">https://www.youtube.com/watch?v=-cfIm06tcfA</a>
This deserves way more upvotes
i wonder if one day we will have pets like these instead of real animals at home..
That page is… a lot, on mobile.<p>Here’s the tech specs page, which is also busy: <a href="https://pollen-robotics.com/microduck/press-kit/" rel="nofollow">https://pollen-robotics.com/microduck/press-kit/</a>
I've tried a few small robot kits and every single one fails the moment it reaches even moderately deep carpet. Either the size of motion doesn't clear the carpet or the motors aren't strong enough to deal with it. The living room is a small robots sand trap. Couldn't help but notice precious little carpet in any of the promo material. What's the point of a robot buddy if you cant play with it in the living room?
Interesting that they're using Dynamixel instead of Feetech for the servos. More expensive but better quality. I'm surprised it still comes in under $400.
Basic great usecase (not just fun things): IF you can control it remote, you can check your flat if you are gone for a little bit longer.
Yeah, totally, it could even scale the stairs if needed. How about battery life though, can it go to sleep then be woken up on demand?
Or can it dock itself on a charger?<p>It appears to have a battery pack so a docking station is unlikely but hopefully can design and open source something.
The easiest route is probably to have it sit with its back to a Qi charger pad, with the coils in a sort of cape over the battery. Not much added weight for the coils, and quite a neat little intro project to get it to align itself and sit correctly.
I think magnetically aligned physical pin connections are better. Charge faster, generate less heat, and better for the battery. Wireless charging is cool, but not sure why it would need to be wireless in this case.
climbing stairs was my first question. But looking at its size, I dont think it will be able to
How much does it cost to train a new behaviour?
Hmm first I thought it’s just $400 but with shipping 30 and duties 80 it’s more like $510
Is there an app for Microduck, or is it currently controlled/programmed directly through the SDK? I’d be interested to know if there’s a mobile app for basic control and setup.
Does it work locally? I don't want to have a camera robot in child's room
Does this work without an internet connection? It was unclear from the website.
All AI images, a robot with no arms. Please improve on both. I will happily train one to pick things up and away with and after kids.
Just use the beak?
I would like it to pick up shoes, clothes etc. Not sure the beak would work, it would block the camera and prevent the bot from walking forward. Presumably, it could walk backwards and drag clothes, but anything rigid might block the camera.
Two things that I always contemplate on whether to post this: 1) this can be a phone. 2) almost all of these except Sony ones got joint geometries completely "wrong" to be cutemaxxed toys.<p>I'm not a Sony employee or anything, but theirs is whole next level even just sitting unpowered, compared to even some of other Japanese bots. Everyone making these cutebots should have one of any of Sony bots to study, even just as a dead kinetic sculpture.
This looks really cool! The cuteness of the demo alone makes me want one. Ideally I would also love for it to have a real use case in my home but right now I really cant think of one.
What is the battery life?
I couldn’t find hardware open source. If only I could 3d print and build it myself, that would be hell of a project.
that's so cute how it roller skates
Did anyone get programming in the simulator to work?<p>And why don't they show the video feed as seen by the camera?
Perfect for kids; especially great that it doesn't come with a display by default.
The Sony Aibo we never got
i wonder if this is the reason why those little dynamixel motors have been out of stock for months. (i use them in my robots at tapster.)
Cute, and quite something if the sim-to-real pipeline is as smooth as we all might hope.
neat! since its written in rust, why not use <a href="https://github.com/eclipse-iceoryx/iceoryx2" rel="nofollow">https://github.com/eclipse-iceoryx/iceoryx2</a> for ipc?
It looks cool no doubt, but i would be concerned about privacy.
Well all of the operations are local and on-board, so unless you explicitly send your data somewhere, privacy shouldn't be a concern.
If it’s anything like Reachy, can run it fully offline inc inference
Why not foster a dog instead?<p>I have enough things to take care of in my life through training and reinforcement learning, but if you don’t - this might be for you! :)
Robots don’t die if you forget to feed them, and don’t get depressed if you don’t get around to taking them for walks. They also don’t need to be trained not to pee or poop in the house, not to bark at the mailman, etc.
Help! I'm being assaulted by some kind of animated GIF and it makes my browser completely unresponsive. I had to kill that tab after clicking the link.<p>Vastly overdoing the ad part and making the user curse you in the dirtiest gutter language is the way to go. pollen-robotics.com has been etched in my memory forever.
I like the big OPEN SOURCE words all over the place, but is the case and full part list open anywhere? I honestly couldnt spot them on github.
I think in the future we'll have robot pets and look back in horror at how we enslaved animals out of their natural habitats and normalized (even glorified) it.
What about the animals that have been domesticated to be pets? It's arguable that their native habitat is the home at this point. Although, I do hope we stop capturing the animals which aren't domesticated (most "exotic" pets).
I agree with the horror of pulling animals out of their natural habitat, but if you are using this as a blanket statement towards all living animals then you should read up on the history of the domestication of wolves (dogs). It was born of a beneficial relationship to both humans and wolves and i personally find my relationship with my dogs to be extremely fulfilling and i believe my dogs do as well.<p>I have no interest in a relationship with a robot.
I know the history. We bred them to be our pets and normalized this relationship. Your pet might even love his life. But we can do the same with robot AIs, and it will be a better relationship. Your robot can talk to you. It can call 911 if you’re in trouble instead of just barking.
I'd argue that emotional co-regulation is born out of biological origins. Unless we are making synth, it would be a long time to match the relationship with a living creature.
> it will be a better relationship.<p>There are many many people for whom that will never be close to the same, let alone better. An immortal sack of wires that is passed down through generations is interesting and will appeal to many, but it’s not automatically a “better” relationship than a living creature.<p>> Your robot can talk to you.<p>If you want a conversation, may I suggest another person instead of a pet?<p>> It can call 911 if you’re in trouble instead of just barking.<p>If you want a way to automatically call 911, how about a smartwatch that tracks your vitals and does just that?<p>Anyway, stories of pets calling 911 are a dime a dozen.<p><a href="https://blog.animalreskue.com/guide-dog-saves-blind-owner-by-dialing-911-in-emergency/" rel="nofollow">https://blog.animalreskue.com/guide-dog-saves-blind-owner-by...</a>
> I have no interest in a relationship with a robot.<p>I think I could, if it meant I could keep the experience of having a pet.<p>I've had cats going back to my twenties. I dearly love my fifteen y/o cat. She's my last cat, though. As I approach fifty I've grown tired of hefting bags of litter and food, stooping to clean up after her, taking her to the vet, and administering her medication.<p>When she's finally dead (which is hopefully not for a good long time) I'm not going to get another. This makes me really sad. I'll miss having a cat around. As I age, though, I don't want the encumbrance of taking care of a pet, nor do I want to cause hardship to family if I suddenly become unable to care for a pet (dying, being hospitalized, living arrangement changes and owning a pet isn't allowed, etc).<p>If there was a robot alternative I'd jump on it. I think my brain would adjust fine to a convincingly-executed robotic cat. Our brains instinctively ascribe agency to objects moving in non-inertial frames, for example. Think about all the people who name their Roomba, install googly eyes on it, etc. People easily accept inanimate objects that behave like living things, to the point of developing feelings for them.<p>When my cat is gone I hope to get the opportunity to choose a "relationship" with a convincing robotic cat versus not having one at all.<p>I wouldn't expect everyone to feel this way. I certainly don't want to legislate away pet ownership.<p>I bet that, if good robotic pets become available, we'll see a significant number of people favoring them over living pets for convenience, long-term cost, freedom from anxiety about the pet's health and eventual death, and the opportunity for companionship in living arrangements where pets aren't allowed.<p>I've said, for years, that I think there's hundreds of billions of dollars for the company who can make really good robotic pets. If somebody can get the "soft robotics" down and build / train good animal behavior models I think they'll be able to print money.
Interesting how all of the replies so far to your comment assume we’d just release the existing animals into the wild instead of just not breeding more.
> instead of just not breeding more<p>As one might guess, the "just" there is doing a lot of work.<p>Common pets reproduce just fine without our intervention - in practice it requires costly maintenance programs just to keep their population under control (not to mention the massive and ongoing eugenics program required to produce only the desirable breeds/attributes).<p>If your neighbourhood isn't overrun with stray cats and dogs, that's because someone is funding a spay/neuter program, and someone is funding animal control to round up (and ultimately euthanise) the rest.<p>All animal husbandry systems have to be maintained via regular culling, and "eliminating" pets would require orders of magnitude more killing
I always assumed the "enslaved animal-free" future would be something that came on gradually, likely motivated by economics (i.e. lab-grown meat becoming cheaper and higher quality than farmed, robotic pets being cheaper and more "trouble-free", etc).<p>I never felt like anybody seriously thought we'd release domestic animals into the wild to fend for themselves-- that's ludicrous.
yup!
Spoiler this will end with people having robot sheep, cows, horses, ostriches, toads, and more exotic pets (Do Androids Dream of Electric Sheep?)
Release the dogs and cats! You are free to roam! Ill think i need to buy dogg pound stock!
> look back in horror at how we enslaved animals out of their natural habitats<p>Somehow, vegan-inclined folks never seem to factor in the mass-genocide of domestic breeds that is necessary to achieve their particular utopia. We're talking 1.5 billion pets, 5 billion livestock, and 28 billion poultry - none of which are remotely able to survive on their own in the wild.
Wait... do you really think that if everyone goes vegan these animals will get killed, but if everyone eats them they won't?<p>You are aware that all of these livestock animals didn't exist a few months to years ago? And that we go through these animals every couple months-years?<p>Everyone going vegan would just mean we'd stop repleneshing them.
> would just mean we'd stop replenishing them<p>Keep in mind that we already have to perform widespread culling of <i>wild</i> animals in this category. Having eliminated most of the apex predators, we're on the hook to keep populations of wild horses/cattle/deer/etc in check.<p>If we cease to use domestic animals, they end up in the same boat - we're no longer paying to feed and house them, and if they are capable of breeding in the wild, they will breed unchecked. Leading us to cull them, ad infinitum
You don't get it, do you?<p>The "genocide" that you describe is happening constantly. None of the chicken we have today will be alive in a couple months. We kill them to eat them.<p>If we cease to "use" them, we just keep that "genocide" going for a year, but we just stop breeding new ones. The result is no more animals after a few months/years. And you didn't kill any more than you would have anyways.<p>If you have a sink that is half full because the inflowing water and the outflowing water are in quilibrium, you drain it by turning off the tap (breeding).
> we just keep that "genocide" going for a year, but we just stop breeding new ones<p>"Carry on for a year and then it's all good" is not one of the available choices.<p>Your choices are (a) wipe out the species entirely, or (b) allow them to continue breeding on their own, and commit to culling them for the rest of eternity.
I detest the vegan movement. I'm not an animal lover. Pets are unsanitary nuisances. Robots are better. We don't need to commit a genocide against domestic pets for the transition. Just breed less.
Reminds me of Disney's robots<p><a href="https://www.youtube.com/watch?v=-cfIm06tcfA" rel="nofollow">https://www.youtube.com/watch?v=-cfIm06tcfA</a>
video was pure non-stop static
I genuinely could not tell if this was a parody/satire or not, I think because the aesthetic reminds me of how a product like this would be presented in a horror movie or something
what a nice platform, i would love this to patrole my house and have some fun.
AI is coming for pet market too.
Made in China with a 500% markup. No thanks, I will wait for the Chinese version for less than $100.
Trying to open the website turned my gaming laptop into a 747.<p>This has got to stop.
I'm wanna train some to chase after turtles.
Now that Nvidia owns huggingface, I fear their days being able to support open source products are over.
.... Minus that Nvidia keeps contributing to the open ecosystem with nemotron, among countless other open contributions.
i don't think they do. i think they are trying still to get approval to acquire huggingface.
thought this said something else at first
I hope it’s not built on ROS or rely on it in any way!<p>Also kudos for bringing the joy of robotics back, since now most companies are riding the “defense” bandwagon and all robot companies I know suddenly are defense companies and visiting their sites is like the most dystopian thing ever, making it harder to find contract/jobs for people who want to make robotics for good not killing machines.
Its not <a href="https://github.com/pollen-robotics/microduck" rel="nofollow">https://github.com/pollen-robotics/microduck</a>
What would be so bad about relying on ROS in any way?
One horrifying facts I've read about it is that ROS1 is completely non-realtime and non-deterministic, so much so that its ROSBAG data logs aren't time or sequence accurate. So you can collect the sensor inputs and simulate programmatic behavior, but it's acucrate only if you were lucky. And everyone has to either use it or devote massive amount of resource recreating it right way because there's just immense amount of useful packages available for ROS.
[dead]
[dead]
That is sick
Ugh, PAL only? I'll wait for the NTSC version.
It's not worth it if you can't have a swarm of them that debate philosophy in their off time.
I'm not giving it that freedom. The limit of my interaction with it will be<p>It: "What is my purpose?"<p>Me: "You pass butter."<p>It: "Oh My God"
Like the Tachikomas in Ghost in the Shell franchise?
Who says you can’t have a swarm