Popular Posts
Redirect webpart in sanboxed solution using System; using System.ComponentModel; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebCo... Page load event handler on sharepoint <script type="text/javascript">     _spBodyOnLoadFunctionNames.push("onPageLoadAction");     function onPageLoadA... Fix for SharePoint 2010 scrolling problems for Chrome Execute on page loaded function bodyOnLoadWrapperForChrome() {     //verify we have finished loading init.js     if (typeof (_spBodyOnLoadW...
Stats
A simple work
public class Tri {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        int last = 5;
        for (int i = 1, n = 1; i <= last; i++) {
            int p = n;
            while (p-- > 0)
                System.out.print(Integer.toHexString(i));

            n = i <= last / 2 ? n + 1 : n - 1;
            System.out.println();
        }
    }

}