Welcome to the MacNN Forums.

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

You are here: MacNN Forums > Community > MacNN Lounge > I am pleased to announce the MacNN Sig Wall 2.0

I am pleased to announce the MacNN Sig Wall 2.0
Thread Tools
Professional Poster
Join Date: Nov 2004
Location: eating kernel
Status: Offline
Reply With Quote
Sep 1, 2007, 01:25 AM
 
Link.

If you don't want your sig on the page, tell me. If I missed your sig and want it on the page post here and I will add it.
Signature depreciated.
     
Clinically Insane
Join Date: Mar 2001
Location: yes
Status: Offline
Reply With Quote
Sep 1, 2007, 01:34 AM
 
Why bother with manual HTML? I'd be happy to give you the code for my automated sig generator. The display can obviously be customized, but the upside is that it literally takes all of a second or two to add a new sig to the wall.
     
Clinically Insane
Join Date: Mar 2001
Location: yes
Status: Offline
Reply With Quote
Sep 1, 2007, 01:43 AM
 
CATS: here is the code to automate your work. All you have to do is plug in your signature path for "sigpath" and the desired number of columns for "cols". To add new signatures to the wall, all you have to do is add them to your sigpath directory. I've been right clicking on them, saving the image path, and then in the sigpath in your terminal doing a:

Code:
curl -O "http://imagepathurl"
or

Code:
wget "http://imagepathurl"

Code:
<?php $sigpath = "sigs"; $cols = 5; Header('Cache-Control: no-cache'); Header('Pragma: no-cache'); $handle = opendir($sigpath); $sigs = array(); while (false !== ($file = readdir($handle))) { if (preg_match('/\.(jpg|jpeg|gif|png)/i', $file)) { array_push($sigs,$file); } } shuffle($sigs); $imgBuf = array(); foreach ($sigs as $link) { switch(substr ($link,strrpos ($link,".")+1)) { case 'png': $iTmp = imagecreatefrompng($sigpath . '/' . $link); break; case 'gif': $iTmp = imagecreatefromgif($sigpath . '/' . $link); break; case 'jpeg': case 'jpg': $iTmp = imagecreatefromjpeg($sigpath . '/' . $link); break; } array_push ($imgBuf,$iTmp); } $totalheight = 50 * ceil((count($sigs) - 1) / $cols); $iOut = imagecreatetruecolor (200 * $cols, $totalheight); $white = imagecolorallocate($iTmp, 255, 255, 255); imagefill($iOut, 0, 0, $white); $dstx=0; $dsty=0; for ($x=0;$x < count($sigs) - 1;$x++) { if ($dstx == 200 * $cols) { $dstx = 0; $dsty += 50; } $image_dimensions = getimagesize($sigpath . '/' . $sigs[$x]); imagecopy ($iOut,$imgBuf[$x],$dstx,$dsty,0,0,$image_dimensions[0],$image_dimensions[1]); imagedestroy ($imgBuf[$x]); $dstx += 200; } header ("Content-type: image/png"); imagepng($iOut); imagedestroy($iOut); ?>
     
Clinically Insane
Join Date: Mar 2001
Location: yes
Status: Offline
Reply With Quote
Sep 1, 2007, 01:47 AM
 
Let me know if you want a copy of the signatures already on my wall
     
Posting Junkie
Join Date: Jun 2000
Location: Union County, NJ
Status: Offline
Reply With Quote
Sep 1, 2007, 02:17 AM
 
Cute
     
Addicted to MacNN
Join Date: Oct 2002
Location: England | San Francisco
Status: Offline
Reply With Quote
Sep 1, 2007, 05:39 AM
 
wheres the 2.0 bit?
we don't have time to stop for gas
     
Posting Junkie
Join Date: Jan 2006
Location: Seattle, Washington
Status: Offline
Reply With Quote
Sep 1, 2007, 09:55 AM
 
Originally Posted by Peter View Post
wheres the 2.0 bit?
Besson's was 1.0.
     
