Earlier quoted context omitted.
That's awesome. Seriously make this a company -see how it goes :-)
Thank you. You're most kind. I have many business ideas already, but I'll think about it.
Calvin and Hobbes Search Engine
151–160 of 170 posts
Re: Calvin and Hobbes Search Engine
#152Earlier quoted context omitted.
I get the sense that Watterson is sharing his own childhood relationships with adults and author figures. And by and large they aren’t happy, healthy relationships. His parents regularly debate whose choice it was to have a kid, and despite the exceptional strip shared by another reply to me, for the most part his dad seems happier working than being with Calvin. I definitely didn’t notice or care about this dynamic…
Watterson stated many times that he was nothing like Calvin and his parents were nothing like that either. He just built the characters and then progressively explored their relationships as a way of reflecting on the pressures of modern society. It just so happened that he was exceedingly good at building realistic personalities. Personally, C&H probably kept me alive as a teenager. When I was questioning the point…
In the Anniversary collection, Watterson notes things like “this is basically an exact quote from my dad.” (For example, in the strip where good dad says they should put the Christmas tree in the garage and not decorate it.) So I don’t think they are totally divorced from each other.
Re: Calvin and Hobbes Search Engine
#153Earlier quoted context omitted.
I grew up on Calvin and Hobbes, but in retrospect it's not terribly surprising Bill Watterson eventually decided to fuck off into the woods.
My wife and I aren’t having the greatest time reading them to our toddler (she’s probably too young for them, but she says she really likes them). Calvin’s parents don’t like him! I don’t like exposing her to parents who are resentful toward their kid. Also, shortly after he retired Bill Watterson ate at my dad’s restaurant. My dad recognized his name on the check, and told him how much of a fan I was. Bill then drew…
Re: Calvin and Hobbes Search Engine
#154I'm studying Spanish, so I made a little script that fetches Calvin & hobbes cartoons in both Spanish and English and then converts each strip into bilingual strip with ImageMagick. It works well enough (>99%). #!/bin/bash for i in {1..1000}; do x=$(date +'%Y/%m/%d' -d "$i days ago"); z=$(date +'%Y-%m-%d' -d "$i days ago"); wget https://www.gocomics.com/calvinandhobbesespanol/$x -O $z-es; wget https://www.gocomics.co…
perl -wnle '/(.{0}https://assets.amuniversal.com.{0,33})/ and print $1'
I had to replace wget with curl: curl -s https://www.gocomics.com/calvinandhobbesespanol/$x -o $z-es;
Then I realized I need gnu date, which had to come as part of coreutils: brew install coreutils
So date becomes gdate for i in {1..1000}; do x=$(gdate +'%Y/%m/%d' -d "$i days ago");
z=$(gdate +'%Y-%m-%d' -d "$i days ago");
Hope I din't break other stuff with that.Now it still doesn't work, but I'm giving up, hopefully I saved a little time for somebody...
Re: Calvin and Hobbes Search Engine
#155I'm studying Spanish, so I made a little script that fetches Calvin & hobbes cartoons in both Spanish and English and then converts each strip into bilingual strip with ImageMagick. It works well enough (>99%). #!/bin/bash for i in {1..1000}; do x=$(date +'%Y/%m/%d' -d "$i days ago"); z=$(date +'%Y-%m-%d' -d "$i days ago"); wget https://www.gocomics.com/calvinandhobbesespanol/$x -O $z-es; wget https://www.gocomics.co…
Tried do this on a mac. I had to replace gnu grep with perl: perl -wnle '/(.{0}https://assets.amuniversal.com.{0,33})/ and print $1' I had to replace wget with curl: curl -s https://www.gocomics.com/calvinandhobbesespanol/$x -o $z-es; Then I realized I need gnu date, which had to come as part of coreutils: brew install coreutils So date becomes gdate for i in {1..1000}; do x=$(gdate +'%Y/%m/%d' -d "$i days ago"); z=$…
Re: Calvin and Hobbes Search Engine
#156Earlier quoted context omitted.
Thank you. You're most kind. I have many business ideas already, but I'll think about it.
How about just a web front-end that lets people upload other comics?
Re: Calvin and Hobbes Search Engine
#157Earlier quoted context omitted.
My wife and I aren’t having the greatest time reading them to our toddler (she’s probably too young for them, but she says she really likes them). Calvin’s parents don’t like him! I don’t like exposing her to parents who are resentful toward their kid. Also, shortly after he retired Bill Watterson ate at my dad’s restaurant. My dad recognized his name on the check, and told him how much of a fan I was. Bill then drew…
There are plenty of C&H strips that show his parents love him. This one comes to mind, but there are many others: https://i.redd.it/wgwm23u9k4sx.png Kids are not stupid and you don't need to insulate them from everything that isn't 100% happy, fluffy and wonderful. As a former kid who had loving parents and loved C&H, the only message I remember taking from the strip in this regard was that parents are people too and…
Sure it varied a lot. But I learned quickly that I had to really certain kinds of jokes.
Re: Calvin and Hobbes Search Engine
#158Looks like there's no connection pooling Warning: mysql_connect(): User yingling_sandbox already has more than 'max_user_connections' active connections in /home/content/41/5598741/html/random/calvin_and_hobbes/search.php on line 10 Unable to connect to database! Please try again later.
https://i.pinimg.com/originals/04/da/65/04da65848e7f2a1ff299...
Re: Calvin and Hobbes Search Engine
#159Earlier quoted context omitted.
Tried do this on a mac. I had to replace gnu grep with perl: perl -wnle '/(.{0}https://assets.amuniversal.com.{0,33})/ and print $1' I had to replace wget with curl: curl -s https://www.gocomics.com/calvinandhobbesespanol/$x -o $z-es; Then I realized I need gnu date, which had to come as part of coreutils: brew install coreutils So date becomes gdate for i in {1..1000}; do x=$(gdate +'%Y/%m/%d' -d "$i days ago"); z=$…
And you have ImageMagick also installed?