Live data from Hacker News

Calvin and Hobbes Search Engine

michaelyingling.com

151–160 of 170 posts

Re: Calvin and Hobbes Search Engine

#151
post #150

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.

How about just a web front-end that lets people upload other comics?

Re: Calvin and Hobbes Search Engine

#152
post #135

Earlier 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…

Thanks. Yes, I definitely agree that my daughter will likewise not notice what I didn’t notice. And I continue to read it a lot because we both love it.

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

#153
post #19

Earlier 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…

Sidebar: Maybe she says she likes them because she likes how you and your wife are when you’re reading them

Re: Calvin and Hobbes Search Engine

#154
post #124

I'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=$(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

#155
post #124

I'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=$…

And you have ImageMagick also installed?

Re: Calvin and Hobbes Search Engine

#156
post #150

Earlier 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?

Yeah, why not. I didn't give it much thought. This script makes some assumptions about the site structure, that's why it's able to be so short. Of course if you were able to get the image links without grepping, then it would be even easier.

Re: Calvin and Hobbes Search Engine

#157
post #38

Earlier 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…

Keeping it real with Biological kids is important. Adopted kids basically dont feel loved no matter how much you do or say. Although one day it will start to click.

Sure it varied a lot. But I learned quickly that I had to really certain kinds of jokes.

Re: Calvin and Hobbes Search Engine

#158

Looks 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...

haha nice one

Re: Calvin and Hobbes Search Engine

#159
post #155

Earlier 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?

I do

Re: Calvin and Hobbes Search Engine

#160
post #155

Earlier quoted context omitted.

And you have ImageMagick also installed?

I do

Well, it should be pretty straightforward to first check whether the loop is working at all and then step-by-step echo the variables for example to see what's missing.
Post reply on HN