Mizen

Ok...I went blank. He wanted something colourful and different and I put these together cause I couldn't make up my mind. I think I like the first one best. I think they all need work. I'm not keen on the quote either but I came up with it quick. Posting them here so I can think about them over the weekend.





Verileah 21 years ago
I really like the second one :). I think that has the best color scheme and I love the strong composition.
ROzbeans 21 years ago
Mizen is giving me a run for my money on being a sig whore. Dang LOL I like the 3rd one, the first one is too feminine.
Gilae 21 years ago
Maelarya
Mizen is giving me a run for my money on being a sig whore. Dang LOL I like the 3rd one, the first one is too feminine.


Yeah he told me he was going for being a sig whore. Hopefully he'll come take a look here...I haven't seen him online yet.

I'm just not sure on them...maybe I'll make a fourth one on Monday lol.
Wasidun 21 years ago
Mizen is a sig whore. Stay tuned, he'll prolly use all of them plus the 2-3 he already has /duck. :lol: I'll PM him on GM boards and give him the heads up tho.

/wave Mizen.
Mizen 21 years ago
HEY I WANT THEM ALL!!
Mizen 21 years ago
Gilae I think I am in love with you irl.

:o
Rikr 21 years ago
Mizen
HEY I WANT THEM ALL!!


I knew this reply was commin' :) I'd want them all too !!!! :grin:
Mizen 21 years ago
Is there any way you can make them a little smaller?

Other than that, they are fuckin awesome!
Mizen 21 years ago
Don't kill me....

Instead of Marauder can it say Assassin?

I promise you I will take good care of ya!
Rikr 21 years ago
Ok Miz, now you gotta figure out how to do a sig rotator. :)
Gilae 21 years ago
Smaller and assassin...check! I'll fix them today. Anything else? What say you on the quote? It's a mix between NIN and that song I hate Mondays.
Mizen 21 years ago
I don't know why, but that Rage Against The Machine song "Fist Full Of Steel" has been my jam lately.

Let me locate some lyrics or something or just suprise me, I ain't picky.

Your work is awesome.
ROzbeans 21 years ago
I had a sig rotater from Anulien...the script was on solrorage though.
Anulien 21 years ago
Random image PHP script that makes the baby jesus smile


<?php
/*
imgsrv.php - returns random images on request
Author: MC Motherfuckin Anulien the Super Bard of Solusek Ro

imgdir can be absolute or relative path, just keep the trailing slash
Windows ex. C:\wwwroot\image-dir
Linux ex. /home/person/public_html/imagedir/
Or you can leave the default and just create an image directory in the same path as the script

Passing argument i will set the image to the number in the indexed array, for example:
http://domain/imgsrv.php?i=1
will always produce the same image

TODO:
Realign image array based on creation date so adding new images does not change the index,
current allignment is based on alpha ordering
*/


//set image directory to scan, default is ./image/
$imgdir="./image/";

//create and set userland variables
$img_array=array();
$counter=0;
$maxfile=0;
$img_set=-1;

//check if a static index number has been passed in the request
if(isset($_REQUEST["i"]) && $_REQUEST["i"] != '') {
$img_set=$_REQUEST["i"];
}

//scan $imgdir for all files
if ($handle = opendir($imgdir)) {
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != "..") {
$img_array[$counter]=$file;
$counter++;
}
}
closedir($handle);
}

//set file count for the image array
$maxfile=count($img_array)-1;

//if an index number has passed select the image matching that array index
if ($img_set == -1) {
$imgfile=$img_array[rand(0,$maxfile)];
} else {
$imgfile=$img_array[$img_set];
}

/*
kludge: do not use file names with more than one . till i stop being lazy and write some regex
the kludge is to avoid having to enable magic mime, fuck that noise
*/

$ext = substr(strrchr($imgfile, "."), 1);

switch ($ext) {
case 'gif':
$mime_type="image/gif";
break;
case 'jpg':
$mime_type="image/jpg";
break;
case 'jpeg':
$mime_type="image/jpg";
break;
case 'bmp':
$mime_type="image/bmp";
break;
case 'png':
$mime_type="image/png";
break;
}

//create file pointer with read only permissions
$fp=fopen($imgdir.$imgfile,"r");

//pass image headers and length. meets browser RFC requirements
header("Content: ".$mime_type);
header("Content-Length: ".filesize($imgdir.$imgfile));

//pass memory of set file pointer
fpassthru($fp);

//close current file pointer to prevent memory leaks, never trust high level languages!
fclose($fp);

?>
Gilae 21 years ago
There ya go Mizen (see above)...smaller...changed them a wee bit to be more manly (hope I pulled that off) and every quote is from that same Rage song...it's a goody!! And yay M.F. ANU for leet code ;)
Mizen 21 years ago
Wow I am speechless.

Awesome awesome awesome work.

Thank you sooo much!

:love
ROzbeans 21 years ago
COOL, thanks anulien. Gonna sticky that for us sig whores =D
Gilae 21 years ago
For the record...of all your sigs I still dig the one Mae did for you best. The blade work in that is really pretty neat Mae!
ROzbeans 21 years ago
It was pure luck on the pose and how crisp it came out, but thanks Miss Ruthie =)
Rikr 21 years ago
I'm jealous....now I want to be one of the above mentioned "sig whores".

:(