Welcome back and "Change the Forum Style?"

Want to just shoot the breeze? Forum 42 is the place!

Moderator: Moderators

benheck
Site Admin
Posts: 1887
Joined: Wed Dec 31, 1969 6:00 pm
Location: Wisconsin - Land of Beer and Cheese and Beer
Contact:

Post by benheck »

I like Hatrix design, though the larger text things need to be smaller.

I dunno, you guys want to do a competition, and I pick the winner?

-Ben
Image
EnterTheHatrix
Portablizer
Posts: 482
Joined: Thu Jul 27, 2006 2:15 am
Location: UK
Contact:

Post by EnterTheHatrix »

Image

I added a transparent N64 temporarily until I find some real wireframe consoles, since it looks a little wireframe anyway even though it's not.

I removed the white seperators from the natural theme and made the category text stand out a bit more with a highlight and a seperator.

Pros and cons please... And can anyone find any wireframe consoles? Any will do...
gamemasterAS wrote:Solder is also bad for you, says on the spindal that its known to cause cancer in the state of California.
vskid wrote:I'm safe, I live in Utah. :P
Rekarp
Portablizer Extraordinaire
Posts: 2163
Joined: Thu Dec 28, 2006 1:52 am
PSN Username: Lnghrn_
Steam ID: rekarp
Location: Austin, Tx
Contact:

Post by Rekarp »

I can make some if you want me to. What do you want? NES? SNES? Atari? Also what color wireframe? I could do a blue wireframe for that authentic blueprint look. I can start on them after my last class today.
The wood master

Image

"I was under the impression Mac owners don't actually USE their machines, they just parade them around trying to evangelize the masses."
EnterTheHatrix
Portablizer
Posts: 482
Joined: Thu Jul 27, 2006 2:15 am
Location: UK
Contact:

Post by EnterTheHatrix »

I want wireframe like it has been designed in CAD or something, not just an outline.. If you can do that, then solid back would be great, I can use that.
gamemasterAS wrote:Solder is also bad for you, says on the spindal that its known to cause cancer in the state of California.
vskid wrote:I'm safe, I live in Utah. :P
blackbox_dev
Senior Member
Posts: 1906
Joined: Sun Jan 15, 2006 5:19 pm
Location: Formerly known as iam7805

Post by blackbox_dev »

I think this one I made is pretty cool. The alignment of some stuff is messed up, but I think you'll still get the idea. :P

Image
I'd imagine right now you wish you were a cuttlefish...
benheck
Site Admin
Posts: 1887
Joined: Wed Dec 31, 1969 6:00 pm
Location: Wisconsin - Land of Beer and Cheese and Beer
Contact:

Post by benheck »

Ah, I like Iam7805's! It needs a bit of work, but looks almost exactly like the main site.

Does it actually work or is this just a mock-up?

Maybe we could use Hatrix's top logo (with the wireframe, although I think the N64 is fine, depsite how hard it is to hack) and the rest of it could be like 7805's.

If you guys want I can get you the original Photoshop files I made the site from so you can slice and dice to get graphics. Here it is:

www.benheck.com/Downloads/site_layout.psd

Have fun, and keep making the text smaller (use subSilver as a reference)

-Ben
Image
EnterTheHatrix
Portablizer
Posts: 482
Joined: Thu Jul 27, 2006 2:15 am
Location: UK
Contact:

Post by EnterTheHatrix »

I purposely didn't go with the main site theme because I really don't like the main site theme. It's way too busy and flickers as you scroll because of the scan lines.
gamemasterAS wrote:Solder is also bad for you, says on the spindal that its known to cause cancer in the state of California.
vskid wrote:I'm safe, I live in Utah. :P
blackbox_dev
Senior Member
Posts: 1906
Joined: Sun Jan 15, 2006 5:19 pm
Location: Formerly known as iam7805

Post by blackbox_dev »

