Tuesday, March 14, 2017

[Solved ]Intel AI Pursuit

[Solved ]Intel AI Pursuit Clues solve
https://www.youtube.com/watch?v=bXTjLZfibes

Wednesday, January 28, 2015

Whatsapp Web App Script

This script will work in MAC Os

1) Open AppleScript Editor
2) Paste Below code
3) Connect whatsapp web app and open contacts you want to send message
4)EDIT your message in your script

delay 0.5 -- if the script is run with a shortcut that has modifier keys
activate application "Skype"
property counter : 0
property msg : "Hello Nelson"
tell application "System Events"
    repeat with theIncrementValue from 1 to 50
        keystroke (msg)
        key code 36
        delay 2
    end repeat
end tell

*this is educational purpose only!! prank to only friends!

Sunday, May 26, 2013

Call EJB 3.0 session bean from JSP

  • <%@page import="com.simple.ejb.SimpleCalcRemote"%><html>   
  •     <%  
  •     javax.naming.InitialContext ic = new javax.naming.InitialContext();  
  •     SimpleCalcRemote sb = (SimpleCalcRemote)ic.lookup("simplecalc");  
  •     String result = sb.sayHello("myname");  
  •     out.println(result);  
  •     %>