Addicted to MacNN
Join Date: Aug 2004
Location: FFM
Status: Offline
Reply With Quote
Sep 1, 2007, 10:00 AM
 
Originally Posted by besson3c View Post
Why bother with manual HTML?
Because it's .Mac?
     
Professional Poster
Join Date: Sep 2005
Location: Rochester, NY
Status: Offline
Reply With Quote
Sep 1, 2007, 10:02 AM
 
Wow, there are some oldies on that wall.
     
Banned
Join Date: Jun 2005
Location: Indy.
Status: Offline
Reply With Quote
Sep 1, 2007, 10:02 AM
 
Yeah! I wanna comment or thumbs up/down them!!!
     
Banned
Join Date: Jun 2005
Location: Indy.
Status: Offline
Reply With Quote
Sep 1, 2007, 10:03 AM
 
Originally Posted by imitchellg5 View Post
Besson's was 1.0.
Starman's was 1.0

Besson's was crap.
     
Clinically Insane
Join Date: Mar 2001
Location: yes
Status: Offline
Reply With Quote
Sep 1, 2007, 10:30 AM
 
Originally Posted by TETENAL View Post
Because it's .Mac?
Oh... I guess .Mac doesn't provide PHP then, right?
     
Mac Elite
Join Date: Aug 2006
Location: Atlanta, GA
Status: Offline
Reply With Quote
Sep 1, 2007, 10:36 AM
 
Nice to see that the iFruit made it.
     
Professional Poster
Join Date: Sep 2005
Location: Rochester, NY
Status: Offline
Reply With Quote
Sep 1, 2007, 10:37 AM
 
Originally Posted by Railroader View Post
Besson's was crap.

I think you're confusing besson3c's sig wall with his stool samples.....
     
Clinically Insane
Join Date: Mar 2001
Location: yes
Status: Offline
Reply With Quote
Sep 1, 2007, 10:54 AM
 
Originally Posted by Dork. View Post
I think you're confusing besson3c's sig wall with his stool samples.....
Yes! No wonder he's been an unsatisfied customer, making a mistake like this...

One thing about sales that I've realized though is that I need a customer service department. Would you like to work customer service Dork.? I can give you a commission of all my sales...

See, if I was more experienced at this customer service thing I would know what to feed a troll to make it go away. I've been offering Kilbey this old tin can for a while and urging him to eat it and run along, but he isn't taking it - just gnawing on it a little and growling. What do trolls eat if not tin cans? Your consultation on this matter is greatly appreciated, my dear friend.
(Last edited by besson3c; Sep 1, 2007 at 11:11 AM. )
     
Clinically Insane
Join Date: Jun 2001
Location: planning a comeback !
Status: Offline
Reply With Quote
Sep 1, 2007, 11:04 AM
 
Filled under "things the world doesn't need".

-t
     
Clinically Insane
Join Date: Mar 2001
Location: yes
Status: Offline
Reply With Quote
Sep 1, 2007, 11:07 AM
 
Wait, I guess I'm thinking about goats eating tin cans... As it turns out, goats don't really eat tin cans anyway:

Goats

I guess that's my problem.
     
Professional Poster
Join Date: Nov 2004
Location: eating kernel
Status: Offline
Reply With Quote
Sep 1, 2007, 11:37 AM
 
Originally Posted by besson3c View Post
Oh... I guess .Mac doesn't provide PHP then, right?
You can put 'HTML snippets' in the page, I don't know about PHP tho.

PS, added Dork.'s sig.
Signature depreciated.
     
Baninated
Join Date: Oct 2002
Location: In yer threads
Status: Offline
Reply With Quote
Sep 1, 2007, 12:10 PM
 
Originally Posted by Railroader View Post
Starman's was 1.0
Indeed it was.
     
Professional Poster
Join Date: May 2001
Location: North Dakota, USA
Status: Offline
Reply With Quote
Sep 1, 2007, 12:54 PM
 
It's weird that I feel a little love when my sig has been included on a sig wall.

