10 Free Online Books for Web Designers
10 Free Online Books for Web Designers
There’s a never ending supply of information out there for us web designers. If there’s something we need to learn, we can find it in one form or another. Sometimes it may be on a blog or it could be in a book. While you may have to shell our some money for a good web design book, there are a number of them out that have online versions that are totally free. Here are 10 you should find very useful.
This entry was posted on July 28, 2010, 1:44 pm and is filed under Web Development. You can follow any responses to this entry through RSS 2.0. You can leave a response, or trackback from your own site.
No trackbacks yet.
Free Webinar: MyEclipse for Spring 8.6
August 20, 2010 - 11:27 am
Tags: eclipse, Spring, Web Development, webinar
Posted in Internet, Spring, Web Development | 2 Comments
Tuesday, August 31, 2010 11:00 AM – 12:30 PM CDT This webinar deep dives into the new Adobe Flex and Google Web Toolkit (GWT) scaffolding options that are available in MyEclipse for Spring 8.6. We’ll cover the following: * How does it work? See how to quickly generate working GWT and Flex applications from existing [...]
HTML5
July 29, 2010 - 3:56 pm
Tags: HTML5, javascript, Web Development
Posted in Web Development | No Comments
I’ve been working on HTML5 recently. It seems very powerful and also enjoyable I wanted to share some websites about HTML5, some tutorials, demos etc. Tutorials, demos, apps, everyhing from www.canvasdemos.com A very good example from Mehdi A very good full tutorial from Mark Pilgrim So many samples from html5gallery.com Again everything from www.html5rocks.com Blowing [...]
AJAX Table with server side paging, filtering and sorting by DWR – Part II
May 10, 2010 - 12:06 pm
Tags: AJAX, dwr, javascript, Spring, Web Development
Posted in Spring, Web Development | 12 Comments
// At last, Part II is here You can find Part I here. We are going to implement filtering and sorting in this post. JSP Page: <table border=”1″> <thead> <tr> <th id=”orderOrderID” onclick=”sortTable(this)”>OrderID</th> <th id=”orderAccount” onclick=”sortTable(this)”>Account</th> <th id=”orderProduct” onclick=”sortTable(this)”>Product</th> <th>Qty</th> <th>Price </th> <th id=”orderStatus” onclick=”sortTable(this)”>Status</th> <th>Last Update</th> </tr> <tr> <th style=”background-color:#e6e6e6″><select id=”accountFilter” name=”accountFilter” onchange=”filterTable(this)” style=”width:55px;”> [...]
MyEclipse 8.0 and MyEclipse for Spring plugin
February 5, 2010 - 10:55 am
Tags: Java, Software, Spring, Web Development
Posted in Java, Software, Spring, Web Development | No Comments
Yes, MyEclipse 8.0 and MyEclipse for Spring plugin is now available to download. It seems very promising! http://www.myeclipseide.com/Downloads-req-viewsdownload-sid-38.html
AJAX Table with server side paging, filtering and sorting by DWR – Part I
December 17, 2009 - 9:44 am
Tags: AJAX, dwr, Spring, Web Development
Posted in Spring, Web Development | 8 Comments
Hi Guys, Part II is here. For one of my projects, I needed to develop an ajax based web table with server side paging, filtering and sorting by using DWR. I’d like to share this implementation. This is not a fully library or anything that you can use directly. But you can use this for [...]
Selecting Web Technologies from Devoxx09
November 19, 2009 - 11:37 am
Tags: Software, Web Development
Posted in Web Development | 1 Comment
As you know that Devoxx is taking place in Antwerp/Belgium between 16-20 November. There are very good sessions and presentations that everyone should follow. This is “Selecting Web Technologies” presentation by Sebastian Hennebrueder. You might find it interesting. Selecting Web Technologies
How to resolve conflicts of DWR and jQuery?
November 4, 2009 - 12:43 pm
Tags: dwr, Java, jQuery, Web Development
Posted in Java, Web Development | 2 Comments
This is the problem of using alias of “$” by both DWR and jQuery. You might get “….. not found function” errors or similar ones. The fix is: <script type=’text/javascript’ src=’js/jquery-1.3.2.min.js’></script> <script type=”text/javascript”> var jqry = jQuery.noConflict(); </script> <script type=’text/javascript’ src=’dwr/engine.js’></script> <script type=’text/javascript’ src=’dwr/util.js’></script> <script type=”text/javascript”> jqry(document).ready(function() { //other function calls }); </script>
Have you tried Spring Roo?
November 2, 2009 - 12:00 pm
Tags: Java, Roo, Spring, Web Development
Posted in Java, Software, Spring | 6 Comments
Spring Roo 1.0.0.RC2 is released lately by Spring Source. From Spring Source: Spring Roo provides interactive, lightweight (4 Mb download!), user customizable tooling that enables rapid delivery of high performance enterprise Java applications. Spring Roo today offers the following features (and we’re actively working on more right now): Working applications within 10 minutes of finishing [...]
How to call any javascript code from server side java by DWR
October 27, 2009 - 2:45 pm
Tags: dwr, Java, Spring, Web Development
Posted in Java, Spring, Web Development | 4 Comments
DWR is a great library and helps a lot when you work on Ajax calls etc. DWR is a Java library that enables Java on the server and JavaScript in a browser to interact and call each other as simply as possible. The best part of DWR for me is “Reverse Ajax” which enables you [...]


July 29, 2010 - 10:58 pm
I’m not a web designer but will definitely check it out in case the need arises later for a web developer.
August 10, 2010 - 11:54 pm
Wow this was a great resource.. I’m enjoying it.. good article