sqli scanner for windows
Sketch.js
Sketch.js is an easy-to-use jQuery plugin that allows you to create canvases upon which visitors can draw. The code is partially inspired by William Malone’s drawing app tutorial as well as CanvasPaint.
Email Servers and Ports
The incoming mail server is the server associated with you email address account. There can not be more then one incoming mail server for an email account. In order to access your incoming messages, you need an email client: a program that can retrieve email from an email account, allowing a user to read, forward, delete, and reply to email messages. Depending on your mail server, you can use a dedicated email client (like Outlook Express) or a web browser (like Internet Explorer, for accessing web based email accounts, like Hotmail). The mail is held in storage on the incoming mail server until you download it. Once you have downloaded your mail from the mail server it cannot be downloaded again. In order to download your Email, you must have the correct settings configured in your Email client program. Most incoming mail servers are using one of the following protocols: IMAP, POP3, HTTP.
jQuery Touch Plugin
Here’s an interesting-looking new jQuery plugin release for those of you doing iPhone Web development:
Checking if my page is embedded in an iframe
You could use JavaScript, I think something like the following should work:
Continue reading “Checking if my page is embedded in an iframe”
PHP heredoc syntax
In order to allow people to easily write large amounts of text from within PHP, but without the need to constantly escape things, heredoc syntax was developed. Heredoc might be a little tricky to understand at first, but it’s actually a big help. Put simply, it allows you to define your own string limiter so that you can make it something other than a double or single quote. So, for example, we could use the string "EOT" (end of text) for our delimiter, meaning that we can use double quotes and single quotes freely within the body of the text – the string only ends when we type EOT.