Pages: [1] 2 :: one page |
Author |
Thread Statistics | Show CCP posts - 2 post(s) |

Mirth Dragonfire
|
Posted - 2006.03.28 19:16:00 -
[1]
Hi, I posted this here, as the answer ( If I get it,hehe) may interest others too.
I have got the hang of Sig designing, but...
Can you please tell me how you get multiple Sigs at the same time?? I notice that even in the same thread, that if I refresh the page, then your sig changes. I change my sig almost weekly, but it would be cool to post a few at the same time. Many thanks, :) Mirth :) http://img147.imageshack.us/img147/5521/1surfer8lj.gif Woah, that sig is way too large. The maximum size allowed is 400*120 and 24000 bytes - Teblin |

Dark Shikari
|
Posted - 2006.03.28 19:16:00 -
[2]
Edited by: Dark Shikari on 28/03/2006 19:18:26 Edited by: Dark Shikari on 28/03/2006 19:17:15 I use a PHP script.
My current script is as follows:
<?php
$extList = array(); $extList['gif'] = 'image/gif'; $extList['jpg'] = 'image/jpeg'; $extList['jpeg'] = 'image/jpeg'; $extList['png'] = 'image/png';
// You don't need to edit anything after this point.
// --------------------- END CONFIGURATION -----------------------
$img = null; $folder = "/afs/csl.tjhsst.edu/user/jgarrett/web-docs/a";
if (substr($folder,-1) != '/') { $folder = $folder.'/'; }
if (isset($_GET['img'])) { $imageInfo = pathinfo($_GET['img']); if ( isset( $extList[ strtolower( $imageInfo['extension'] ) ] ) && file_exists( $folder.$imageInfo['basename'] ) ) { $img = $folder.$imageInfo['basename']; } } else { $fileList = array(); $handle = opendir($folder); while ( false !== ( $file = readdir($handle) ) ) { $file_info = pathinfo($file); if ( isset( $extList[ strtolower( $file_info['extension'] ) ] ) ) { $fileList[] = $file; } } closedir($handle);
if (count($fileList) > 0) { $imageNumber = time() % count($fileList); $img = $folder.$fileList[$imageNumber]; } }
if ($img!=null) { $imageInfo = pathinfo($img); $contentType = 'Content-type: '.$extList[ $imageInfo['extension'] ]; header ($contentType); readfile($img); } else { if ( function_exists('imagecreate') ) { header ("Content-type: image/png"); $im = @imagecreate (100, 100) or die ("Cannot initialize new GD image stream"); $background_color = imagecolorallocate ($im, 255, 255, 255); $text_color = imagecolorallocate ($im, 0,0,0); imagestring ($im, 2, 5, 5, "IMAGE ERROR", $text_color); imagepng ($im); imagedestroy($im); } }
?>
Where /afs/csl.tjhsst.edu/user/jgarrett/web-docs/a is the directory tree to my image folder.
Now for a real question: why do people always happen to addres questions to me right when I get on? For the past 90 minutes, I was listening to a Physics lecture. The instant I log on, for a period of a mere 6-7 minutes, before my next class, someone posts a thread directed to me.

[23] Member: Official Forum Warrior
What's with the blue robots? Click my sig.
|

Kylania
|
Posted - 2006.03.28 19:17:00 -
[3]
Edited by: Kylania on 28/03/2006 19:17:09 Something like this
IBDS 4tw! so close... -- Lil Miner |

Professor McFly
|
Posted - 2006.03.28 19:21:00 -
[4]
Originally by: Dark Shikari Now for a real question: why do people always happen to addres questions to me right when I get on? For the past 90 minutes, I was listening to a Physics lecture. The instant I log on, for a period of a mere 6-7 minutes, before my next class, someone posts a thread directed to me.
Liar, we all know you sit at this forum 24/7  __________________ Inappropriate link description. --Jorauk mods - pwning sigs since 1943 |
|

