Recent content by MikeF98765

  1. M

    My latest website...

    make a bookmarklet for this, would be super useful.
  2. M

    Cocoa Forum

    Hey Guys, I've started writing cocoa for osx and iphone and was wondering if anyone knew of a good forum for this. I've found lots of good tutorials and docs, but nowhere to just ask a question.
  3. M

    Merging blog with existing rails app

    Hi Guys, I want to add a blog to my rails site. I might end up just writing a super simple blog from scratch, but it would be nice if i could incorporate typo into it. How do i take an app like typo, and integrate it to an existing rails page? I basically want to click on the news tab, and...
  4. M

    Java question

    So i've rewritten my stuff, it was more for my curiosity. I'm brand new to java and I was interested in how exactly static calls worked. Your solution, though obviously awful, was interesting, thanks. This is very much a real project for work, and it ended up being one of those "throw...
  5. M

    Java question

    Ok so... i have a class with a static method doThing(). I want to subclass this class, and when the subclass calls the method doThing, i want it to know what class called it (the subclass). So i have public class BaseClass{ public static doThing(){ //Print name of class } }...
  6. M

    Accepting Credit Card Payments

    I am about to start creating a webstore for a client, and I need to know what are some of the best options for accepting payments. It is a wholesale vendor so I don't think they want to use paypal. Does anyone have any advice on which systems would work well for this? I want something that is...
  7. M

    Making links open in sidebar

    So i know that in firefox you can make your own bookmarks set to open in the sidebar. Is there a way i can make a link to automatically open in the sidebar? like set the target to sidebar, but also have it so if they drag the link to their toolbar it will still opne in the sidebar when they...
  8. M

    WSDL Error, worked fine then...

    So i've had this code, it worked a couple weeks ago, i dont think i changed anything, and all of a sudden i get this error Parse error: parse error, unexpected T_STRING in /home/myfree/public_html/mike/lib/nusoap.php(6985) : eval()'d code on line 1 Fatal error: Cannot instantiate non-existent...
  9. M

    corrupted rar file?

    Hey i am trying to restore a backup of a site i did a while back, and the rar file doesn't seem to want to unrar. I know it was passworded, and i even had the password in the filename but it won't seem to work. Is there any utilities i can use to open up a broken archive? I would REALLY like...
  10. M

    script.aculo.us effects

    what i need is for it to actually "grow" in an animation. Script.aculo.us already has one that makes it grow bigger, but it's equal growth in each distance.
  11. M

    script.aculo.us effects

    I want an effect that basically takes a div and makes it grow to cover almost the whole window. Is there an effect that does this? Right now I've been playing with the scale effect, but i can't get it to scale the right way. Is there an easy way to make it scale larger up to the point where it...
  12. M

    Import only some photos?

    Is it possible to import only a few photos off my camera in Iphoto? I have one pic i want to get off of it, but 477 pics from my trip that i already transferred. I know there is an option to not download doubles, but it still takes a really long time to get tothe one i want. Is this at all...
  13. M

    Ajax Implementation question

    i understand how ajax works, but these method still require an action from the page to initiate. What i want to happen is page 1 is just sitting there, i hit a button on page 2, and something happens on page 1.
  14. M

    Ajax Implementation question

    More straightforward question: How do i get a remote javascript call to trigger an action (any action) on my PHP page which is already open? All i can think of is some type of constant polling but that's not a very good practice...
  15. M

    Ajax Implementation question

    So i'm trying to make an AJAX application, and here is what i need to do. I want to have a javascript bookmarklet that basically gathers teh title, address, and selected text of the page you're on. This part i've figured out, but what i need to know is what is the best way to send this...
Back
Top