Saturday, April 1, 2017
One Click Security Application Downloader SSDownloader
One Click Security Application Downloader SSDownloader
New threats and viruses are appearing everyday,so its important that the database be updated on a regular basis.So every computer user have to make sure that his anti-virus database gets checked daily.In addition to that you need various tools to secure you PC like Antispyware,Firewall ,Antimalware and other utility tools.Such software makers updated their product periodically .Updating your security software is not easy for you regularly.It is useful , if there is one click security application downloader available to combine all popular anti virus, firewalls and anti malware applications under one application to download.
SSDownloader comes to rescue you - an open source app which makes downloading current versions of popular Antivirus, Antimalware, Firewall, and Utility software a snap. This portable has a very simple user interface in which users select the security packages they wish to use. It automatically refreshes its database and all software packages in the system are completely legal and free to use.
Free security applications Included are popular free tools like Avast!, MS Security Essentials, Malwarebytes, HiJack This, Comodo Firewall, CCleaner, AutoRuns, Process Explorer and more.
SSDownloader is very useful to save our time for searching security application around the Internet and also excellent way to make sure youve always got up-to-date installers at the ready.
Features:
- Download the most popular free and paid security software with only one click.
- Dont worry about OS or 32bit/64bit, the right version will be automatically downloaded.
- Stay up to date, always newest versions of the software will be downloaded.
- Just choose what you want to download and you will see a notification as soon your downloads finished
Download: SSDownloader | Opensource |1.37MB | Windows XP,Vista,7
Go to link Download
Thursday, March 23, 2017
Open a Facebook fan page from Android application
Open a Facebook fan page from Android application
Id like to share how to invoke FB fanpage from your Android application programmatically. Before that please get your FB fanpage ID. TO find your FB fanpage ID , LOGIN to your fanpage. Find the Edit Page button and choose any option from the Admin menu. The fanpage ID is located in the URL after the keyword ID. Select and Copy the number.
***Or you could find the page ID at the Edit Page > Update Page Info, in the Page Info window, look at the bottom (last detail).
This is the code to invoke the FB fanpage on the mobile users smartphone from your app. Provide the FB app is installed.
Intent ifb=new Intent (Intent.ACTION_VIEW);
String uri="fb://page/613598055326974"; //your FB fanpage ID is here
Uri.parse(uri);
ifb.setData(Uri.parse(uri));
startActivity(ifb);
Updated:
If you consider maybe the phone doesnt has Facebook app installed, may be youd like to redirect to a browser instead. Then below is the code;
try {
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("fb://page/129569063811850"));
startActivity(intent);
} catch(Exception e) {// or else open in browser instead
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://facebook.com/mmathurat")));
}
Go to link Download