Download the Netbeans project – [wpdm_package id=’1209′] This is a very basic example on how to login and logout with JSP using session. I did…
[wpdm_package id=’1187′] Sample Output – To compile the above program in ubuntu terminal – # g++ -lGL -lGLU -lglut Rotating_Square.cpp # ./a.out
[wpdm_file id=78] Due to the vulnerability caused by poor password selection it is very important to have a secure authentication and authorization infrastructure for web…
[wpdm_package id=’1191′] SSO –SSO – > SSO means Single Sign On. With SSO user can create 1 account and use that account to login once…
[wpdm_package id=’1185′] Sample Input – Create a clock using timer function, clock should show hour, minute and second hands. Sample Output – To compile the…
Problem – Sorry, Ubuntu 12.04 has experienced an internal error. If you notice further problems, try restarting the computer. Send an error report to help…
[wpdm_package id=’1260′] Sample Input – Translate, Rotate and Scale a Rectangle using Matrix Push and Pop. Sample Output – To compile the above program in…
[wpdm_package id=’1266′] Sample Input – Translate, Rotate and Scale a Rectangle using Opengl functions. Sample Output – Translate Function [sourcecode lang=”cpp”] glTranslatef(-200,-50,0); [/sourcecode] Rotate Function…
[wpdm_package id=’1258′] Sample Input – Write Characters using glutBitmapCharacter(font, character) . Sample Output – [sourcecode lang=”cpp”] string s="TechToFun"; for(size_t i=0;i<s.size();i++){ glutBitmapCharacter(GLUT_BITMAP_TIMES_ROMAN_24, s[i]); } [/sourcecode] To…