CSS3 Gradient Generator

Using gradient color can be cool and be completed with css style. Making a gradient color in css can be completed as following: [sourcecode language=”css”] <script type="text/css"> .txt { background-image: linear-gradient(bottom, rgb(132,170,193) 15%, rgb(159,204,232) 58%, rgb(191,245,255) 79%); background-image: -o-linear-gradient(bottom, rgb(132,170,193) 15%, rgb(159,204,232) 58%, rgb(191,245,255) 79%); background-image: -moz-linear-gradient(bottom, rgb(132,170,193) 15%, rgb(159,204,232) 58%, rgb(191,245,255) 79%); background-image: -webkit-linear-gradient(bottom,

Read More

Eclipse complains about jquery minified JS files

When using minified files in Eclipse it can caused errors when there shouldn’t be any. Eclipse complains when using jquery.min.js files. One solution is to ignore the specific file. Go to : Project->Properties->JavaScript->Include Path->Source-> Excluded Groups ignore specific files by adding a suitable exclusion pattern e.g. **/jquery*.js Solution found at bug report 349020 comment 15 via stackoverflow topic ignore

Read More

SourceCode Compressor

When optimizing it can be a good idea to compress (also called minification) your files by removing all unnecessary characters from source code. There are several website which can easily help with that: HTML Compressor JavaScript Compressor CSS Compressor

HTML editor for Eclipse

Eclipse Classic (current version 3.7.2) does not come with HTML editor by default. If you installed Eclipse IDE for Java EE Developers it comes with the Web Tools Platform preinstalled. The HTML editor is called Web Page Editor and it can easily be installed if you got Eclipse Classic. To install the Eclipse Web Page editor go

Read More

Eclipse failed, Java was started but returned exit code=-805306369

Eclipse suddenly started to hang when starting up around “Loading Workbench” 805306369. Eclipse stopped responding and you get the dialog to close the program. “Java was started but returned exit code=-805306369” The error shown afterwards: “Java was started but returned exit code=-805306369” If you are running java 1.6u21 then look at Eclipse Bug 319514 and The Oracle/Sun

Read More