As was foretold, we've added advertisements to the forums! If you have questions, or if you encounter any bugs, please visit this thread: https://forums.penny-arcade.com/discussion/240191/forum-advertisement-faq-and-reports-thread/
Options

¿Dónde está el [CHAT]?

2456731

Posts

  • Options
    Forbe!Forbe! Registered User regular
    edited March 2008
    Most of them just seem forced. PBF is funnier, and much more clever, and accessible to a larger audience.

    TREX one was sweet.

    Forbe! on
    bv2ylq8pac8s.png
  • Options
    MagicToasterMagicToaster JapanRegistered User regular
    edited March 2008
    Woot-woot! Last post before I leave. Don't party in my chat while I'm gone, I mean it guys. These are brand new rugs I just installed.

    MagicToaster on
  • Options
    Forbe!Forbe! Registered User regular
    edited March 2008
    I already pissed all over the place. Just get outta here.

    Forbe! on
    bv2ylq8pac8s.png
  • Options
    Stupid Mr Whoopsie NameStupid Mr Whoopsie Name Registered User, ClubPA regular
    edited March 2008
    Good luck MT!

    Stupid Mr Whoopsie Name on
  • Options
    Big Luke NastyBig Luke Nasty Registered User regular
    edited March 2008
    So I spent like the last four hours making this:
    /*Assignment 4
    *Lucas Flores
    *Mosaic
    *CPSC 1301*/

    import java.awt.Color;
    public class Mosaic

    /*Main method, loops the copyPicture method to cover the targetPicture
    *choose the Lucas picture (sourcePicture) first.*/

    {
    public static void main (String[] args)
    {
    String fileName, fileName2;
    fileName=FileChooser.pickAFile();

    Picture halo;
    halo = new Picture(fileName);

    fileName2=FileChooser.pickAFile();

    Picture lucas;
    lucas = new Picture(fileName2);

    for (int x=0; x<20; x++)
    {
    for (int y=0; y<20; y++)
    {

    copyPicture(lucas, halo, x*40, y*30);
    }
    }
    lucas.show();
    lucas.write("mosaic.jpg");
    }

    /*Copies the source picture to the target picture, and blends the two for
    * the appearance of mosaic*/

    static void copyPicture(Picture halo, Picture lucas, int startingX, int startingY)

    {
    Pixel sourcePixel=null;
    Pixel targetPixel=null;

    {
    for (int sourceX = 0, targetX = startingX; sourceX < lucas.getWidth(); sourceX++, targetX++)
    {
    for (int sourceY = 0, targetY = startingY; sourceY < lucas.getHeight(); sourceY++, targetY++)
    {
    sourcePixel = lucas.getPixel(sourceX, sourceY);
    targetPixel = halo.getPixel(targetX, targetY);

    targetPixel.setColor(
    new Color( (int) (sourcePixel.getRed() * 0.2 + targetPixel.getRed() * 0.8),
    (int) (sourcePixel.getGreen() *0.2 + targetPixel.getGreen() * 0.8),
    (int) (sourcePixel.getBlue() * 0.2 + targetPixel.getBlue() * 0.8)));
    }
    }
    }
    }
    }

    turn this:
    Stash-1.jpg

    and this:
    Halo.jpg

    into this:
    mosaic.jpg


    It's supposed to look like one of those photomosaics, and I guess it does. We also had to write programs to resize the pictures into a manageable size. I like programming, but jeez it was trial and error with the loops.

    Big Luke Nasty on
    rawr
  • Options
    TamTam Registered User regular
    edited March 2008
    Forbe! wrote: »
    Horrifying I know...I can now never watch Futurama again.

    please be kidding.

    both of you.

    Tam on
  • Options
    Forbe!Forbe! Registered User regular
    edited March 2008
    Nope, you ruined it for me.

    Forbe! on
    bv2ylq8pac8s.png
  • Options
    TamTam Registered User regular
    edited March 2008
    Forbe! wrote: »
    Nope, you ruined it for me.

    You ruined it for yourself. There's nothing wrong with that song.

    Tam on
  • Options
    Angel_of_BaconAngel_of_Bacon Moderator mod
    edited March 2008
    I got a hand-addressed letter with no name on the return address, from a state that I was pretty certain that nobody I knew personally lived in, and thought for a brief instant that maybe one of you internet dudes had decided to send me shit for no discernable reason other than to creep me out a bit in a "I KNOW WHERE YOU LIVE" kind of manner.

    Turns out it was a announcement that a cousin (I, uh, think?) that I barely know got engaged to some guy I've never met.

    I suppose it speaks poorly of my character to say that I find the reality far, far less exciting than my stupid and paranoid delusion.
    send me cool shit dammit

    Angel_of_Bacon on
  • Options
    bombardierbombardier Moderator mod
    edited March 2008
    So I just discovered a new, fantastic webcomic. Kinda reminds me of Perry Bible Fellowship. Pretty damn good art and consistently funny. http://truckbearingkibble.com/ if anyone has ever heard of it.
    He posted here when he first started that, I think.

    bombardier on
  • Options
    Forbe!Forbe! Registered User regular
    edited March 2008
    Tam wrote: »
    Forbe! wrote: »
    Nope, you ruined it for me.

    You ruined it for yourself. There's nothing wrong with that song.


    NOPE, YOU FUCKING RUINED IT
    send me cool shit dammit

    Please post your address on this public internet forum so I can send you stuffs.

    Forbe! on
    bv2ylq8pac8s.png
  • Options
    TamTam Registered User regular
    edited March 2008
    Forbe! wrote: »
    Tam wrote: »
    Forbe! wrote: »
    Nope, you ruined it for me.

    You ruined it for yourself. There's nothing wrong with that song.


    NOPE, YOU FUCKING RUINED IT

    Nuh-uh

    Tam on
  • Options
    Angel_of_BaconAngel_of_Bacon Moderator mod
    edited March 2008
    Forbe! wrote: »
    send me cool shit dammit

    Please post your address on this public internet forum so I can send you stuffs.

    But where's the fun being a creepy internet guy if you don't have to hack into a government database to find that out?

    Angel_of_Bacon on
  • Options
    Forbe!Forbe! Registered User regular
    edited March 2008
    :{{{{{



    I ALREADY HAVE IT, BACON.

    Forbe! on
    bv2ylq8pac8s.png
  • Options
    DeeLockDeeLock Registered User regular
    edited March 2008
    Why did stupid me wait till the night before to do a MASSIVE project that's due tomorrow...

    DeeLock on
  • Options
    FlayFlay Registered User regular
    edited March 2008
    So I noticed the other day that there's a new dinotopia book out now. Can anyone confirm that it's just as awesome (art-wise) as the last two?

    EDIT: Holy crap, there's four of them?!

    Flay on
  • Options
    no_toastno_toast Registered User regular
    edited March 2008
    I have tested this myself, so if you want to send me creepy hand-written stuff just send it to:

    ---
    My Name
    Helsinki, Finland ( In Europe you know)
    ---

    It will come through. I used to work at the post office and they have people called "the wolf men" whose only job is to make sure that poorly written addresses find the right person.

    no_toast on
  • Options
    EnefEnef Registered User regular
    edited March 2008
    Are they actually wolves?

    Enef on
  • Options
    GrifterGrifter BermudaModerator mod
    edited March 2008
    bombardier wrote: »
    So I just discovered a new, fantastic webcomic. Kinda reminds me of Perry Bible Fellowship. Pretty damn good art and consistently funny. http://truckbearingkibble.com/ if anyone has ever heard of it.
    He posted here when he first started that, I think.

    Yeah, I remember the I Platypus comic.

    Grifter on
  • Options
    ProspicienceProspicience The Raven King DenvemoloradoRegistered User regular
    edited March 2008
    Grifter wrote: »
    bombardier wrote: »
    So I just discovered a new, fantastic webcomic. Kinda reminds me of Perry Bible Fellowship. Pretty damn good art and consistently funny. http://truckbearingkibble.com/ if anyone has ever heard of it.
    He posted here when he first started that, I think.

    Yeah, I remember the I Platypus comic.

    The T-Rex western one is gold.

    Edit: and yeah I remember the platypus one too because I was on a platypus kick at the time drawing many many platypus so that made my day.

    Prospicience on
  • Options
    (ohms)Crunchy(ohms)Crunchy Registered User regular
    edited March 2008
    Grifter wrote: »
    bombardier wrote: »
    So I just discovered a new, fantastic webcomic. Kinda reminds me of Perry Bible Fellowship. Pretty damn good art and consistently funny. http://truckbearingkibble.com/ if anyone has ever heard of it.
    He posted here when he first started that, I think.

    Yeah, I remember the I Platypus comic.

    The T-Rex western one is gold.

    Edit: and yeah I remember the platypus one too because I was on a platypus kick at the time drawing many many platypus so that made my day.

    I just laughed out loud when I read the T-Rex Western one, hahah, so good.

    (ohms)Crunchy on
    14e9iqh.jpg
  • Options
    DMACDMAC Come at me, bro! Moderator mod
    edited March 2008
    Posted this in Graphic Violence but people here might want to check it out too.

    Project Rooftop is holding a contest to redesign Iron Man's armor.

    DMAC on
  • Options
    Forbe!Forbe! Registered User regular
    edited March 2008
    Baaaaah, anyone have any experience writing art related resumes? Maybe wouldnt mind looking over mine :{

    Forbe! on
    bv2ylq8pac8s.png
  • Options
    GrifterGrifter BermudaModerator mod
    edited March 2008
    Sorry mate. I could help with a tech resume but I wouldn't be much help with an art one.

    Grifter on
  • Options
    Forbe!Forbe! Registered User regular
    edited March 2008
    Also, if anyone needs slides made EVER, I suggest iprintfromhome.com Sent them in monday and got them today. Amazing.

    Forbe! on
    bv2ylq8pac8s.png
  • Options
    MaximasXXZMaximasXXZ Registered User regular
    edited March 2008
    I get to go home tomorrow! After being stuck in Hawaii since Iraq, I finally get to go home and see my family for the first time in like 8 months. I'm excited!

    Plus when I come back I get to start being the new Combat Photographer for 3rd Marines. :D

    MaximasXXZ on
    zombiegirl8ki.gif
    TL_Sigblock.jpg
    PSN: MaximasXXZ XBOX Live: SneakyMcSnipe
  • Options
    GrifterGrifter BermudaModerator mod
    edited March 2008
    Tell your mom that I said "Hi babycakes!"

    Grifter on
  • Options
    erisian popeerisian pope Registered User regular
    edited March 2008
    Hey, I just wanted to go back 3 pages back and then back into the other Chat thread and back a couple pages to where the discussion was on books and Cormack McCarthy .. YES! He is a fantastic writer. I have (counts in his head) 7 or 8 of his books including The Road (very kick ass), No Country (very kick ass), All the Pretty Horses (the whole trilogy is kick ass) and want to up the ante to his book Blood Meridian. This is what Steven King wishes he could have written when he started the Dark Tower series. Blood Meridian is fucking magic.


    Ok, bye.

    erisian pope on
  • Options
    UnknownSaintUnknownSaint Kasyn Registered User regular
    edited March 2008
    I was just going to pick up The Road today, seeing as I'm finishing up my most recent Eggers bonanza.

    UnknownSaint on
  • Options
    MaximasXXZMaximasXXZ Registered User regular
    edited March 2008
    Grifter wrote: »
    Tell your mom that I said "Hi babycakes!"

    I doubt she'll remember you. You both were pretty drunk... you'd have to be.

    MaximasXXZ on
    zombiegirl8ki.gif
    TL_Sigblock.jpg
    PSN: MaximasXXZ XBOX Live: SneakyMcSnipe
  • Options
    Uncle LongUncle Long Registered User regular
    edited March 2008
    Well, my new camera body came in today. Now, because I'm like a kid that got what he wanted at Christmas with this sort of thing, I have a raging movement based pain in my wrist. Woot.

    Uncle Long on
  • Options
    no_toastno_toast Registered User regular
    edited March 2008
    Enef wrote: »
    Are they actually wolves?

    Extremely hairy, yes.

    Wolves, I hope not.

    no_toast on
  • Options
    GrifterGrifter BermudaModerator mod
    edited March 2008
    Just had a new project dropped in my lap. Seems that I get to install the new version SMS and test it out because a client wants to use it. Then I made the silly comment "Why don't we use it on our own network. It's a good tool. I used it when I was at a previous employer." So I think I'm pretty much going to be in charge of yet another piece of the pie. I need a raise.

    Grifter on
  • Options
    Big Luke NastyBig Luke Nasty Registered User regular
    edited March 2008
    If your suggestions always go over that well, why not suggest a raise? Worth a try right?

    Big Luke Nasty on
    rawr
  • Options
    TamTam Registered User regular
    edited March 2008
    Grifter wrote: »
    Just had a new project dropped in my lap. Seems that I get to install the new version SMS and test it out because a client wants to use it. Then I made the silly comment "Why don't we use it on our own network. It's a good tool. I used it when I was at a previous employer." So I think I'm pretty much going to be in charge of yet another piece of the pie. I need a raise.

    Demand one. Politely. Seriously, if you're putting that much in and you don't see a single extra dime, you should do something about it.

    In a completely unrelated matter, I tried Oblivion today at a cyber cafe for the first time and really liked it. I want to get it, but my laptop is not a god-machine like the PCs in th cyber cafe.

    I have 2gb RAM, Core 2 Duo 2.0ghz, 256mb nVidia GeForce 8600M GS- will I be able to run it?

    Tam on
  • Options
    RavenshadowRavenshadow Registered User regular
    edited March 2008
    thats a really nice laptop

    http://www.notebookcheck.net/NVIDIA-GeForce-8600M-GS.3707.0.html

    yes, you can run oblivion well with that machine

    Ravenshadow on
  • Options
    TamTam Registered User regular
    edited March 2008
    thats a really nice laptop

    http://www.notebookcheck.net/NVIDIA-GeForce-8600M-GS.3707.0.html

    yes, you can run oblivion well with that machine

    In regard to the most important hardware, it really is. Speakers, screen glare, and battery life suck though.

    Tam on
  • Options
    bombardierbombardier Moderator mod
    edited March 2008
    I have a desktop with a Core 2 Duo 2ghz, 2gb RAM, and a GeForce 8600 GTS 256mb and it runs Oblivion in 1600x1200 at max everything flawlessly, so you should be fine.

    bombardier on
  • Options
    in_absentiain_absentia Registered User regular
    edited March 2008
    I'm running a desktop with Core Duo 2.6 ghz, 1gb RAM, and GeForce 6600 GT

    I wish i could run oblivion like that.

    in_absentia on
  • Options
    beavotronbeavotron Registered User regular
    edited March 2008
    oblivion's boring anyways

    beavotron on
This discussion has been closed.