Register | Login
Views: 19364387
Main | Memberlist | Active users | ACS | Commons | Calendar | Online users
Ranks | FAQ | Color Chart | Photo album | IRC Chat
11-02-05 12:59 PM
Acmlm's Board - I2 Archive - - Posts by Vystrix Nexoth
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
User Post
Vystrix Nexoth

Level: 30

Posts: 106/348
EXP: 158678
For next: 7191

Since: 03-15-04
From: somewhere between anima and animus

Since last post: 3 days
Last activity: 2 days
Posted on 04-20-04 01:29 PM, in In the Long Grass... Link
it makes me think of...Crocodile Hunter. "ohh, she's a beaut, ain't she?"
Vystrix Nexoth

Level: 30

Posts: 107/348
EXP: 158678
For next: 7191

Since: 03-15-04
From: somewhere between anima and animus

Since last post: 3 days
Last activity: 2 days
Posted on 04-22-04 02:21 AM, in Good PC DVD program? (free, if possible) Link
print-screen doesn't work whenever I tried it. if you hit the key, then paste it into paint (or any other image editor), the part where the DVD screen was becomes... nothing! transparent outside of the context of the image itself. disabling hardware acceleration in WMP doesn't help.

I'm with kazooie on this one. I'd like such a program too. the DeCSS source is floating around on the internet, so I figure someone's made a DVD-playing application by now.
Vystrix Nexoth

Level: 30

Posts: 108/348
EXP: 158678
For next: 7191

Since: 03-15-04
From: somewhere between anima and animus

Since last post: 3 days
Last activity: 2 days
Posted on 04-22-04 02:27 AM, in Red Dwarf Link
it's not like your financial future depends on the outcome of this hack. just do it, if only for two things:
  • yourself
  • the experience
everything else is just icing on the cake.
as for Red Dwarf, I've heard of it and seen a couple episodes of it and rather liked it, although I haven't watched it in a while. I wouldn't play a RD Pokémon hack, but then again I wouldn't play any Pokémon hack.
Vystrix Nexoth

Level: 30

Posts: 109/348
EXP: 158678
For next: 7191

Since: 03-15-04
From: somewhere between anima and animus

Since last post: 3 days
Last activity: 2 days
Posted on 04-22-04 03:29 AM, in level editor for Super mario the lost levels Link
to answer your question: yes, I reckon someone does know about it.
Vystrix Nexoth

Level: 30

Posts: 110/348
EXP: 158678
For next: 7191

Since: 03-15-04
From: somewhere between anima and animus

Since last post: 3 days
Last activity: 2 days
Posted on 04-22-04 09:52 PM, in PHP Online Indicator? Link
I'll assume that:
  • you already have a way to figure out whether a user is online or not; and
  • you already have prefabricated images available for each status; and
  • the images are named "online.png" and "offline.png"


<?php
include "figure_out_whether_user_is_online_or_not.php";

if (user_is_online())
{ $filename = 'online.png';
}
else
{ $filename = 'offline.png';
}

header ('Content-Type: image/png');
header ('Content-Length: '.filesize($filename));
readfile ($filename);

?>


the Content-Length line is not necessary; it's just a nicety. the Content-Type line, however, is required.

anyhow, all it does is figures out whether the user is online, and outputs either 'online.png' or 'offline.png' (as the document content) accordingly.

if you want to use .jpg images instead of .png, just change the Content-Type line to image/jpeg instead of image/png

HTH
Vystrix Nexoth

Level: 30

Posts: 111/348
EXP: 158678
For next: 7191

Since: 03-15-04
From: somewhere between anima and animus

Since last post: 3 days
Last activity: 2 days
Posted on 04-25-04 10:55 PM, in PHP Online Indicator? Link
using VB? for one, I assume elric's server does not support ASP, and even if it did, that's way too complicated a solution. the board automatically records the last time you were online (meaning, you viewed a page while signed in).
the board uses Unix-style timestamps (which is the number of seconds since 01/01/1970 00:00 UTC), so:

if ($TimeUserWasLastOnline > time() - 3600)
{ user is online
}
else
{ user is not online
}


where 3600 = how long you want a user to be considered "online", in seconds (which in this case means one hour).

as for PNGs, that's a problem with the program you're using, not the PNG format itself. I can think of two ways to add binary (either 100% opaque or 100% transparent) transparency to an RGB image:
  • use an alpha channel
  • use a single color for the parts you want transparent (some color not used throughout the rest of the image, such as bright pink or such), and add a chunk in the PNG making that particular color transparent.


