-
What is MEAN
MEAN is a set of software/web application development technologies. In which M stands for MongoDB database. Its a non relational database. It can store data as Documents. E stands for Express JS. Its a NodeJS framework. Its middleware between NodeJS and Angular JS. A stands for Angular JS. Its a client side JavaScript framework. It…
-
JavaScript Array Vs JavaScript Object – Complete guide
Most of the new developers faces huge trouble to identify the difference between JavaScript Array and JavaScript Object. This particular post will help you to pass your initial hurdle and you will be able to play efficiently with JavaScript Array and JavaScript Object How to Define JavasCript Array? // // Declaring an Array var myArray…
-
Download site from Archive.org or Internet Archive

First you have to install Ruby in your system. Go to this link and choose your operating system and install Ruby into your system. Install Ruby After installing ruby install wayback machine site download script by using your command prompt or terminal gem install wayback_machine_downloader Your system is ready to download sites from archive.org website.…
-
How to find spam mailing script location in whm cpanel
If you want to locate the spam mailing script in your whm cpanel server you have run some ssh command. First you have to find out which script/file in your server is sending most of the abusing emails. grep cwd /var/log/exim_mainlog | grep -v /var/spool | awk -F”cwd=” ‘{print $2}’ | awk ‘{print $1}’ |…
-
Understanding View::share in Laravel
Understanding View::share in Laravel is easy but tricky to new users. Here I will try to clear the confusions of Laravel’s View::share. First look at the code below. We defined a ProfileController and inside it we have a public function as getIndex(). <?php class ProfileController extends BaseController{ public function getIndex(){ $profile_info = User::find(‘2’); View::share(‘getinfo’,$profile_info); $this->layout->content…
-
Cpanel whm brute force protection

Today I am going to discuss about a very common problem related to cpanel or whm panel. Hackers always try to get root access for your hosting and to get the passwords they run script that will try continuously with various random passwords. WHM panel has a built in feature to protect against brute force…
