Skip to content

Instantly share code, notes, and snippets.

View Prithvirajbilla's full-sized avatar
🏠
Working from home

Prithviraj Billa Prithvirajbilla

🏠
Working from home
View GitHub Profile
// With little creativity and some coding skills you can do a lot of things using this code to annoy some one.
// works on the first chat box opened. only works in google chrome!
function dispatch(target) {
var evt = document.createEvent("Event");
evt.initEvent("keydown",true,true);
evt.keyCode = 13;
evt.which = 13;
target.dispatchEvent(evt);
}
@Prithvirajbilla
Prithvirajbilla / valentine.love
Created February 16, 2014 15:55
valentine's special
# abap
REPORT TEST.
WRITE 'I <3 you'.
#ada
procedure Hello is
begin
Put_Line ("I <3 you");
end Hello;