Where's 1.0 and besson's?
     
Clinically Insane
Join Date: Mar 2001
Location: yes
Status: Offline
Reply With Quote
Sep 1, 2007, 01:05 PM
 
Originally Posted by funkboy View Post
It's weird that I feel a little love when my sig has been included on a sig wall.

Where's 1.0 and besson's?
Here's a scaled down version of mine, I just updated the script for fun so that you can pass a variable to it via the URL that dictates how many columns wide it should be (although vB doesn't seem to allow doing this, so it is displaying at the default 3)

     
Clinically Insane
Join Date: Mar 2001
Location: yes
Status: Offline
Reply With Quote
Sep 1, 2007, 01:12 PM
 
never mind
     
Clinically Insane
Join Date: Jun 2001
Location: planning a comeback !
Status: Offline
Reply With Quote
Sep 1, 2007, 01:36 PM
 
Your sig wall sucks; 0 turtles.

-t
     
Clinically Insane
Join Date: Mar 2001
Location: yes
Status: Offline
Reply With Quote
Sep 1, 2007, 02:30 PM
 
Originally Posted by turtle777 View Post
Your sig wall sucks; 0 turtles.

-t

Whose, mine? I've got one of your turtle sigs there... I was just too lazy to copy down the others served by your rotation script.
     
Clinically Insane
Join Date: Jun 2001
Location: planning a comeback !
Status: Offline
Reply With Quote
Sep 1, 2007, 02:35 PM
 
Originally Posted by besson3c View Post
Whose, mine? I've got one of your turtle sigs there... I was just too lazy to copy down the others served by your rotation script.
Oops, didn't see that one. Nevermind then.

-t
     
Clinically Insane
Join Date: Mar 2001
Location: yes
Status: Offline
Reply With Quote
Sep 1, 2007, 02:36 PM
 
Originally Posted by turtle777 View Post
Oops, didn't see that one. Nevermind then.

-t
Can I have the URLs for your other turtles?
     
Addicted to MacNN
Join Date: Aug 2004
Location: FFM
Status: Offline
Reply With Quote
Sep 1, 2007, 02:37 PM
 
No, yours. The black background is ugly. Should be transparent. ORT888's and Intl's sigs don't look like intended on black background.
     
Clinically Insane
Join Date: Mar 2001
Location: yes
Status: Offline
Reply With Quote
Sep 1, 2007, 02:39 PM
 
Originally Posted by TETENAL View Post
No, yours. The black background is ugly. Should be transparent. ORT888's and Int
My background is white, but for some reason it doesn't always consistently render this way... probably a bug in my script, or else a GD/memory handling bug. Haven't had time to address it.

Refresh the page and the black background should go away.
     
Clinically Insane
Join Date: Jun 2001
Location: planning a comeback !
Status: Offline
Reply With Quote
Sep 1, 2007, 02:41 PM
 
Originally Posted by besson3c View Post
Can I have the URLs for your other turtles?












Knock yourself out

-t
     
Addicted to MacNN
Join Date: Aug 2004
Location: FFM
Status: Offline
Reply With Quote
Sep 1, 2007, 02:44 PM
 
Just get rid off the background alltogether. And why is there always a stray sig in the last row? If you have a 3 column layout make the number of sigs dividable by 3.
     
Clinically Insane
Join Date: Mar 2001
Location: yes
Status: Offline
Reply With Quote
Sep 1, 2007, 02:45 PM
 
Originally Posted by turtle777 View Post

Knock yourself out

-t

My little wall now features all of your turtles in all of their glory!
     
Clinically Insane
Join Date: Mar 2001
Location: yes
Status: Offline
Reply With Quote
Sep 1, 2007, 02:47 PM
 
Originally Posted by TETENAL View Post
Just get rid off the background alltogether. And why is there always a stray sig in the last row? If you have a 3 column layout make the number of sigs dividable by 3.
I didn't want to leave any sigs outs. I guess I could, but since they are of different dimensions the image is rather blocky anyway. I could resize the under and oversized images to the correct size on the fly, or even create a new copy of the image using the resized dimensions, but that would distort them.

