Moving (filler art) - Wednesday 30 August 2006

Discussion of any of the archived O&M comics, and potential new ones should they ever come about.

Moderator:Æron

CodeCat
Posts:3294
Joined:Sun May 21, 2006 8:58 pm
Location:Eindhoven, Netherlands
Contact:

Postby CodeCat » Mon Sep 04, 2006 10:05 am

Well, if you look at the pic I posted a certain wauy, it looks like DCS is plotting something. Maybe an easten seaboard takeover, but I htink at that time DCS devised a way to create the bastard love child of Paul Wellstone and FDR.
Yeah he looks a bit like Blofeld! :lol:

http://en.wikipedia.org/wiki/Blofeld
Furries? Are they the nutters that pretend to be animals and draw humans that look like animals? Christ, I sink my head into my paws... -Rooster

User avatar
Steve the Pocket
Posts:2271
Joined:Wed May 19, 2004 10:04 pm

Postby Steve the Pocket » Mon Sep 04, 2006 6:03 pm

http://www.ozyandmillie.org/photos/me-james2-small.jpg

I would sugest DCS consider updating the O&M site, and maybe, even go back and change the watermark on older comics, so that they say D.C. Simpson, instead of David Craig Simpson or whatever.
I know she's planning to sooner or later; she went to the trouble of redrawing the pictures for the cast page not too long ago. As for changing that watermark, though, yikes. That's a buttload of work right there. I suspect it was hard enough redoing all their pages for the site redesign back in '04, although I'm betting that was done with an auto page generation thingy.

User avatar
Tavis
Moderator (retired)
Posts:2866
Joined:Mon Oct 13, 2003 5:10 pm
Location:Pasadena, TX
Contact:

Postby Tavis » Tue Sep 05, 2006 12:06 am

It was. The ZIP archives present enough data for such a generation scheme to produce the individual pages, so it'd only require one file change for the dailies, and maybe another for the monthly and yearly archive pages.

User avatar
Steve the Pocket
Posts:2271
Joined:Wed May 19, 2004 10:04 pm

Postby Steve the Pocket » Tue Sep 05, 2006 12:56 pm

Is there, by chance, an easy way to implement such a thing? Because I'm planning to redesign my site too and rewriting even 75 pages is too much work if I can help it.

User avatar
baloki
Staff
Posts:1238
Joined:Thu Jul 21, 2005 1:20 pm
Location:UK
Contact:

Postby baloki » Tue Sep 05, 2006 1:22 pm

Is there, by chance, an easy way to implement such a thing? Because I'm planning to redesign my site too and rewriting even 75 pages is too much work if I can help it.
On webpages? Just use a php include or server side include to include the copywrite from a .txt file?
Image

Do you believe in Lady Luck Now? Yeah Lady Bad Luck!

Richard K Niner
Posts:4297
Joined:Wed Oct 20, 2004 5:08 pm
Location:On hiatus
Contact:

Postby Richard K Niner » Tue Sep 05, 2006 1:23 pm

Is there, by chance, an easy way to implement such a thing? Because I'm planning to redesign my site too and rewriting even 75 pages is too much work if I can help it.
Well, installing a local copy of PHP, writing up a template of how you want the new pages, and telling it to grab the current target and inputs from $argv or $argc, so you can run it from the command line (see http://www.php.net/manual/en/features.commandline.php).
If you're using a *NIX OS or Cygwin (a *NIX emulator for Windows), you can then write up a script for Bash (or, if you don't have those around, another PHP script) to iterate over each target file/set of inputs, and execute the first script, passing them as command line arguments.

Yeah, it may sound like a lot of work, but in some cases, it's easier than rewriting 75 pages of stuff.
<center>Image
K9U | Dog House | Av rotation</center>

The MAZZTer
Posts:1150
Joined:Mon Mar 27, 2006 2:31 am
Location:Destiny, several billion light years from Earth. Also known as Vancouver.
Contact:

Postby The MAZZTer » Tue Sep 05, 2006 5:14 pm

I prefer dynamically compiling a page based on a requested URL. Then you get all the pure data (dates, comic names, image urls) all together in one database, and you have exactly ONE HTML page for a comic strip.

http://nes.sorrowind.net/comic.php

