One programmer in anger says to the second programmer:
- “Go to Hell!”
The second programmer replies, in obvious repulsion:
- “Ugh, you used goto!”
LOL
One programmer in anger says to the second programmer:
- “Go to Hell!”
The second programmer replies, in obvious repulsion:
- “Ugh, you used goto!”
LOL
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.
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


