Archive for the ‘php’ Category

Remember Goto statement?

Thursday, September 3rd, 2009

One programmer in anger says to the second programmer:
- “Go to Hell!”

The second programmer replies, in obvious repulsion:
- “Ugh, you used goto!”

LOL

Using SVN with Subclipse

Saturday, May 2nd, 2009

If you want to know the basics of SVN with Subclipse there’s no need to add anymore than what this article already says.

http://www.saltycrane.com/blog/2007/03/how-to-setup-subclipse-project-to/

Was really helpful and clear to me.

IE6 CSS fixed footer hack

Friday, June 27th, 2008

In order to have a fixed footer on your HTML page that stays fixed at the bottom even if the user scrolls and that it works in IE6, you should use this hack:

<!–[if lte IE 6]>
<style type=”text/css”>
body {height:100%; overflow-y:auto;}
html {overflow-x:auto; overflow-y:hidden;}
* html #footer {position:absolute;}
</style>
<![endif]–>

Check this working example: http://www.pleyadechile.cl

Making PDT work with Eclipse 3.2

Wednesday, January 9th, 2008
  1. Go to Help>>Software Updates>>Find and Install. And select “Search new features to install”.
  2. Click “New Remote Site” button.
  3. Enter a name and URL (http://download.eclipse.org/tools/pdt/updates/). Click “OK” and then “Finish”.
    Making PDT work with Eclipse 3.2 Snapshot 1
  4. Uncheck “Show the latest version of a feature only”.
    Making PDT work with Eclipse 3.2 Snapshot 2
  5. Expand “PDT” and select “PDT Feature 0.7.0.v200…”.
    Making PDT work with Eclipse 3.2 Snapshot 3
    Version 0.7 is the one that works with Eclipse 3.2. If you want to install a newer version you will need Eclipse platform 3.3.
  6. Click “Finish” and after a few clicks more you will have PDTFeature working on Eclipse 3.2.