Tech Sharing Blog

Computer knowledge, news, product, SEO, earn money online sharing place

Advertisement

Archive for the ‘ Firefox ’ Category

sitesiomon logo Sitesimon   Lets the internet content find you
With an increasing number of websites, webpages, and blog posts, it is not easy to find online content that you will find interesting. Here to help you by letting the interesting content find you is a web service called SiteSimon.

 

SiteSimon is a web service that fetches online content based on your interests. Your interests are determined by your browsing history. You start using the site by visiting its homepage, creating an account on the site, and installing its extension for Google Chrome. Your Chrome history is then analyzed by the site and you are shown interesting online content. You can click on links to view their original webpages or leave comments under the links. Your histories can be shared with other site users who can also view the comments you leave on web links. A “My Activity” tab in your SiteSimon account keeps track of your activity on the site and the pages you visit.

 

Features:

  • A user-friendly web service.
  • Helps find interesting online content.
  • Works through Google Chrome.
  • Analyse your interests through Chrome’s browsing history.
  • Lets you leave comments on online content displayed.
  • Also read related articles:

 

For more information about Sitesimon, you may visit their official web site

Site Simon cheatsheet Sitesimon   Lets the internet content find you




Popularity: 1% [?]

Just come across with my company SQA team where they request us to do the disable right click features on our front end web site. The initial javascript which exists in our script only work with Microsoft Internet Explorer but not Firefox.

So Google around and found the following javascript which working for both the browser (Firefox and Internet Explorer are the major browser use by our visitor)

Just include this script in our top of the page which you wish to disable the right click function.

<script type="text/javascript">

function md(e)
{
  try { if (event.button==2||event.button==3) return false; }
  catch (e) { if (e.which == 3) return false; }
}
document.oncontextmenu = function() { return false; }
document.ondragstart   = function() { return false; }
document.onmousedown   = md;

</script>

Popularity: 1% [?]

Last whole week working with a project which involve the integration with 3th party API through the HTTPS secure channel using coldfusion CFHTTP. I come across with the following error message:


I/O Exception: peer not authenticated

coldfusioncerterror Import the server or CA certification in coldfusion server


Try to Google it for some time and find out that I need to import the 3th party certificate into my Coldfusion server by using some keytool certificate import tools. Trying few times but still can’t get it work until I found a blog which showing a very effective way and free tools for import the certificate.


These instructions are for Windows based machines but the concepts and tools should work on Mac or Unix based platforms.


1. Install tools

Download and install Portecle JVM certificate manager

(portecle-1.5.zip) You do not need the source (src) version

https://sourceforge.net/projects/portecle

The easiest way to install Portecle is to unzip the contents of the zip file to a directory such as C:\Program Files\portecle-1.5\ Then find the file “Portecle.jar”, right click it and send it to your desktop as a shortcut. You can then use this shortcut to launch Portecle. (optionally you can also change the name of the shortcut and change the icon to use the portecle.ico file for the icon)


2. Extract the certificate

The easy way to get the certificate is ask from the issuer, but if you unable to do so, you may have another alternative solution which you open the https page in your browser and double click on the lock logo at bottom left of the browser (the lock appear just beside the url addrss for Google Chrome)


Double click on the lock –> click the certificate information button –> go to details –> click the copy to file button –> Follow the wizard and select the base-64 encoded X.509 (.cer) format –> save the file


3. Install Certificate to Java Virtual Machine and/or ColdFusion server

Start Portecele.

On the [File] menu, select [Open Keystore File] navigate to and locate the keystore you are interested in.

For many java installations this will be located in your “jre\lib\security” directory and might be named “cacerts”

For the ColdFusion 8 default developer install the path will be “c:\coldfusion8\runtime\jre\lib\security\cacerts”

You will have to enter the password for the keystore. The default password is “changeit”


Now you are ready to import the key.

From the [Tools] menu select [Import Trusted Certificate]

Navigate to and locate the certificate you saved and click [Import]

You will need to reenter the keystore password.

You can change the alias if you desire but I would recommend leaving it as the default

Note: You may also be prompted to “trust” the certificate.


Click on the save button at the top of the portecle


4.       Restart you Java Virtual Machine/coldfusion application server.

For ColdFusion not installed on top of JRun you just need to restart the ColdFusion service. If you are running on top of JRun you also need to restart JRun.


Up to now, you already successfully import your partner certificate to your coldfusion/java server.


Please feel free to leave your suggestion if any. Click here for more information regarding Protecle

Popularity: 2% [?]

Proxy server is a server that sites between a client application, such as a web browser and a real server. It intercepts all requests to the real server to see if it can fulfill the requirests it self. If not, it forwards request to the real server.

There main purposes for using the proxy server are:

  • to keep machines behind it anonymous (mainly for security)
  • to speed up access to a resource (via caching). It is commonly used to cache web page from a web server
  • to censor network services or content
  • to forge transmitted content before delivery, eg: to insert advertisements


There are diff types of proxy server in generals:

  • Transparent Proxy: it identifies itself as a proxy server and also make the original IP address available through the http headers. The generally use to cache websites but do not effectively provide any anonymity to those who use them.
  • Anonymous Proxy: it identifies it self as a proxy server, but does not make the original IP address available. of proxy server is detectable, but provides reasonable anonymity for most users.
  • Distorting Proxy: This type of proxy server identifies itself as a proxy server, but make an incorrect original IP address available through the http headers.
  • High Anonymity Proxy: This type of proxy server does not identify itself as a proxy server and does not make available the original IP address.


