Earlier quoted context omitted.
My cat doesn't care if the food is cold. In fact, he will eat pretty much anything. He loves to eat the salad we make every day for dinner, and its not just the avocado, the other day he ate some tomato that I dropped on the floor by mistake. If your cat doesn't like cold food, perhaps you are feeding him too much?
More likely: the cats are just different. I've had cats that were super picky eaters, and ones that will eat almost anything.
Automated Cat feeder powered by Node.js
61–70 of 71 posts
Re: Automated Cat feeder powered by Node.js
#62Earlier quoted context omitted.
I mean this in the nicest way possible, but is this satire? I actually can't tell. Between go rewrite, criticizing the language choice, and wanting to just stick a tube in your mouth and be automatically fed soylent this almost seems generated by a markov chain. If sincere I apologize.
I'm mostly impressed that this kind of Poe's Law material is the only comment on a 1400 day old account.
Re: Automated Cat feeder powered by Node.js
#63I backed a kickstarter for something like this, plus a wifi camera and laser pointer. It hasn't shipped yet, but does look like it might actually deliver (which is something for hardward KS). http://kittyo.com/
Re: Automated Cat feeder powered by Node.js
#64Earlier quoted context omitted.
Holy batman that scroll hijacking.
I have to ask. Why do people dislike this? The browser scroll bar is often ugly as sin. Also its useful when having more than one area that needs scrolling capability without having that ugly default scrollbar junk up the middle of the screen in said application.
Re: Automated Cat feeder powered by Node.js
#65Earlier quoted context omitted.
I'm mostly impressed that this kind of Poe's Law material is the only comment on a 1400 day old account.
Well, it's not my only comment, I think that older ones only show up to me though past a certain point and I haven't commented in a while. And surely I'm not too crazy to think he could be serious, I mean there's so much on here that talks about the same thing, maybe just not all together, and I hope I'm not the victim of some long running hyper-trendy startup joke.
Re: Automated Cat feeder powered by Node.js
#66I never understood the point of automatic feeders for cats - you lose out on that association your cat makes with you feeding them so your cat doesn't necessarily like you as much.
Re: Automated Cat feeder powered by Node.js
#67Earlier quoted context omitted.
I'm mostly impressed that this kind of Poe's Law material is the only comment on a 1400 day old account.
Well, it's not my only comment, I think that older ones only show up to me though past a certain point and I haven't commented in a while. And surely I'm not too crazy to think he could be serious, I mean there's so much on here that talks about the same thing, maybe just not all together, and I hope I'm not the victim of some long running hyper-trendy startup joke.
Re: Automated Cat feeder powered by Node.js
#68Earlier quoted context omitted.
> Sorry to be boring but a simple timer seems more sensible. Not all projects are about being sensible. This is "hacker" News after all. > And kitty needs water. Water and food have different needs; an automatic water fountain like http://www.amazon.com/Drinkwell-Platinum-Pet-Fountain-168oz/... keeps a pool of water fresh at all times, without needing to dispense a particular measure of it.
> Not all projects are about being sensible. This is "hacker" News after all. Problem is: people in the node.js community have a pattern of going from the "weekend hack" to the "production" stage in weeks. Code maturity has no meaning to some.
Re: Automated Cat feeder powered by Node.js
#69I never understood the point of automatic feeders for cats - you lose out on that association your cat makes with you feeding them so your cat doesn't necessarily like you as much.
I guess some people just have crappy cats.
Re: Automated Cat feeder powered by Node.js
#70I built one of these a couple of months ago using a rPI and a simple relay to control the 12v feed to one of these: http://www.super-feeder.com/csfmodel.html Literally the code to feed them is a crontab: 0 5,11,17 * * * /home/pi/bin/feed - > /dev/null 2>&1 Using this script in /home/pi/bin/feed: #!/bin/bash export PATH=$HOME/bin:$PATH ( source gpio echo "Using pin 12" gpio mode 12 out gpio mode 12 out gpio write 12 0…
I'm looking to build something similar. What did you use as a hopper?