Thursday, July 16, 2015

Google News Reader using javascript and jQuery

Hey everyone,

Just developed a Google News Reader using google news api.

So just to sharpen my javascript skills, I have developed this small project.

What's special ?

  • Auto update. If turned on, it will keep on refreshing the news based on selected intervals.
  • Choose news from various country.
  • Responsive page design. Page will load as per the device width.

How to download ?

I have created a repository on my GitHub.
All you need to do is download the zip.
Click on below link to download google news reader!

DOWNLOAD NEWS READER


How to use ?

Once you download the news reader, just extract the zip and open the index.html file. That's it! you are done!
Enjoy the latest news.  Let me know your valuable comments :)

I am planning to develop more javascript webapp/addon's/modules.



Thanks for reading,
Amit

Monday, April 6, 2015

GNU/Linux Distribution Timeline

GNU/Linux Distribution Timeline

Ladies and gentlemen here is GNU/Linux distribution timeline. Look at my favorite Debian > Ubuntu  branch :) so many distributions under that. Feeling great :)

Full Screen Image

Click to see full screen

Click here to see Full Screen


Thursday, April 2, 2015

Error: Apache shutdown unexpectedly [SOLVED]

Hello Guys,

So, I have been installing XAMPP on my office windows 8 machine and it didn't worked in first attempt. I knew it something is wrong with ports/config settings.
When I clicked on 'Start' button of XAMPP control panel, it showed me below error.

Error: Apache shutdown unexpectedly.
This may be due to a blocked port, missing dependencies, 
improper privileges, a crash, or a shutdown by another method.
Press the Logs button to view error logs and check
the Windows Event Viewer for more clues
If you need more help, copy and post this
entire log window on the forums

Problem detected!
Port 80 in use by "Unable to open process" with PID 4!
Apache WILL NOT start without the configured ports free!
You need to uninstall/disable/reconfigure the blocking application

or reconfigure Apache and the Control Panel to listen on a different port

Please follow the steps to solve this problem:

1) From XAMPP control panel click on Apache 'config' button. 

2) Now, httpd.conf file will be opened in text editor. 

3) Find (Control + F) Listen 80 replace it to Listen 8080

4) Again find ServerName localhost:80 replace it to ServerName localhost:8080

5) Now save the file and go to XAMPP control panel and click on 'Start' button. 

6) Now go to http://localhost:8080 you should see XAMPP index page. 
    Congratulations: You have successfully installed XAMPP on your system! :) 


So how did it worked ?

Your port 80 was busy and we are now using unique port i.e. 8080
So remember whenever you are going to access the localhost you will be using it like http://localhost:8080 same for phpmyadmin http://localhost:8080/phpmyadmin/

If you insist with default port 80 then you need to look in your computer and find which installed software is using port 80. 

e.g. skype uses default port 80. 
To clear that port, open skype then go to Tools > Options > Advanced > Connection > and in that uncheck 'Use port 80 and 443 for additional incoming connections' option. Then save it and restart the skype. Now your skype will use another unique port. 
Thats how you can clear port 80. 


Helpful ? comments please :)