You may easily get the free proxy server list from the Internet by Google it with the key word of “Free Proxy server list”. Or you may just access the following web site for the free Proxy server list:


Please bear in mind that when you use the free public proxy server, your transmitted data through the Proxy server may capture or monitor by some body including your login detail and password.

Step to set up the Proxy on difference browser:

Mozilla Firefox:

Tools -> Options -> Advanced -> Network -> Settings -> Manual proxy configuration -> enter the Proxy server IP and Port number

setting proxy for firefox Proxy Server and browser configuration


Google Chrome:
Options -> Under the Hood -> Change proxy settings -> Connections -> LAN Settings -> Proxy Server -> check the “use a proxy….” -> enter the proxy server IP and port number

* Google Chrome is share the same Proxy server setting with Internet Explorer

google chrome set proxy step 1 Proxy Server and browser configuration

google chrome set proxy step 2 Proxy Server and browser configuration

Internet Explorer:
Tools -> Internet Option -> Connections -> LAN Settings -> Proxy Server -> check the “use a proxy….” -> enter the proxy server IP and port number

google chrome set proxy step 2 Proxy Server and browser configuration

Opera:
Tools -> Preferences -> Network -> Proxy Server… -> Select what ever Protocol to use the Proxy Server -> enter the proxy server IP and port number

opera set proxy Proxy Server and browser configuration

Popularity: 2% [?]

Most of the developer who working in MS platform will be used to the javascript window.attachEvent.


But maybe some of you don’t know that window.attachEvent is only working on IE7+ and Opera only. Your coding will hit an javascrpit error when running at IE 6 or any version of firefox.


To resolve this issue, you may need to modify your code as such:

Original Code:

window.attachEvent(“onload”, Page_load);

function Page_load(){
//function code
}


Modify code:

//set page event handlers
if (window.attachEvent) {

//IE and Opera
window.attachEvent(“onload”, Page_load);

} else if (window.addEventListener) {

// IE 6
window.addEventListener(“load”, Page_Unload, false);

} else {

//FireFox
document.addEventListener(“load”, Page_Unload, false);

}

function Page_load(){

//function code

}


Popularity: 1% [?]

firefox logo Tab Scope   Tab preview for FirefoxTab Scope is a Opera a like tabs preview tool tips for firefox. The small pop up window will show up for the real time preview on the the tab contents.


Not only that, you may also navigate your web page within the small preview window, zoom it in and out, refresh the tab in the small preview window and lot more.


This maybe a good idea and useful add ons in firefox when you are actually open up a lot of tabs.



Main features:

  • Real-time preview of tab contents
  • Navigate (Back/Forward/Reload/Stop) through popup
  • Scroll pages or frames in preview with mouse wheel
  • Click links or buttons directly in preview


[More]

Popularity: 1% [?]

wisestamp logo WiseStamp   Creating HTML Signature with Firefox ExtensionWiseStamp is a Firefox extension which help you to create the HTML signature and insert to your compose email easily. Besides create your HTML signture, you may also easily insert the shortcut to the social networking application such as your Blogspot, Facebook, Twitter, LinkedIn and must more.


WiseStamp allow you to create multiple business and private email HTML signature and it work with most of the webmail provider such as Gmail, Google Apps, Yahoo Mail, Hotmail and AOL.


Personal Signature will be set as the default signature for all your webmail compose email, but you may just changed to your Business with few simple click.


Please feel free to create your very unique signature that can identify your self, because it may some how helping you to bring in some traffic to your blog or website.


Click here to find out how to use Google Chrome to create the HTML signature for Gmail.



[More]

Popularity: 1% [?]

adblock plug logo AdBlock Plus   Block unwanted ad in FirefoxAdblock plus is a Firefox plugin for you to block the unwanted ad in the web site. After installing Adblock Plus, you may set your ad blocking rules manually or you may just subscript to the standard filter list from the subscription provider, it cover most of the ad source from that partical area.


Besides that, you may also add the ad to block which is not in the subscription list by simply right click on the ad banner and click on AdBlock Image; or click on the small block tab on the top of the ad image.


Immediately you will see the page without any ad. You may also use this application to block the ad in Hotmail and Yahoo Mailas well.



[More]

Popularity: 1% [?]

mozbackup logo MozBackup   The backup solution for your browserMozBackup is a light and simple utility tools for you to backups your browser profile such as Mozilla Firefox, Mozilla Thunderbird, Mozilla Sunbird, Flock, SeaMonkey, Mozilla Suite, Spicebird and Netscape profiles.


Basically, MozBackup allow you to backup and restore back your bookmarks, mail, contacts, history, extensions, cache and more.


This tools is useful if you like to format your computer but yet want to save time to backup your long and useful bookmart.


[More]

Popularity: 1% [?]


xoopit logo Xoopit   View your Gmail in the new wayXoopit(under beta) is a firefox plugin that bring you the new way to browse all your photo and YouTube link that sent to you in a single spot.


The search function in Xoopit allow you to easily find your stuff instead of you mesages. If you wish to find the photo, attachment or the video link that your friend sent to you few months ago, you may seach it using the Xoopit search instead of Gmail build in search. Xoopit will filter the email with your keyword that you enter and display it in the album format.


[More]

Popularity: 2% [?]

SEO Powered by Platinum SEO from Techblissonline