Skip to content

Instantly share code, notes, and snippets.

View ABHINAV-JHA-27's full-sized avatar

ABHINAV JHA ABHINAV-JHA-27

View GitHub Profile
@sundowndev
sundowndev / GoogleDorking.md
Last active June 18, 2024 10:56
Google dork cheatsheet

Google dork cheatsheet

Search filters

Filter Description Example
allintext Searches for occurrences of all the keywords given. allintext:"keyword"
intext Searches for the occurrences of keywords all at once or one at a time. intext:"keyword"
inurl Searches for a URL matching one of the keywords. inurl:"keyword"
allinurl Searches for a URL matching all the keywords in the query. allinurl:"keyword"
intitle Searches for occurrences of keywords in title all or one. intitle:"keyword"
@vasylpb
vasylpb / parallax-translate3d.js
Created January 18, 2016 10:21
Smooth Parallax Scroll
$(window).scroll(function() {
var st = $(this).scrollTop() /10;
$(".object").css({
"transform" : "translate3d(0px, " + st + "%, .01px)",
"-webkit-transform" : "translate3d(0px, " + st + "%, .01px)"
});
});