benheck wrote:Ah, I like Iam7805's! It needs a bit of work, but looks almost exactly like the main site. Does it actually work or is this just a mock-up?
Nah, it's just a mockup. Made it in Mspaint. :wink:
I'd imagine right now you wish you were a cuttlefish...
EnterTheHatrix
Portablizer
Posts: 482
Joined: Thu Jul 27, 2006 2:15 am
Location: UK
Contact:

Post by EnterTheHatrix »

Image
That's how I'd have the main site..
Low bandwidth, fast loading, not busy, unique, and best of all... NO SCANLINES!
gamemasterAS wrote:Solder is also bad for you, says on the spindal that its known to cause cancer in the state of California.
vskid wrote:I'm safe, I live in Utah. :P
Super Cameraman
Posts: 1123
Joined: Mon Feb 27, 2006 6:25 pm

Post by Super Cameraman »

If you need any Flash, please ask me. I'm very skilled in Flash.

(Not to brag or anything)

-Super
If you're looking at this post and it was made before 2008, just ignore it.
benheck
Site Admin
Posts: 1887
Joined: Wed Dec 31, 1969 6:00 pm
Location: Wisconsin - Land of Beer and Cheese and Beer
Contact:

Post by benheck »

I would like a script (Java maybe) that picks a random image and displays it in the corner of the header.

Right now there's an image sitting there, it'd be cool if something new came up every time the page refreshed. Maybe with a link, too! (click on the image and see where it takes you)

-Ben
Image
bicostp
Moderator
Posts: 10491
Joined: Mon Mar 07, 2005 5:47 pm
Steam ID: bicostp
Location: Spamalot
Contact:

Post by bicostp »

Well, with some .htaccess tinkering and PHP code you can make a rolling image script.

Here's one I used to have in my sig:
http://bicostp.portablesofdoom.org/foru ... script.gif

^ Save the link as a .php document and open in Notepad to see the code. It still needs some .htaccess stuff to trick the client into treating it as an image.

<img src="http://bicostp.portablesofdoom.org/foru ... script.gif">

Every time you reload the page it spits out a different picture.

I doubt this will change the link, though.

I believe usbcd36 uses the same setup.
Last edited by bicostp on Fri Feb 02, 2007 3:09 pm, edited 1 time in total.
gannon
Moderator
Posts: 6974
Joined: Sun Apr 04, 2004 4:48 pm
Location: Near that one big lake
Contact:

Post by gannon »

Ben: Another easy php job :P
replace

Code: Select all

<img border="0" src="../../images/rotate/snake.jpg" width="207" height="60">
with

Code: Select all

<?php
function is_image($image) {
  $t = preg_match('/\.png$|\.gif$|\.jpeg$|\.jpg$/i', $image);
  if ($t == true) return true;
  else return false;
}
$dir = 'images/rotate/';
$fp = opendir($dir);
while (($file = readdir($fp)) !== false) if (is_image($file)) $files[] = $file;
closedir($fp);
echo '<img border="0" src="'.$dir.$files[rand(0, count($files)-1)].'" width="207" height="60" />';
?>
EnterTheHatrix
Portablizer
Posts: 482
Joined: Thu Jul 27, 2006 2:15 am
Location: UK
Contact:

Post by EnterTheHatrix »

Super Cameraman wrote:If you need any Flash, please ask me. I'm very skilled in Flash.

(Not to brag or anything)

-Super
I personally wouldn't recommend flash since it's high bandwidth, slow and isn't compatible with everyones computer..
gamemasterAS wrote:Solder is also bad for you, says on the spindal that its known to cause cancer in the state of California.
vskid wrote:I'm safe, I live in Utah. :P
bicostp
Moderator
Posts: 10491
Joined: Mon Mar 07, 2005 5:47 pm
Steam ID: bicostp
Location: Spamalot
Contact:

Post by bicostp »

Yeah I'm sure all 5 people who don't have Flash would be really upsat that they couldn't see an image in the corner of Ben's site. :roll:

And with the mile-high bandwidth limit, there's nop problem loading a 150k file when the page loads.
Post Reply