I found this program a while back, and have found it to be helpful. to do the second method (assigning one color as transparent), do this:
  1. save a regular 24-bit RGB image as a PNG file, without transparency, using pink (or some other color) in the parts you want transparent.
  2. open it in TweakPNG
  3. Insert -> tRNS (it's at the bottom)
  4. Double-click on the tRNS chunk that was inserted.
  5. type in the RGB value for the color to be transparent.
  6. Save, and rejoice.


...now, whether that will work in Internet Explorer or not, I don't know; I doubt that it will. alternately, you can try this, using the same program:
  1. save it as an 8-bit PNG, again, without actual transparency, but with one palette entry set aside for it.
  2. open it in tweakpng, and add a tRNS chunk as described above.
  3. double-click on it. In the "alpha values" box, type in the same number of colors are there are in the palette (so if there are 256 colors in the palette, type 256 in the "alpha values" box)
  4. find the color that you want to be transparent, and click on it. Type "0" in the box that pops up.
  5. Save.
  6. Buy war bonds!


again, hope this helps.


(edited by Vystrix Nexoth on 04-25-04 01:59 PM)
Vystrix Nexoth

Level: 30

Posts: 112/348
EXP: 158678
For next: 7191

Since: 03-15-04
From: somewhere between anima and animus

Since last post: 3 days
Last activity: 2 days
Posted on 04-25-04 11:07 PM, in DVD Aspect Ratios and MPEG2 Encoding Link
(just thought I'd throw this out there)

don't know much about DVD burners or software that does it, but the problem you describe sounds like you're trying to play an anamorphic DVD on a 4x3 television but your DVD player thinks you're using a 16x9 television. if this is indeed the case, simply adjust your DVD player settings.

failing that, follow Yiffy Kitten's advice.
Vystrix Nexoth

Level: 30

Posts: 113/348
EXP: 158678
For next: 7191

Since: 03-15-04
From: somewhere between anima and animus

Since last post: 3 days
Last activity: 2 days
Posted on 04-25-04 11:14 PM, in SWF (Macromedia Flash) to AVI Converters? Link
this page shows how to create a sequence of still images from a flash sequence. from those, you can create a video file.

the above page is part of the documentation for a program called "Quake Video Maker", but you don't need Quake to use it to make video sequences. in fact it should work for what you're doing, using the method described in the first page I linked to. try it.
Vystrix Nexoth

Level: 30

Posts: 114/348
EXP: 158678
For next: 7191

Since: 03-15-04
From: somewhere between anima and animus

Since last post: 3 days
Last activity: 2 days
Posted on 04-26-04 07:51 AM, in Composing music... Link
the first one makes me think of a cave or dungeon or something. the second one is like lizardking said, or perhaps as an ending theme.
Vystrix Nexoth

Level: 30

Posts: 115/348
EXP: 158678
For next: 7191

Since: 03-15-04
From: somewhere between anima and animus

Since last post: 3 days
Last activity: 2 days
Posted on 04-28-04 04:31 AM, in PHP Online Indicator? Link
mask == alpha channel

anyhow, what you do is allocate a transparent color, but without actually making it transparent in photoshop. just have it be a plain old 256-color image, no transparency or anything. save it. then, open it in TweakPNG and define that color as being transparent, yourself, as described in my previous post.

and I assumed you were making this for an AcmlmBoard; I don't know what format phpBB uses to record a user's online status, so I can't help you there (although if it uses unix timestamps like AB does, then the basic method is the same).
Vystrix Nexoth

Level: 30

Posts: 116/348
EXP: 158678
For next: 7191

Since: 03-15-04
From: somewhere between anima and animus

Since last post: 3 days
Last activity: 2 days
Posted on 04-29-04 10:33 AM, in PHP Online Indicator? Link
4. have the system (message board, etc) keep track of the last time you were online (which, for example, AB already does). when you go to check if a user is online, compare that time to the current time.
much simpler, less klugy, is accurate to within one second, unlike the other methods which are accurate only to within 20 minutes (or however frequently the scripts are run), and
  • does not require you to change your desktop (not to mention using the buggy "active desktop")
  • works whether or not you use AIM, ICQ, or any IM program


as for the header() suggestion, it did occur to me, however, having different results returned in the same file creates a canonical name for online status. but using such a method by no means means that you do not "have to program"!
  • a program is a program, whether it's a simple "pick one or the other" script or a full-blown forum engine.
  • you still have to determine whether the user is online or not.
in this sense, it's the same amount of programming (in one method, you pick which file to pass through; in the other, you pick which file to redirect to).

I'd rather use the pass-through method myself, but the redirection method would be:

<php
if ($user_is_online)
header ('Location: online.png');
else
header ('Location: offline.png');
?>

by no means perfect code (technically, it is in violation of HTTP spec by giving relative URIs in the Location: fields) but it should work in most cases.
Vystrix Nexoth

Level: 30

Posts: 117/348
EXP: 158678
For next: 7191

Since: 03-15-04
From: somewhere between anima and animus

Since last post: 3 days
Last activity: 2 days
Posted on 04-30-04 01:46 AM, in Humerous ad (due to its stupidity) Link
I don't even use e-mail anymore unless compelled to (such as to sign up for something), and I've gotten very few pop-ups since I ditched IE a couple years ago. it's not even an issue anymore, with me anyway.


(edited by Vystrix Nexoth on 04-29-04 04:46 PM)
Vystrix Nexoth

Level: 30

Posts: 118/348
EXP: 158678
For next: 7191

Since: 03-15-04
From: somewhere between anima and animus

Since last post: 3 days
Last activity: 2 days
Posted on 05-01-04 11:06 AM, in FF1 hack announcement Link
this sounds pretty impressive. can't wait to get my hands on it.
Vystrix Nexoth

Level: 30

Posts: 119/348
EXP: 158678
For next: 7191

Since: 03-15-04
From: somewhere between anima and animus

Since last post: 3 days
Last activity: 2 days
Posted on 05-03-04 05:24 AM, in Photoshopping Thread: Glitches in the Matrix Link
the original:

Vystrix Nexoth

Level: 30

Posts: 120/348
EXP: 158678
For next: 7191

Since: 03-15-04
From: somewhere between anima and animus

Since last post: 3 days
Last activity: 2 days
Posted on 05-03-04 05:38 AM, in Who should have played Neo? Link
allow me for a moment to indulge myself in another Generic Poll/Survey
Vystrix Nexoth

Level: 30

Posts: 121/348
EXP: 158678
For next: 7191

Since: 03-15-04
From: somewhere between anima and animus

Since last post: 3 days
Last activity: 2 days
Posted on 05-03-04 08:57 AM, in VG Analogies Link
#10 is Final Fantasy. now quit bugging us about it on IRC.
Vystrix Nexoth

Level: 30

Posts: 122/348
EXP: 158678
For next: 7191

Since: 03-15-04
From: somewhere between anima and animus

Since last post: 3 days
Last activity: 2 days
Posted on 05-04-04 07:27 PM, in VG Analogies Link
*ventures a guess on #32* Life 3
Vystrix Nexoth

Level: 30

Posts: 123/348
EXP: 158678
For next: 7191

Since: 03-15-04
From: somewhere between anima and animus

Since last post: 3 days
Last activity: 2 days
Posted on 05-06-04 06:29 AM, in Photoshopping Thread: Glitches in the Matrix Link
yeah. that one's more insulting than funny. I'm sure prepubescent AOLers will get a kick out of it, though.
Vystrix Nexoth

Level: 30

Posts: 124/348
EXP: 158678
For next: 7191

Since: 03-15-04
From: somewhere between anima and animus

Since last post: 3 days
Last activity: 2 days
Posted on 05-06-04 06:32 AM, in Password Protection Link
what's that got to do with Help/Suggestions for the board? (here's a hint: nothing).

as for the problem at hand, I'm not real familiar with XP. however, you could always try right-clicking on a folder and seeing if anything looks relevant, and if not, try 'properties' and look in there. no guarantees, though.
Vystrix Nexoth

Level: 30

Posts: 126/348
EXP: 158678
For next: 7191

Since: 03-15-04
From: somewhere between anima and animus

Since last post: 3 days
Last activity: 2 days
Posted on 05-06-04 07:42 AM, in VG Analogies Link
45. increased character/weapon/magic/item name lengths, some graphics changes (copied-and-pasted-from-other-FF-games battle backgrounds, a BG battle window that's extended so the characters and enemies are in the same window, etc), and just general improvements/enhancements.

48. venturing a guess here... Golden Sword? (the most-spiffitated version of the master sword)


(edited by Vystrix Nexoth on 05-05-04 10:44 PM)
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Acmlm's Board - I2 Archive - - Posts by Vystrix Nexoth


ABII


AcmlmBoard vl.ol (11-01-05)
© 2000-2005 Acmlm, Emuz, et al



Page rendered in 0.035 seconds.