Articles
Photography
Ask a question, get it posted

Disable enter button to submit a form

So you have an HTML form but you dont want it to submit by pressing enter? … here’s what to do. You will obviously need JQuery … but here’s the code: $('form').bind("keyup", function(e) { var code = e.keyCode || e.which; if (code == 13) { e.preventDefault(); return false; } });

Taking Screenshots on a Mac

Ok so you mite be a new Mac user brand new to the world of technology or maybe a Windows user that is used to using the Print Screen button, or a Mac user that has never needed an image of or print of his or her screen before.
In any case this short article will guide you through capturing your screen on a Mac and its features and settings.
Continue reading…

Postgres command line shortcuts

OK I have been delving a little into postgres lately and had to do some basic commands … came across these handy shortcuts and thought I’d make a list of them for easy access. Continue reading…

Start, Restart or Stop Apache Web Server from Command Prompt

Show HTML in an HTML file

Dont want to render HTML on a web page or HTML document? All you need to do is use the <XMP> tag here is an example: <xmp>insert code here<xmp>

CSS2 properties

The beginning of what will probably be a long list of posts … we will be adding at least 1 css2 property per day that will lead to all CSS2 properties in sort of a mini library for all you readers. Each property will be posted in detail and explained for beginners to advanced css users. So stay posted and don’t hesitate to ask any questions or make and requests.