Posts

YUI

YUI is a free, open source JavaScript and CSS framework for building richly interactive web applications. http://yuilibrary.com/

ADD-ONS - Tamper Data

Use tamperdata to view and modify HTTP/HTTPS headers and post parameters... https://addons.mozilla.org/en-US/firefox/addon/tamper-data/

Portlet with Spring Portlet MVC

Developing a Portlet with Spring Portlet MVC and SimpleFormController A previous article explained the basics of developing a Portlet. This article will introduce the Spring Portlet MVC Framework for developing Portlets. Specifically, this article will help you create a new Portlet using the SimpleFormController available in the Spring Portlet MVC Framework... http://www.unicon.net/node/838

Right-BICEPS

Right: Are the results RIGHT?    // format, range, cardinality ... B: Are all the BOUNDARY conditions correct?   // age 334?!!, month 14? I: Can you test the INVERSE relationship?  // C: Can you CROSS-CHECK using other methods/means?  //  calculate it in the tes method to crosscheck E: Can you force ERRORS? // io exception, no db or network connection etc. P: Are PERFORMANCE conditions within bounds? // loadtest S: Alwasy go for the whole SET See more:  http://testen.fontysvenlo.org/metiq/wk03/wk03_handout.pdf

XSS

Never trust user input and always filter metacharacters. This will eliminate the majority of XSS attacks. Converting < and > to &lt; and &gt; is also suggested when it comes to script output. Remember XSS holes can be damaging and costly to your business if abused. Often attackers will disclose these holes to the public, which can erode customer and public confidence in the security and privacy of your organization's site. Filtering < and > alone will not solve all cross site scripting attacks. It is suggested you also attempt to filter out ( and ) by translating them to &#40; and &#41;, " to &#34;, ' to &#39, and also # and & by translating them to &#35 (#) and &#38 (&).

amCharts

It's a set of JavaScript/HTML5 charts for most of your needs. Our package includes serial (column, bar, line, area, step line, smoothed line, candlestick and ohlc graphs), pie/donut, radar/polar and xy/scatter/bubble charts... http://www.amcharts.com/

google-guice

Guice (pronounced 'juice') is a lightweight dependency injection framework for Java 5 and above, brought to you by Google. http://code.google.com/p/google-guice/