Wrangler

|
Posted - 2006.03.28 19:23:00 -
[5]
Originally by: Dark Shikari Now for a real question: why do people always happen to addres questions to me right when I get on? For the past 90 minutes, I was listening to a Physics lecture. The instant I log on, for a period of a mere 6-7 minutes, before my next class, someone posts a thread directed to me.

We have you low jacked. 
[Read the Rules!] - [Contact us] |
|

Mirth Dragonfire
|
Posted - 2006.03.28 19:29:00 -
[6]
Edited by: Mirth Dragonfire on 28/03/2006 19:29:30 Wow talk about a quick reply, thx !
Also just so you know, your sigs have rekindled my old Anime fetish. This week from play.com I just got GITS 1st Gig Box Set, Steamboy Directors cut, and Totoro ((region2) to replace my old region 1 copy ) cheers :) Mirth :) ps: sorry Teblin I looked at the image size, not the file size http://img147.imageshack.us/img147/5521/1surfer8lj.gif Woah, that sig is way too large. The maximum size allowed is 400*120 and 24000 bytes - Teblin |

Turix
|
Posted - 2006.03.28 19:41:00 -
[7]
Edited by: Turix on 28/03/2006 19:47:46 Edited by: Turix on 28/03/2006 19:47:23 Wow O.o
Talk about long way around it 
Ill try to come up with sumin shorter, i got nothing better to do.
Nvm cba 
Btw Dark, props on you and huddy for being the only fix who agree to 1v1's  Sig hijack for file size being to large, please keep it under 24000 bytes - Petwraith /me 4 teh win - Imaran /me pwns Imaran
|

Mia Archer
|
Posted - 2006.03.28 20:36:00 -
[8]
damn tabbing gone :|
|

Mia Archer
|
Posted - 2006.03.28 20:36:00 -
[9]
thats a very complicated solution, something similar but more simple
<?
$handle = "/path/to/image/files/";
//Edit above line
$images = array(); while ($file = readdir($handle)) { if (strpos($file, ".jpg")) { $images[] = $file; } } $pic = $images[array_rand($images)]; $filehandle = fopen($handle.$pic, 'r'); $data = fread($filehandle, filesize($pic)); fclose($filehandle); header('Content-type: image/jpeg'); echo $data; ?>
note: i just typed that up, didnt test it at all, but hopefully it should work, its just a random image seclector, no GD or anything involved
to use: save as a .php file then use the php file's url as the image location in your sig
|

Kylania
|
Posted - 2006.03.28 20:48:00 -
[10]
Solution I found was 4 lines. Yarr! -- Lil Miner |

Mirth Dragonfire
|
Posted - 2006.03.28 20:51:00 -
[11]
Oooo, way out of my league.
Glad I asked tho. Long as its a copy/paste thingy I should manage it
Mirth 
moving version here: http://img147.imageshack.us/img147/5521/1surfer8lj.gif
|

Dark Shikari
|
Posted - 2006.03.28 22:01:00 -
[12]
Originally by: Mirth Dragonfire Edited by: Mirth Dragonfire on 28/03/2006 19:29:30 Wow talk about a quick reply, thx !
Also just so you know, your sigs have rekindled my old Anime fetish. This week from play.com I just got GITS 1st Gig Box Set, Steamboy Directors cut, and Totoro ((region2) to replace my old region 1 copy ) cheers :) Mirth :) ps: sorry Teblin I looked at the image size, not the file size
Get GITS:SAC. Now. Both seasons 
Originally by: Turix Btw Dark, props on you and huddy for being the only fix who agree to 1v1's 
And props to Darpz for being the only SA to beat me in a 1v1 
[23] Member: Official Forum Warrior
What's with the blue robots? Click my sig.
|

Yggr
|
Posted - 2006.03.28 22:05:00 -
[13]
How is the Thomas Jefferson High School for Science and Technology, anyway? -----
Originally by: Malthros Zenobia
[TomB,] Were you true to the name [Tom Bombadil], dancing around the woods singing (and killing anything that moved) without a care in the world?
|

