Posts

Showing posts from October, 2011

intensivstation :: CSS Templates

intensivstation :: CSS Templates : 'via Blog this'

Character Sets / Character Encoding Issues [Web Application Component Toolkit]

Character Sets / Character Encoding Issues [Web Application Component Toolkit] : 'via Blog this'

10 PHP code snippets for working with strings | CatsWhoCode.com

10 PHP code snippets for working with strings | CatsWhoCode.com : 'via Blog this'

Reading the "clean" text from DOCX and ODT

Reading the "clean" text from DOCX and ODT : 'via Blog this'

Introducing Android WebDriver

Image
Introducing Android WebDriver : [This post is by Dounia Berrada, an engineer on the EngTools team. — Tim Bray] Selenium WebDriver is a browser automation tool which provides a lightweight and elegant way for testing web apps. Selenium WebDriver is now available as an SDK extra in the Android SDK, and supports 2.3 (Gingerbread) and onwards! Whether or not your site is optimized for mobile browsers, you can be sure that users will be accessing it from their phones and tablets. WebDriver makes it easy to write automated tests that ensure your site works correctly when viewed from the Android browser. We’ll walk you through some basics about WebDriver and look at it in action. WebDriver Basics WebDriver tests are end-to-end tests that exercise the web application just like a real user would. WebDriver models user interactions with a web page such as finger flicks, finger scrolls and long presses. It can rotate the display and interact with HTML5 features such as local storage, session stor

How to Create A Simple Web-based Chat Application | Nettuts+

How to Create A Simple Web-based Chat Application | Nettuts+ : 'via Blog this'

10 Things You Should Know About Being A Web Designer

Image
10 Things You Should Know About Being A Web Designer : Web design is not the most noble job in the world. We don’t save lives or build houses for the poor kids of Africa. We create visual experiences on the internet. Our job has its own ups and downs and rules that not everybody agrees with and there are obviously things you should know about this career if you plan on getting serious about it. You can find here a list of things you might want to know about being a web designer that will help on easing you in the business. Clients are hard to deal with Well, not all of them, but the majority of them will create a lot of stress for you and you won’t be happy to hear from them again soon. They put the money in your pocket, so you always have to try and bring their vision to life. There is a very funny illustration on the internet that talks about this topic better than I could ever; you can enjoy it here . Many times you will have to deal with this situation and might design a product yo

How to Create iOS-like Home Screen using CoffeeScript

Image
How to Create iOS-like Home Screen using CoffeeScript : Tutorialzine has written a great tutorial: Create an iOS-like Home Screen using CoffeeScript . CoffeeScript is a neat programming language meant to enhance the good parts of JavaScript, while working around the not so good. It makes OOP easy and introduces a number of useful additions such as comprehensions, new syntax for functions and scope handling, along with numerous small improvements. But don’t fall pray to the hype surrounding it just yet – CoffeeScript isn’t going to replace JavaScript any time soon, as it sacrifices some of the agility that JS provides in attempt to make development easier. The CS way might not be the best fit for your project. Requirements: CoffeeScript Demo: http://demo.tutorialzine.com/2011/10/ios-homescreen… License: License Free Related Posts How to Create a “Who is Online” Widget Text2PNG Converts Text to PNG with Javascript How to Create a Google Wave-like History Slider How to Create a Sponso

List.js - Add search, sort and flexibility to plain HTML lists with cross-browser native JavaScript by @javve

List.js - Add search, sort and flexibility to plain HTML lists with cross-browser native JavaScript by @javve : 'via Blog this'

How to Create a Facebook App | Nettuts+

How to Create a Facebook App | Nettuts+ : 'via Blog this'

prettyCheckboxes | Stéphane Caron – No Margin For Errors

prettyCheckboxes | Stéphane Caron – No Margin For Errors : 'via Blog this'

msword - Reading/Writing a MS Word file in PHP - Stack Overflow

msword - Reading/Writing a MS Word file in PHP - Stack Overflow : 'via Blog this'

boedesign – canadian based web developer eh » Blog Archive » Keystrokes for jQuery

boedesign – canadian based web developer eh » Blog Archive » Keystrokes for jQuery : "$(document).bind('keystrokes.SingleItem', { // The key pattern you set your element to listen for keys: ['m', 'arrow down+r'] }, function(event){ // Unbind this event after it's been successfully typed $(this).unbind(event.keystrokes.stack_item.name); alert('You typed : ' + event.keystrokes.stack_item.keys.join(', ') + ' . You cannot type it again because it has been unbound!'); });" 'via Blog this'

tesseract-ocr - An OCR Engine that was developed at HP Labs between 1985 and 1995... and now at Google. - Google Project Hosting

tesseract-ocr - An OCR Engine that was developed at HP Labs between 1985 and 1995... and now at Google. - Google Project Hosting : 'via Blog this'

phpOCR (recognition, image recognition, character, training, recognize, winner) - PHP Classes

phpOCR (recognition, image recognition, character, training, recognize, winner) - PHP Classes : 'via Blog this'

Data Grid nav

Image
Data Grid nav : Package: Data Grid nav Summary: Display MySQL query results in an HTML table Groups: Databases , HTML Author: Sérgio Micaelo Soares Description: This class can display MySQL query results in an HTML table... Read more at http://www.phpclasses.org/package/7175-PHP-Display-MySQL-query-results-in-an-HTML-table.html

PHP Security Tips

http://stackoverflow.com/questions/4632663/is-htmlentities-and-mysql-real-escape-string-enough-for-cleaning-user-input-i

iPhone SDK Tutorial: Build your very own Web Browser! | dBlog.com.au

iPhone SDK Tutorial: Build your very own Web Browser! | dBlog.com.au : 'via Blog this'

Import Excel Data as XML into MySQL with PHP

http://www.ibm.com/developerworks/opensource/library/os-phpexcel/

Highlight Text in Textarea

http://www.sitepoint.com/life-autocomplete-textboxes/

8 essential checks on securing PHP | Anson Cheung

8 essential checks on securing PHP | Anson Cheung : 'via Blog this'

Update Select Box Content with AJAX

http://roshanbh.com.np/2007/12/change-dropdown-list-options-values-from-database-with-ajax-and-php.html

Textbox Manipulate Selected Text with JavaScript

<script type="text/javascript"> function blah() { var ta = document.getElementById("test"); if (document.selection) { str = document.selection.createRange().text document.selection.createRange().text = "[b]" + str + "[/b]"; return true; } else if (ta.selectionStart) { var startPos = ta.selectionStart; var endPos = ta.selectionEnd; var str = ta.value.substring(startPos, endPos); ta.value = ta.value.substring(0, startPos) + "[b]" + str + "[/b]" + ta.value.substring(endPos, ta.value.length); return true; } else { return false; } } </script> <input type="button" value="Bold" onclick="blah()" /> <br /> <textarea id="test" style="height:150px"> This is a test to see if the bold tags will work.