Results 1 to 22 of 22

Thread: Facebook pokes and pop-ups

  1. #1

    Thread Starter
    Fanatic Member staticbob's Avatar
    Join Date
    Jan 2005
    Location
    Manchestershire, UK Cabbage: I do
    Posts
    619

    Facebook pokes and pop-ups

    Guys, sorry for my ignorance , but what technology does facebook use?

    When you poke, or message somebody, you get the nice pop-ups that fade out.

    Whats that then?

    Bob
    "I dislike 7 am. If 7 am were a person, I would punch 7 am in the biscuits." - Paul Ryan, DailyRamblings

  2. #2
    Hyperactive Member
    Join Date
    Jul 2007
    Location
     
    Posts
    453

    Re: Facebook pokes and pop-ups

    probably js and ajax n stuff...
    Haikus are easy.
    But sometimes they don't make sense.
    Refrigerator.

  3. #3
    Hyperactive Member capsulecorpjx's Avatar
    Join Date
    May 2005
    Location
    Renton, WA
    Posts
    288

    Re: Facebook pokes and pop-ups

    Quote Originally Posted by Bobalandi
    probably js and ajax n stuff...
    What's the server side tech? Java Servlets, ASP or PHP?
    "I like to run on treadmills, because at least I know I'm getting nowhere."
    - Me

  4. #4
    Banned timeshifter's Avatar
    Join Date
    Mar 2004
    Location
    at my desk
    Posts
    2,465

    Re: Facebook pokes and pop-ups

    Probably not JS... MySpace is as of recently, ASP.NET... wouldn't surprise me if Facebook was too. It's designed to do that kind of thing.

  5. #5
    Hyperactive Member
    Join Date
    Jul 2007
    Location
     
    Posts
    453

    Re: Facebook pokes and pop-ups

    Look at the ending on the url, aspx, html, php, etc...
    Haikus are easy.
    But sometimes they don't make sense.
    Refrigerator.

  6. #6
    Banned timeshifter's Avatar
    Join Date
    Mar 2004
    Location
    at my desk
    Posts
    2,465

    Re: Facebook pokes and pop-ups

    Doesn't help. trust me. I have several sites I've built that use almost exclusively .htm extensions, even though there's only one page you're looking at and it's a .aspx page.

    URL rewriting is fun stuff.

  7. #7

    Thread Starter
    Fanatic Member staticbob's Avatar
    Join Date
    Jan 2005
    Location
    Manchestershire, UK Cabbage: I do
    Posts
    619

    Re: Facebook pokes and pop-ups

    Well whatever it is, how do you go about coding those pop-up windows that you see when you poke ? I want an action confirmation message on a few asp.net pages and that kind of actionless pop-up message that fades out would be perfect.

    Also, I have suggested that you should be able to set direction on pokes. For most people I know, I would like to poke them in the eyes, or give them a sharp jab in the ribs.
    "I dislike 7 am. If 7 am were a person, I would punch 7 am in the biscuits." - Paul Ryan, DailyRamblings

  8. #8
    Fanatic Member kregg's Avatar
    Join Date
    Feb 2006
    Location
    UK
    Posts
    524

    Re: Facebook pokes and pop-ups

    I've been building apps on Facebook, and if I was to guess, it would probably be a mock ajax written in PHP, or something with Java involved.

  9. #9
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: Facebook pokes and pop-ups

    I know those poke dialog very VERY well. I wrote this:

    https://addons.mozilla.org/en-US/firefox/addon/3910

    Yes. They do use PHP. And yes. They do use mock ajax.

    Here is a good starting place for an AJAX library:

    http://jquery.com/
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  10. #10

    Thread Starter
    Fanatic Member staticbob's Avatar
    Join Date
    Jan 2005
    Location
    Manchestershire, UK Cabbage: I do
    Posts
    619

    Re: Facebook pokes and pop-ups

    Cheers,

    So what would it take to write this sort of poke message for asp.net, just to inform users that their action is confirmed, then fade away. Dont need any user intervention. I'd like to use this on lots of different screens with different messages on each. Is it easy enough to make this a re-useable control as you would anything else?

    Bob
    "I dislike 7 am. If 7 am were a person, I would punch 7 am in the biscuits." - Paul Ryan, DailyRamblings

  11. #11
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: Facebook pokes and pop-ups

    jQuery is what I would recommend. Read some tutorials on jQuery and on AJAX in general. When you have a specific question, we can help you with that, but we can't write the code for you.

    As far as reusability, that's totally up to how well you program it.
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  12. #12

    Thread Starter
    Fanatic Member staticbob's Avatar
    Join Date
    Jan 2005
    Location
    Manchestershire, UK Cabbage: I do
    Posts
    619

    Re: Facebook pokes and pop-ups

    Cool, I'm onto it. Its not rocket science is it!
    "I dislike 7 am. If 7 am were a person, I would punch 7 am in the biscuits." - Paul Ryan, DailyRamblings

  13. #13
    Hyperactive Member capsulecorpjx's Avatar
    Join Date
    May 2005
    Location
    Renton, WA
    Posts
    288

    Re: Facebook pokes and pop-ups

    php just seems to be king. I think many major sites use php on linux or unix servers it seems.

    ASP.NET? The Windows Servers probably are not as stable or simple to maintain as bare bones command line Linux servers, plus I think ASP.NET, though easier to program, is probably not as fast as php.
    "I like to run on treadmills, because at least I know I'm getting nowhere."
    - Me

  14. #14
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: Facebook pokes and pop-ups

    Let's just put it this way:

    Facebook = Linux+PHP
    MySpace = Windows+ASP.NET

    You decide which runs better
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  15. #15
    WiggleWiggle dclamp's Avatar
    Join Date
    Aug 2006
    Posts
    3,527

    Re: Facebook pokes and pop-ups

    myspace constantly has errors... PHP FTW! WOOT!
    My usual boring signature: Something

  16. #16
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: Facebook pokes and pop-ups

    To be fair, it's more likely that MySpace (even with billions of dollars) just can't seem to hire good programers and write a proper website. I'm sure ASP.NET is decent (although I've never tried it), but I'm sure PHP is better in most regards.
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  17. #17
    Hyperactive Member
    Join Date
    Jul 2007
    Location
     
    Posts
    453

    Re: Facebook pokes and pop-ups

    Well, with far over like 1million people on at once it is kind of understandable, dont you think?
    Haikus are easy.
    But sometimes they don't make sense.
    Refrigerator.

  18. #18
    Banned timeshifter's Avatar
    Join Date
    Mar 2004
    Location
    at my desk
    Posts
    2,465

    Re: Facebook pokes and pop-ups

    Quote Originally Posted by eyeRmonkey
    To be fair, it's more likely that MySpace (even with billions of dollars) just can't seem to hire good programers and write a proper website. I'm sure ASP.NET is decent (although I've never tried it), but I'm sure PHP is better in most regards.
    I'm blocking you.

    Right now.

    You suck.

  19. #19
    WiggleWiggle dclamp's Avatar
    Join Date
    Aug 2006
    Posts
    3,527

    Re: Facebook pokes and pop-ups

    [Anti-Timeshifter Encryption]

    @eyeRmonkey: just to let you know, ts is a .NET freak. If you dont tell him what he wants to hear (ex: I <3 ASP.NET!) then he hates you forever.

    [/Anti-Timeshifter Encryption]
    My usual boring signature: Something

  20. #20
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: Facebook pokes and pop-ups

    @dclamp: Just to let you know, ts <3s me too much to block me.
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  21. #21
    Banned timeshifter's Avatar
    Join Date
    Mar 2004
    Location
    at my desk
    Posts
    2,465

    Re: Facebook pokes and pop-ups

    Blast... he knows...

  22. #22
    WiggleWiggle dclamp's Avatar
    Join Date
    Aug 2006
    Posts
    3,527

    Re: Facebook pokes and pop-ups

    OH NO! you didnt use Anti-Timeshifter Encryption!!!! GAH! now we are all going to die
    My usual boring signature: Something

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width