Author Topic: What is your avatar?  (Read 357047 times)

0 Members and 2 Guests are viewing this topic.

Offline XVicarious

  • LV6 Super Member (Next: 500)
  • ******
  • Posts: 485
  • Rating: +45/-28
  • I F**king Love Twisty Puzzles
    • View Profile
    • XVicarious
Re: What is your avatar?
« Reply #300 on: January 21, 2011, 04:10:37 pm »
Mine is special. There are two possible things that show up. Mario growing, and then walking off... Or Megaman walking in, in Mushroom Kingdom and teleporting off. If any of you want to make a dynamic avatar, ask me :D its cool to have :D

Ashbad

  • Guest
Re: What is your avatar?
« Reply #301 on: January 21, 2011, 04:11:10 pm »
* Ashbad asks

Offline yunhua98

  • You won't this read sentence right.
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2718
  • Rating: +214/-12
  • Go take a dive in the River Lethe.
    • View Profile
Re: What is your avatar?
« Reply #302 on: January 21, 2011, 04:11:18 pm »
lol at z's custom title.  XD

* Ashbad asks
I think {AP} had a way in the Pixel Art forum
« Last Edit: January 21, 2011, 04:12:23 pm by yunhua98 »

Spoiler For =====My Projects=====:
Minor setback due to code messing up.  On hold for Contest.
<hr>
On hold for Contest.


Spoiler For ===Staff Memberships===:






Have you seen any good news-worthy programs/events?  If so, PM me with an article to be included in the next issue of CGPN!
The Game is only a demo, the code that allows one to win hasn't been done.
To paraphrase Oedipus, Hamlet, Lear, and all those guys, "I wish I had known this some time ago."
Signature Last Updated: 12/26/11
<hr>

Offline XVicarious

  • LV6 Super Member (Next: 500)
  • ******
  • Posts: 485
  • Rating: +45/-28
  • I F**king Love Twisty Puzzles
    • View Profile
    • XVicarious
Re: What is your avatar?
« Reply #303 on: January 21, 2011, 04:12:19 pm »
Let me just see if i can pull the script off my site

Ashbad

  • Guest
Re: What is your avatar?
« Reply #304 on: January 21, 2011, 04:13:29 pm »
Ahh I see, it has a random numbar generator that set's the source's pic to one of the two depending on the rand's value.

Offline ztrumpet

  • The Rarely Active One
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 5712
  • Rating: +364/-4
  • If you see this, send me a PM. Just for fun.
    • View Profile
Re: What is your avatar?
« Reply #305 on: January 21, 2011, 04:15:23 pm »
band nerd

j/k ;D
lol :P

Today my head Drum Major called me a Band Nerd. :P
« Last Edit: January 21, 2011, 04:15:34 pm by ztrumpet »

Ashbad

  • Guest
Re: What is your avatar?
« Reply #306 on: January 21, 2011, 04:15:53 pm »
band nerd

j/k ;D
lol :P

Today my head Drum Major called me a Band Nerd. :P

I am he

Offline Binder News

  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 785
  • Rating: +46/-3
  • Zombie of Tomorrow
    • View Profile
Re: What is your avatar?
« Reply #307 on: January 21, 2011, 04:17:12 pm »
Erm, so if I take 15-13 I get 2... is that what you mean? Also, there is an equation to the Fibonacci sequence... It inspired me to make one for pythagorean triples :D I made them so that with one, given "a" it found a working "b" value and the other found the "c" value. That was not boredom :P
I might have remembered it incorrectly. It was something like that. I did it 2 years ago so I don't remember exactly.
Also, new avatar, my old one is attached.
Spoiler For userbars:







Hacker-in-training!   Z80 Assembly Programmer     Axe Programmer
C++ H4X0R             Java Coder                           I <3 Python!

Perdidisti ludum     Cerebrum non habes

"We are humans first, no matter what."
"Fame is a vapor, popularity an accident, and riches take wings. Only one thing endures, and that is character."
Spoiler For Test Results:





Ashbad

  • Guest