Dark Shikari
|
Posted - 2006.03.28 22:10:00 -
[14]
Edited by: Dark Shikari on 28/03/2006 22:12:09
Originally by: Yggr How is the Thomas Jefferson High School for Science and Technology, anyway?
Its quite good, although the entire "science" budget of our school seems to disappear every year.
We know this because our supercomputer is a Cray from 1991, which is slower than a single modern Pentium 4 machine.
And because it took 5 years for our Optics lab to get a new whiteboard.
For real info, check the Wikipedia Page on TJHSST.
And now that we're offtopic, I can see an Out of Pod move coming.
[23] Member: Official Forum Warrior
What's with the blue robots? Click my sig.
|

Yggr
|
Posted - 2006.03.28 22:34:00 -
[15]
Originally by: Dark Shikari
Its quite good, although the entire "science" budget of our school seems to disappear every year. ... For real info, check the Wikipedia Page on TJHSST.
Sweet! I live in NYC, and if it is comparable to Stuyvesant, then congratulations! -----
Originally by: Malthros Zenobia
[TomB,] Were you true to the name [Tom Bombadil], dancing around the woods singing (and killing anything that moved) without a care in the world?
|
|

Ductoris

|
Posted - 2006.03.28 23:39:00 -
[16]
Originally by: Dark Shikari
And now that we're offtopic, I can see an Out of Pod move coming.
You sir, are wise beyond your years.
WOOOOSHHH
|
|

CmdrRat
|
Posted - 2006.03.28 23:42:00 -
[17]
Originally by: Dark Shikari Edited by: Dark Shikari on 28/03/2006 22:12:09
Originally by: Yggr How is the Thomas Jefferson High School for Science and Technology, anyway?
Its quite good, although the entire "science" budget of our school seems to disappear every year.
We know this because our supercomputer is a Cray from 1991, which is slower than a single modern Pentium 4 machine.
And because it took 5 years for our Optics lab to get a new whiteboard.
For real info, check the Wikipedia Page on TJHSST.
And now that we're offtopic, I can see an Out of Pod move coming.
Hmmmm, thats in Alexandria, VA. Which is where I live.
Good thing FIX are friends or I'd have to stop by and pod you but I fear the blue robots . So thats a good thing.
|

Dark Shikari
|
Posted - 2006.03.29 00:24:00 -
[18]
Originally by: CmdrRat
Originally by: Dark Shikari Edited by: Dark Shikari on 28/03/2006 22:12:09
Originally by: Yggr How is the Thomas Jefferson High School for Science and Technology, anyway?
Its quite good, although the entire "science" budget of our school seems to disappear every year.
We know this because our supercomputer is a Cray from 1991, which is slower than a single modern Pentium 4 machine.
And because it took 5 years for our Optics lab to get a new whiteboard.
For real info, check the Wikipedia Page on TJHSST.
And now that we're offtopic, I can see an Out of Pod move coming.
Hmmmm, thats in Alexandria, VA. Which is where I live.
Good thing FIX are friends or I'd have to stop by and pod you but I fear the blue robots . So thats a good thing.
  
[23] Member: Official Forum Warrior
What's with the blue robots? Click my sig.
|

Jenny Spitfire
|
Posted - 2006.03.29 07:19:00 -
[19]
Can you do the geek test please? I want to see how accurate it is.  ----------------
RecruitMe@NOINT! |

Dark Shikari
|
Posted - 2006.03.29 10:24:00 -
[20]
Originally by: Jenny Spitfire Can you do the geek test please? I want to see how accurate it is. 
A mere 47.5%.
Mainly because I don't do cosplay/D&D/Warhammer/any of that.
[23] Member: Official Forum Warrior
What's with the blue robots? Click my sig.
|