My script basically creates a new single image of all of the individual images amalgamated into one. The individual images need to be copied into this new image, and this image needs some sort of fill color. If I don't fill in any color it will default to black. That's just the way the PHP image handling functions (GD) work...
     
Addicted to MacNN
Join Date: Mar 2001
Location: USA
Status: Offline
Reply With Quote
Sep 1, 2007, 03:55 PM
 
What idiot spelled forgiven "foregiven"?
"Everything's so clear to me now: I'm the keeper of the cheese and you're the lemon merchant. Get it? And he knows it.
That's why he's gonna kill us. So we got to beat it. Yeah. Before he let's loose the marmosets on us."
my band • my web site • my guitar effects • my photos • facebook • brightpoint
     
Clinically Insane
Join Date: Jul 2005
Location: Vacation.
Status: Offline
Reply With Quote
Sep 1, 2007, 04:02 PM
 
Originally Posted by RAILhead View Post
What idiot spelled forgiven "foregiven"?
I think it was intentional Rail.

Digging your pinup A/B boxes, BTW. Might have to get me one of those.
Been inclined to wander... off the beaten track.
That's where there's thunder... and the wind shouts back.
     
Professional Poster
Join Date: Nov 2004
Location: eating kernel
Status: Offline
Reply With Quote
Sep 1, 2007, 04:07 PM
 
Originally Posted by turtle777 View Post
<snip>
Knock yourself out

-t
OK, good, added your sigs.
Signature depreciated.
     
Addicted to MacNN
Join Date: Oct 2002
Location: England | San Francisco
Status: Offline
Reply With Quote
Sep 1, 2007, 07:29 PM
 
why does your site say
I am a extraordinary 10th grader living in FL. I own 4 Macs and 1 custom built PC. I am one of the most active members of the Ubuntu Florida Team and I run their BBS and software repository.
?
we don't have time to stop for gas
     
Clinically Insane
Join Date: Jun 2001
Location: planning a comeback !
Status: Offline
Reply With Quote
Sep 1, 2007, 08:51 PM
 
Originally Posted by Peter View Post
why does your site say
I am a extraordinary 10th grader living in FL. I own 4 Macs and 1 custom built PC. I am one of the most active members of the Ubuntu Florida Team and I run their BBS and software repository.
?


Let me guess: you are also their president, secretary, treasurer and janitor ?

-t
     
Professional Poster
Join Date: Nov 2004
Location: eating kernel
Status: Offline
Reply With Quote
Sep 1, 2007, 09:25 PM
 
What's so funny about it?
Signature depreciated.
     
Clinically Insane
Join Date: Jun 2001
Location: planning a comeback !
Status: Offline
Reply With Quote
Sep 1, 2007, 09:30 PM
 
Originally Posted by C.A.T.S. CEO View Post
What's so funny about it?
Nothing, just my twisted sense of humor

-t
     
Baninated
Join Date: Oct 2002
Location: In yer threads
Status: Offline
Reply With Quote
Sep 2, 2007, 07:07 AM
 
Originally Posted by turtle777 View Post
Your sig wall sucks; 0 turtles.

-t
It seems, unlike the original sig wall, besson's sig wall only contains certain members sigs.