Re: What is your avatar?
« Reply #308 on: January 21, 2011, 04:17:56 pm »
Erm, so if I take 15-13 I get 2... is that what you mean? Also, there is an equation to the Fibonacci sequence... It inspired me to make one for pythagorean triples :D I made them so that with one, given "a" it found a working "b" value and the other found the "c" value. That was not boredom :P
I might have remembered it incorrectly. It was something like that. I did it 2 years ago so I don't remember exactly.
Also, new avatar, my old one is attached.

they look the same :P

maybe the upload will take a minute or so more.

Offline XVicarious

  • LV6 Super Member (Next: 500)
  • ******
  • Posts: 485
  • Rating: +45/-28
  • I F**king Love Twisty Puzzles
    • View Profile
    • XVicarious
Re: What is your avatar?
« Reply #309 on: January 21, 2011, 04:19:55 pm »
Yeah pretty much... Here it is:
Code: [Select]
<?php 
Header
("Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0"); 
Header("Expires: Thu, 19 Nov 1981 08:52:00 GMT"); 
Header("Pragma: no-cache"); 
srand((double)microtime()*1000000); 
$nr=rand(1,2); 
header("Location: pic$nr.gif"); 
echo 
"blah"
?>

And you need to set your .htaccess file with this:
Code: [Select]
AddType application/x-httpd-php .jpg
And then add your images named as such in the script pic(number).gif

Oh yeah. And save the PHP as a jpg.
« Last Edit: January 21, 2011, 04:20:22 pm by jkag »

Offline Binder News

  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 785
  • Rating: +46/-3
  • Zombie of Tomorrow
    • View Profile
Re: What is your avatar?
« Reply #310 on: January 21, 2011, 04:23:30 pm »
Very nice jkag. I might use that...
Spoiler For userbars:







Hacker-in-training!   Z80 Assembly Programmer     Axe Programmer
C++ H4X0R             Java Coder                           I <3 Python!

Perdidisti ludum     Cerebrum non habes

"We are humans first, no matter what."
"Fame is a vapor, popularity an accident, and riches take wings. Only one thing endures, and that is character."
Spoiler For Test Results:





Offline holmes221b

  • LV5 Advanced (Next: 300)
  • *****
  • Posts: 282
  • Rating: +13/-1
  • RESISTANCE IS FUTILE.
    • View Profile
    • My Livejournal
Re: What is your avatar?
« Reply #311 on: January 21, 2011, 04:25:01 pm »
jkag, your avatar isn't showing up for me...kinda like what happened when I tried to use a dynamic avatar a couple weeks ago.

Spoiler For "Projects":
Spoiler For "Because Everyone Else Is":
*Sigh*
can we keep this on topic? The topic is about what the big thing might be, NOT SEX

Ashbad

  • Guest
Re: What is your avatar?
« Reply #312 on: January 21, 2011, 04:25:38 pm »
it does show up, but only for about 3 secs.

Offline yunhua98

  • You won't this read sentence right.
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2718
  • Rating: +214/-12
  • Go take a dive in the River Lethe.
    • View Profile
Re: What is your avatar?
« Reply #313 on: January 21, 2011, 04:26:03 pm »
its all fine for me...

Spoiler For =====My Projects=====:
Minor setback due to code messing up.  On hold for Contest.
<hr>
On hold for Contest.


Spoiler For ===Staff Memberships===:






Have you seen any good news-worthy programs/events?  If so, PM me with an article to be included in the next issue of CGPN!
The Game is only a demo, the code that allows one to win hasn't been done.
To paraphrase Oedipus, Hamlet, Lear, and all those guys, "I wish I had known this some time ago."
Signature Last Updated: 12/26/11
<hr>

Offline holmes221b

  • LV5 Advanced (Next: 300)
  • *****
  • Posts: 282
  • Rating: +13/-1
  • RESISTANCE IS FUTILE.
    • View Profile
    • My Livejournal
Re: What is your avatar?
« Reply #314 on: January 21, 2011, 04:26:13 pm »
it does show up, but only for about 3 secs.
Same as what happened with mine...

Spoiler For "Projects":
Spoiler For "Because Everyone Else Is":
*Sigh*
can we keep this on topic? The topic is about what the big thing might be, NOT SEX