just click read more on whichever one tickles your fancy
With so many new trends advancing every year it can be difficult keeping up with the industry. Designers and FE developers have been deeply ingrained into the newer CSS3 properties, determining the ultimate browser support and quirky hacks.See some of my CSS3 and CSS2 snippets that makes your life easier. read more
Literally one of the most used sql queries for me. Although you should stay away from looping in SQL generally, there is still a space for it. And using Cursors are akward at the best of times. Here is an option that doesnt use Cursors read more
There is a lot of code out there, and remembering all of them is not always possible. Here are 5 random js snippets that I keep close by since they always seem to pop up read more
This snippet will validate that a properly formatted e-mail address is entered in a form, it cannot guarantee that the e-mail address is real, there is no way to check for that with JavaScript. read more
JavaScript Object Notation (JSON) is a standard text-based format for representing structured data based on JavaScript object syntax. It is commonly used for transmitting data in web applications (e.g., sending some data from the server to the client, so it can be displayed on a web page, or vice versa). You'll come across it quite often, so in this article we give you all you need to work with JSON using JavaScript, including parsing JSON so you can access data within it, and creating JSON. read more