An example of a script I made for just that purpose. However it is not my best coding work (if I did it now I'd completely redo it using classes and HTML templates, I eventually plan to someday) but it should be sufficient enough to prove that if I could finish a PHP comic script, then anyone can. :)

Richard K Niner
Posts:4297
Joined:Wed Oct 20, 2004 5:08 pm
Location:On hiatus
Contact:

Postby Richard K Niner » Tue Sep 05, 2006 8:10 pm

I prefer dynamically compiling a page based on a requested URL.
Of course, the catch is, you need a host that supports it. And last I checked, Octan's host didn't. Hence, I'm suggesting a workaround.
<center>Image
K9U | Dog House | Av rotation</center>

User avatar
Steve the Pocket
Posts:2271
Joined:Wed May 19, 2004 10:04 pm

Postby Steve the Pocket » Wed Sep 06, 2006 11:44 am

If you mean a single PHP page whose parameters decide which comic, date, and title to display, then yes my host should be able to handle that. Creating a "database" might be a bit much though; more likely making an array and then making a few changes to the code every week seems a more viable solution in my case. Okay, so every date, image URL, and title would have to be contained within the same PHP file, but it would still be easier than learning SQL.

Richard K Niner
Posts:4297
Joined:Wed Oct 20, 2004 5:08 pm
Location:On hiatus
Contact:

Postby Richard K Niner » Wed Sep 06, 2006 1:25 pm

Okay, so every date, image URL, and title would have to be contained within the same PHP file, but it would still be easier than learning SQL.
C'mon, SQL's not that hard.
<center>Image
K9U | Dog House | Av rotation</center>

User avatar
Tavis
Moderator (retired)
Posts:2866
Joined:Mon Oct 13, 2003 5:10 pm
Location:Pasadena, TX
Contact:

Postby Tavis » Wed Sep 06, 2006 3:06 pm

I prefer dynamically compiling a page based on a requested URL.
Of course, the catch is, you need a host that supports it. And last I checked, Octan's host didn't. Hence, I'm suggesting a workaround.
Not necessarily. I used to play with Javascript enough to parse the given URL and write stuff accordingly. One product of that was the image viewer page I threw on Geocities, and another was used to write form-submitted text in a code language. I think Javascript is probably too depreciated to continue using it for very long, especially when you have better tools available, but it has been useful.

Richard K Niner
Posts:4297
Joined:Wed Oct 20, 2004 5:08 pm
Location:On hiatus
Contact:

Postby Richard K Niner » Wed Sep 06, 2006 4:14 pm

I prefer dynamically compiling a page based on a requested URL.
Of course, the catch is, you need a host that supports it. And last I checked, Octan's host didn't. Hence, I'm suggesting a workaround.
Not necessarily. I used to play with Javascript enough to parse the given URL and write stuff accordingly. One product of that was the image viewer page I threw on Geocities, and another was used to write form-submitted text in a code language. I think Javascript is probably too depreciated to continue using it for very long, especially when you have better tools available, but it has been useful.
Oh, JavaScript is available on all modern browsers. It's problems, though, are as follows:
  • Lower webpage accessibility, due to the requirement of an ECMAScript engine
  • Compatibility issues, due to the different ways you have to do things in different browsers (though it's improving)
  • ECMAScript is a weak language, due to the complete lack of type control, the fact that error handling makes some older browsers choke, the lack of a consistent DOM for more advanced stuff (and the performance hit from using the more generalized DOM 0), and the lack of any standardized way to analyze the capabilities of the web browser.
<center>Image
K9U | Dog House | Av rotation</center>

User avatar
Gizensha
Posts:1753
Joined:Sun Feb 22, 2004 12:27 am
Location:Blackpool, UK
Contact:

Postby Gizensha » Wed Sep 06, 2006 4:48 pm

I prefer dynamically compiling a page based on a requested URL.
Of course, the catch is, you need a host that supports it. And last I checked, Octan's host didn't. Hence, I'm suggesting a workaround.
Not necessarily. I used to play with Javascript enough to parse the given URL and write stuff accordingly. One product of that was the image viewer page I threw on Geocities, and another was used to write form-submitted text in a code language. I think Javascript is probably too depreciated to continue using it for very long, especially when you have better tools available, but it has been useful.
Oh, JavaScript is available on all modern browsers. It's problems, though, are as follows:
  • Lower webpage accessibility, due to the requirement of an ECMAScript engine
  • Compatibility issues, due to the different ways you have to do things in different browsers (though it's improving)
  • ECMAScript is a weak language, due to the complete lack of type control, the fact that error handling makes some older browsers choke, the lack of a consistent DOM for more advanced stuff (and the performance hit from using the more generalized DOM 0), and the lack of any standardized way to analyze the capabilities of the web browser.
Not to mention any browser worth even considering has a way of disabling javascript...
SirQuirkyK: GSNN argued that Unanonemous is to sociologists what DoND is to statisticians
Gizensha Fox: ...Porn?
Livejournal, Greatestjournal

The MAZZTer
Posts:1150
Joined:Mon Mar 27, 2006 2:31 am
Location:Destiny, several billion light years from Earth. Also known as Vancouver.
Contact:

Postby The MAZZTer » Wed Sep 06, 2006 4:52 pm

Eww JavaScript is NOT for that. IMO it should only be used for doing stuff that CAN'T be done server-side and NEEDS to be done client-side. Even then I would expect it to not execute and the website should still be 100% functional (the JavaScript would add extra functionality, but it would be hidden without the JavaScript).

For generating dynamic pages I was thinking about PHP myself. Best documented language in existence. If you're not sure how to do something related to one of the PHP functions, you can look up the function in the docs and it's an EXTREMELY likely chance there's user contributed notes that will give you what you need.

User avatar
Tavis
Moderator (retired)
Posts:2866
Joined:Mon Oct 13, 2003 5:10 pm
Location:Pasadena, TX
Contact:

Postby Tavis » Wed Sep 06, 2006 5:56 pm

Before you go turning up your nose in your PHP-waving indignation and twisting my words, I am not saying Javascript is an ideal solution to making dynamically available content, I said it was possible. If you can get the server side to handle a task while keeping the implementation simple and hidden from the client, I would encourage it, but when that option is not available, you can still attempt something that will work in the meantime.


Return to “O&M Strips”

Who is online

Users browsing this forum: No registered users and 5 guests