As fiftysixk suggests, though, saying goodbye to Flash can also be an opportunity. There are dozens of ways to bypass its plug-in and stream video through external players. There's PPC Media Center, MacTubes, YouView, TenFourFox's QTE plug-in, various Mplayer plus Youtube-dl hacks, to name a few. The Youtube-dl hacks can be interesting. Youtube-dl supports a ton of sites, not just Youtube, and is frequently updated. In fact, it's the backend for PowerPC Media Center. You can also use Youtube-dl with Mplayer, with a terminal command like this (UPDATE: it appears this no longer works as Youtube broke the "--prefer-insecure" option, natch):
mplayer -quiet -framedrop -cache 8192 -cache-min 10 -cookies -cookies-file ~/.cookie.txt $(youtube-dl -gf 18 --prefer-insecure --cookies ~/.cookie.txt $(pbpaste))
Unpacking it from the inside out, "pbpaste" pastes the copied video URL into the Youtube-dl command retrieving the direct video URL, which is then passed to Mplayer to play. The "--prefer-insecure" option is needed because Mplayer can't play HTTPS links. However, Linux users can use Mpv and drop that option since Mpv plays HTTPS links just fine. Also on Linux, you'd want to install the package
xsel
and replace "pbpaste" above with "xsel --clipboard". Then save it as a bash script and you're rockin'.As for Java, a faustian informant tells me there's a Java 6 version available for OS X PowerPC, but I believe it's too old to have the security fixes for the Flashback virus. There's a thread at the Minecraft Forums talking about it, and people also talk about using it to play Runescape, but it's still a huge security hole. You don't want to do any gaming like that unless you can completely disconnect from your network.
Let's stay safe out there!