You must not know the secret handshake. (Not that any of this matters. I am sure besson planned this thread two weeks ago over at his forum thinking for some reason it's funny....
     
Posting Junkie
Join Date: Jun 2000
Location: Union County, NJ
Status: Offline
Reply With Quote
Sep 2, 2007, 10:18 AM
 
When I put together the original wall, I just went down the list of sigs and added them one at a time. No favorites. It got tedious, though. It's very difficult to keep it up to date.
     
Professional Poster
Join Date: Jun 2007
Status: Offline
Reply With Quote
Sep 2, 2007, 12:01 PM
 
Originally Posted by Kevin View Post
It seems, unlike the original sig wall, besson's sig wall only contains certain members sigs.

You must not know the secret handshake. (Not that any of this matters. I am sure besson planned this thread two weeks ago over at his forum thinking for some reason it's funny....
Seems Besson only comes here then to cause problems, or try to get on some members nerves. Playing pranks like that seems juvenile
     
Mac Enthusiast
Join Date: May 2007
Location: Portland, Oregon
Status: Offline
Reply With Quote
Sep 2, 2007, 12:19 PM
 
K, no offense, but what is the point of having sig walls? I'm not in the loop here.
24" iMac 2.16GHz c2d ~ 3G ram ~ 250G ~ Superdrive ~ Pure Sexiness
15" Powerbook G4 ~ 1.5GHz ~ 1.5G ram ~ 160G ~ Combo
     
Professional Poster
Join Date: Sep 2005
Location: Rochester, NY
Status: Offline
Reply With Quote
Sep 2, 2007, 12:47 PM
 
Originally Posted by MacosNerd View Post
Seems Besson only comes here then to cause problems, or try to get on some members nerves. Playing pranks like that seems juvenile
It is juvenile, but he's only doing it because it's so easy to get on certain people's nerves here, for some reason. He gets a kick out of it, I suppose.

I find it kind of funny, actually, that Kevin feels the need to point out threads at fuzzywombat and link them to some sort of plan. If he's spent any time at the place whatsoever, he knows that planning is not our strong suit. Unless it involves having sex with robots -- we have a massive five-year plan for that, which you are all unwittingly a part of. But I've said too much already....
     
Professional Poster
Join Date: Sep 2005
Location: Rochester, NY
Status: Offline
Reply With Quote
Sep 2, 2007, 12:49 PM
 
Originally Posted by irunat2am View Post
K, no offense, but what is the point of having sig walls? I'm not in the loop here.
Does everything need to have a point? Knowing besson3c, it was probably more of an exercise in his scripting skillz than anythign else....
     
Posting Junkie
Join Date: Jun 2000
Location: Union County, NJ
Status: Offline
Reply With Quote
Sep 2, 2007, 12:53 PM
 
Originally Posted by irunat2am View Post
K, no offense, but what is the point of having sig walls? I'm not in the loop here.
What's the point in anything? I made the sig wall because it was fun. Do we need to define fun?
     
Professional Poster
Join Date: Sep 2005
Location: Rochester, NY
Status: Offline
Reply With Quote
Sep 2, 2007, 12:55 PM
 
Originally Posted by starman View Post
What's the point in anything? I made the sig wall because it was fun. Do we need to define fun?
Maybe we need to define fun, and add it to the MacNN Guidelines....
     
Clinically Insane
Join Date: Mar 2001
Location: yes
Status: Offline
Reply With Quote
Sep 2, 2007, 12:57 PM
 
This thread is going exactly as planned.... excellleeennttt....
     
Clinically Insane
Join Date: Jul 2005
Location: Vacation.
Status: Offline
Reply With Quote
Sep 2, 2007, 12:58 PM
 
Originally Posted by starman View Post
Do we need to define fun?
Originally Posted by Dork. View Post
Maybe we need to define fun
Did that already for you guys:



There ya go.
Been inclined to wander... off the beaten track.
That's where there's thunder... and the wind shouts back.
     
Clinically Insane
Join Date: Mar 2001
Location: yes
Status: Offline
Reply With Quote
Sep 2, 2007, 01:00 PM
 
Originally Posted by Dork. View Post
Maybe we need to define fun, and add it to the MacNN Guidelines....
That would result in some members accusing others of not having fun, and pointing to the rules as evidence
     
 
Thread Tools
Forum Links
Forum Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Top
Privacy Policy
All times are GMT -5. The time now is 12:11 PM.
All contents of these forums © 1995-2011 MacNN. All rights reserved.
Branding + Design: www.gesamtbild.com
vBulletin v.3.8.7 © 2000-2011, Jelsoft Enterprises Ltd., Content Relevant URLs by vBSEO 3.3.2