Mirth Dragonfire
|
Posted - 2006.03.29 13:04:00 -
[21]
Edited by: Mirth Dragonfire on 29/03/2006 13:05:42 Edited by: Mirth Dragonfire on 29/03/2006 13:05:27 70% Geeky 
and yeah , I got season 1 of GITS :SAC . just waitin til they do season 2 as a box set
:) Mirth :)
moving version here: http://img147.imageshack.us/img147/5521/1surfer8lj.gif
|

Mirth Dragonfire
|
Posted - 2006.03.29 13:06:00 -
[22]
Edited by: Mirth Dragonfire on 29/03/2006 13:06:53 [
moving version here: http://img147.imageshack.us/img147/5521/1surfer8lj.gif
|

Border201
|
Posted - 2006.03.29 23:37:00 -
[23]
Edited by: Border201 on 29/03/2006 23:37:52
Originally by: Mirth Dragonfire Edited by: Mirth Dragonfire on 29/03/2006 13:06:53 70% Geeky Very Happy Embarassed Very Happy
and yeah , I got season 1 of GITS :SAC . just waitin til they do season 2 as a box set
:) Mirth :)
They do have season 2 as a box set just that it's only avaiable in Japan (or Ebay) and it's not what I would call grammatically perfect (some sentences don't makes sense and the subtitles can scroll Insanely fast) at this point I should point out that I'm a huge fan as well and I do own season 2 as well as the first movie I don't own the first season though 
Originally by: corporal hicks
Internet: where men are men, women are men and kids are cops
|

Lucian Alucard
|
Posted - 2006.03.30 10:40:00 -
[24]
this thread reminds me of old Josh calvert threads for some reason.
*narrows his eyes*
One of these days Shikari we must have a showdown. ----------------------------------------------- Done is done Yes, there will be no taking back Every journey must come to an end All hail to the Gunslinger Beyond our reach, out of control |

Dark Shikari
|
Posted - 2006.03.30 10:53:00 -
[25]
Originally by: Lucian Alucard this thread reminds me of old Josh calvert threads for some reason.
*narrows his eyes*
One of these days Shikari we must have a showdown.

[23] Member: Official Forum Warrior
What's with the blue robots? Click my sig.
|

GouldFish
|
Posted - 2006.03.30 12:41:00 -
[26]
I still need to sit down and watch git:sac S2 at some point..
I've watched both Films and the first season twice. the first time I was getting eps with subtitles that were taken from chinese translation of the show... it made no sence!
|

Dark Shikari
|
Posted - 2006.03.30 13:32:00 -
[27]
Originally by: GouldFish I still need to sit down and watch git:sac S2 at some point..
I've watched both Films and the first season twice. the first time I was getting eps with subtitles that were taken from chinese translation of the show... it made no sence!
Look around for LaughingMan's fansubs of the second season. His website went down not long after he finished it (end of 2005) but his subs are still all around the internet.
[23] Member: Official Forum Warrior
What's with the blue robots? Click my sig.
|

GouldFish
|
Posted - 2006.03.31 11:57:00 -
[28]
I'm guessing all the eps are int he flat somewhere, I just need to find them..
|

Neckbone
|
Posted - 2006.04.05 22:23:00 -
[29]
Originally by: Dark Shikari
Originally by: Jenny Spitfire Can you do the geek test please? I want to see how accurate it is. 
A mere 47.5%.
Mainly because I don't do cosplay/D&D/Warhammer/any of that.
48.12623% Geek -- Super Geek
I think roleplaying games put me over. When I moved to the country at 14, I taught every guy in my high school class to play D&D, and later Palladium.
|

Jenny Spitfire
|
Posted - 2006.04.05 22:24:00 -
[30]
Originally by: Neckbone ... later Palladium.
Robotech? ----------------
RecruitMe@NOINT! |
|
|
Pages: [1] 2 :: one page |
First page | Previous page | Next page | Last page |