The equivalent of Microsoft’s Silverlight but for Linux operating systems is available for download as of May 13, 2008, under the label Moonlight. According to the official description of the technology, Moonlight is nothing more than the open source implementation of Silverlight, tailored for UNIX systems. With this latest step in the evolution of Silverlight, Microsoft can finally claim that the technology is truly cross-platform, because ahead of the May 13 public release of Moonlight, support was available exclusively for Windows and Mac OS X operating systems.
Moonlight is a project developed in parallel with Microsoft Silverlight, but not by the Redmond company. In fact, Microsoft partnered with Mono, an open source project backed by Novell, in order to port Silverlight to Linux. At this point in time Moonlight is still in development, and as such comes with the inherent problems associated with any Beta.
“The release comes in two forms: no-media codecs supported, but easy to install. This currently hosts builds for Linux x86 and x86-64 for Firefox. [And] source-code compilation, but you can optionally compile FFMpeg codecs yourself. To do this, download our moon-0.6.tar.bz2. And follow the build instructions”, revealed Miguel de Icaza, Novell Vice President for Developer Technologies.
De Icaza noted that Moonlight is designed to integrate seamlessly with both Firefox 2.0 and Firefox 3.0 releases, but that the latest modifications introduced in the development of version 3.0 of Mozilla’s open source browser will cause the open source implementation of Silverlight for Linux to malfunction. At this point in time Mono is offering both Moonlight 1.0 and 2.0 versions, adapted to correspond to Microsoft’s own Silverlight 1.0 and 2.0 releases.
“Moonlight supports “windowless” mode, a mechanism that allows Silverlight content to blend with other HTML elements on a page. This is only supported by Firefox 3, users of older versions of Firefox might run into Silverlight applications and web sites that do not work correctly as many Silverlight applications depend on this functionality (Flash sites have the same problem with Firefox 2)”, de Icaza added.
Novel Moonlight 1.0 and 2.0 Alpha are available for download here.
Tags:application,
download,
Firefox,
install,
Linux,
linux x86,
Microsoft,
moonlight,
Mozilla,
novell,
silverlight microsoft,
technology
Related posts
Written by Jason on May 15th, 2008 with no comments.
Read more articles on 1340 and 1354 and 1426 and 1429 and 1673 and 169 and 2065 and 2157 and 401 and 544 and Contributors and Firefox and Install and Linux and Novell and Technology and application and download and microsoft and mozilla.
I use firefox web browser every where, at my office pc, on my home desktop pc and as well on my laptop.
I always wanted to sync up my firefox on all these locations automatically, including my firefox bookmarks, browser settings ,add ons so I don’t have to configure my firefox at all these places etc.
So. I decided to google out the ways for syncing up my firefox browser with my google account.
Basically there are certain things which needs to be in sync like firefox settings , its bookmarks, browsing history etc.
Let’s cover them one by one
Following are the firefox extensions required in order to sync up your firefox with your google account.
1. Google Browser Sync - It is a Firefox is an extension that continuously synchronizes your browser settings – including bookmarks, browsing history, browser cookies, and saved passwords – across your different computers where you use firefox.
Note: It also allows you to restore open tabs and windows across different machines and browser sessions. So, it works restore the opened tabs any where you use firefox but the only precondition is google browser sync extension has to be installed.
But ?

Are you worried of using your google account in firefox ? then don’t worry as this extension is provided by google itself which gives the option of encrypting of all the information you share across all the web browser locations.
Encryption option is checked by default under settings of the extension(as shown in the image above).
Still if you are not willing to to use this extension but would like to sync up your firefox bookmarks only at all the locations, then some other options are given below.
2. Foxmarks Bookmark Synchronizer - This is again a firefox extension which allows you to sync up your firefox bookmarks and it will work silently in the background to keep your bookmarks synchronized.
You can also log in to my.foxmarks.com to manage your bookmarks from any computer.
3. Sync up using Microsoft Folder Share - To know more about how can you sync up using Folder Share. See this post on lifehacker here.
If you find more ways for syncing up firefox in a better way, let us know through comments.
Tags:bookmark,
Browser,
Computer,
config,
encrypt,
encryption,
Firefox,
firefox browser,
firefox extension,
google,
hack,
laptop,
Microsoft,
Office,
password,
pc,
restore,
sync,
synchronize,
Synchronizer,
Web,
web browser,
Windows
Related posts
Written by Jason on May 9th, 2008 with no comments.
Read more articles on 1340 and 1354 and 1426 and 1429 and 1673 and 169 and 2065 and 2157 and 401 and 544 and Browser and Contributors and Firefox and HACK and Internet and Laptop and Office and PC and Password and Web and Web Browser and bookmark and computer and config and encrypt and encryption and firefox browser and google and microsoft and restore and synchronize and windows.
Ever have the need to open more than one program or application at the same time?
Say it’s the beginning of the month and time to pay those dreaded bills. You know you need Excel, Windows calculator and Firefox or Internet Explorer open. Instead of opening them up one by one, you can easily create a batch file that will open all three programs at once.
And while your at it, why not have Excel open the spreadsheet file you use for tracking your budget and the browser open to your Bank’s home page. Here’s how to do it…
First let’s take a look at a batch file I created that will just open Excel, Calculator and Firefox:
NOTE: Examples and file paths are from Windows Vista. XP paths will probably be different for some programs as well as for MS Office (Office 2007 is used in the example).
start /d C:\Windows\System32\calc.exe
start /d “C:\Program Files\Mozilla Firefox” firefox.exe
start /d “C:\Program Files\Microsoft Office\Office12″ EXCEL.EXE
Pretty simple.
The above command, start tells Windows to open a separate window to run the specified program.
The /d switch tells start command the path of the program. For starting Excel and Firefox, notice that the paths are in quotes, which is needed when there is a space in the file path.
Now it’s great that all three programs open, but since it’s time to pay your bills, you need to have Excel open that budget spreadsheet and Firefox open to your Bank home page so you can log on and access you checking account.
Here’s how the commands look in the batch file to do this:
start /d C:\Windows\System32\ calc.exe
start /d “C:\Program Files\Mozilla Firefox” firefox.exe https://www.bankofamerica.com
start /d C:\finance\spreadsheets budget.xls
To open Bank Of America home page with Firefox, just add the URL to end of the command as shown above using https://www.bankofamerica.com.
To open the Excel spreadsheet, budget.xls you don’t need to first open Excel. budget.xls can be opened directly using the start command, as long as the extension or file type is associated to the program.
If you need Firefox to open more than one URL, say to Google, just add the URL like this (make sure you use a space in between URL’s):
start /d “C:\Program Files\Mozilla Firefox” firefox.exe https://www.bankofamerica.com www.google.com
Now you’re probably saying “that’s great, but how do I create a batch file?”.
That’s the easy part.
* Just open up Notepad or your favorite text editor.
* Copy the commands from above and modify them to use which ever program or Office files you want open. Make sure when you copy file and folder paths that have spaces, to use quotes.
* Then save the file with any name and a .bat extension (make sure it’s not saved using .txt as the file type extension)
Tags:account,
application,
Browser,
calculator,
command,
excel,
finance,
Firefox,
google,
Internet,
internet explorer,
Microsoft,
Mozilla,
notepad,
Office,
Program Files,
system32,
Windows,
windows vista
Related posts
Written by Jason on May 9th, 2008 with no comments.
Read more articles on 1340 and 1354 and 1426 and 1429 and 1673 and 169 and 2065 and 2157 and 401 and 544 and Browser and Contributors and Firefox and Internet and Internet Explorer and Office and Windows Vista and account and application and command and computer and excel and google and microsoft and mozilla and notepad and system32 and windows.
Although many people have their favorite web apps setup as their homepage on their browsers, there are times when running a web app inside its own window - in a separate process - could come handy. Think about having your browser clogged up with way above 30-40 tabs open and crashing at random times.
Then, you will just have to open it again and fire up the web interface you were working with at the time of the crash. A desktop web app will automatically eliminate the need of restarting your work flow all over again just because a buggy web browser decided that he had enough.
That’s only a quick example why one would need a web app to run on its desktop. To be able to do it, you will have to use an application developed by Mozilla and named Prism. It enables the end user to easily integrate any type of web application into a friendly desktop environment.
Why use it
Most probably the final users of the desktop web apps will be those who don’t know a lot about computers, the kind of people who consider a web app like a distinct application. This is actually a good thing if you see it from the developer’s point of view because, this way, people will tend not to think that they are on the web.
Thus, the web app will get a temporary status of desktop application, a fact that, added up to the lack of toolbars and other browser specific elements, will help the end user to get a lot more focus on the task at hand and greatly reduce distractions.
Wondering what other uses you might have for such an app? Well, you could use it to stay logged on into a Google calendar account without having to re-login when switching between your Gmail accounts, easily access a local web app inside a business environment where you do not need a full browsing experience, and the list could go on.
Also, Prism will allow the web developers to easily create web apps that can run on Prism without having to worry about specifically targeting Prism, because a web app that will run in a modern standards compliant web browser will automatically be able to run in Prism.
Prism is an application built on Firefox, therefore it is cross-platform (runs on Mac OS X, Linux and Windows) and supports Internet technologies like HTML, CSS, and JavaScript.
How to use it
First of all, go HERE and download Prism to your computer. After mounting the downloaded dmg file, copy Prism to your Applications folder and run it by double clicking on its icon.
In the window that will appear you will get access to all the options you will need to configure the desktop web app you want to create. I have chosen the Google Gmail web app as an example, but you can migrate to your desktop any other app you may want to.
In the URL field fill in the link to the web app you have chosen and write down the name that Prism should give it after making it available on your desktop. The ‘Show location bar’, ‘Show status message and progress’ and ‘Enable navigation keys’ can be selected or left as they are according to your own taste. In case you want your web app to only be able to go to a single web location (like the aforementioned Gmail for example), be sure not to select the location bar.
The ‘Create Shortcuts’ option sub-group will help you choose the places where you want the web app to be available and the ‘Icon’ option will allow you to quickly select an image that you wan to associate with the web app you want to create. You will be able to choose between the web app’s fav icon (as it is called in the Prism interface ‘the icon from the web’) or to select a custom image from your computer.
The next step is to push the OK button and Prism will take care of everything. The web app will be available on your Desktop, Dock and/or Applications Folder, according to what you have chosen on the desktop web app creation interface.
Who would use it
I suppose many people will not get the idea behind the Prism project and will think it is just a feature-less web browser. That’s what I’ve thought in the beginning too but, after considering all the things everyone had to say (web developers, web browser users, people who don’t have a lot of computer know-how), I think Prism might prove very useful in the business environment.
Here, when somebody wants to access a web app, the need for toolbars and all types of add-ons and buttons is almost close to zero, therefore being able to access the web app in a clean and focused environment should prove very helpful in maximizing the amount of attention on the task at hand and, in the end, creating a more productive environment.
I’m not saying others won’t find it useful too (the Google Calendar example above should fit the profiles of a lot of people), it’s just that this type of approach doesn’t feel natural to most web users. Many have already said it just resembles too much making a shortcut to the actual website where the web app runs or even giving up on the multi-tabbed browser experience.
Whatever your position on this subject may be, feel free to comment and leave your opinion on the usefulness of Prism in a web world dominated by multi-tab capable browsers like Safari, Firefox, Internet Explorer, and many others.
Tags:Computer,
Desktop,
download,
Firefox,
gmail,
google,
Internet,
internet explorer,
Linux,
Mac,
Mac OS X,
Mozilla,
web application,
web browser,
Windows
Related posts
Written by Jason on May 5th, 2008 with no comments.
Read more articles on 1340 and 1354 and 1426 and 1429 and 1673 and 169 and 2065 and 2157 and 401 and 544 and Contributors and Desktop and Firefox and Internet and Internet Explorer and Linux and Mac and Web Browser and computer and download and gmail and google and mac os x and mozilla and windows.
One of the cool things about Firefox is it’s never ending ways to do things. While this list will not make headlines, any Firefox list I find, always has one or two tips worth saving. Here are five Firefox tips that I like because they are quick and don’t require any extensions or add-ons installation.
Firefox Tip 1 - Bookmarks are great, but sometimes you may want to save a Web site link for the short term. Instead of creating a Bookmark, just click and hold on the Web site favicon in the Address bar, then drag and drop to your Desktop creating an instant shortcut link to the site. Next time you need to visit the site, click on the shortcut and Firefox will open the link in a new tab.
Firefox Tip 2 - Firefox 2.0 provides a few options to customize what sites you want opened when Firefox starts up. By setting the Startup preference in Tools \ Options under the Main tab, I like to have several sites open, by selecting Show My Home Page (next to When Firefox Starts) and adding URL’s in the Home Page field.
But after a while, I find new sites here and there and end up needing to add or remove URL’s.
Instead of constantly modifying the URL’s in the Home Page field, you can have Firefox open all sites located in a Bookmark folder. Just select Use Bookmark and choose a folder. You can easily add and remove sites to the folder, then just refresh the sites by clicking on Use Bookmark and re-select the folder (This also works on version 1.5).
Firefox Tip 3 - If you like to use keyboard shortcuts, but found the Page Up / Down and Home End keys are not working anymore, just hit F7 to get them working again. The keys become disabled if the Accessibility feature was enabled either in Tools \ Optons \ Advanced tab and selecting Always use the cursor keys to navigate within pages or you press F7 and answered yes to the following for Caret Browsing.
By selecting the check box Do not show me this dialog box again, pressing F7 toggles the feature on or off, but does not display the dialog box if the keys become disabled again without warning. To get the warning back:
* Type about:config in the Address Bar
* In the Filter bar, type accessibility.warn_on_browsewithcaret and double click on it to set the Value to True.
Firefox Tip 4 - When searching using Firefox search box on the Navigation toolbar, search results will open in the active tab. Using Alt + Enter will open the search results in a new tab. You can make this the default action by having the searches open in a new tab all the time with the following change:
* Type about:config in the Address Bar
* In the Filter bar, type browser.search.openintab and double click on it to set the Value to True.
Firefox Tip 5 - Tab browsing is one of the best inventions since the Internet. But sometimes when you have many tabs open, it’s hard to find the active tab.
To make this change, make sure the userChrome.css file exist in your profile directory at the following locations:
On Windows Vista: C:\users\[User Name]\AppData\Roaming\Mozilla\Firefox\Profiles\xxxxxxxx.default\chrome
On Windows XP/2000: C:\Documents and Settings\[User Name]\Application Data\Mozilla\Firefox\Profiles\xxxxxxxx.default\chrome
On Linux (typicaly) ~/.mozilla/firefox/xxxxxxxx.default/
(If file does not exist, just create a text file and name it userChrome.css)
Then copy the following code into userChrome.css and save it.
/* Make inactive tabs almost visible */
#content tab:not([selected="true"]) {
-moz-opacity: 0.5 !important; }
Close and re-open Firefox and you will now be able to easily find the active tab.
Tags:Accessibility,
Browser,
favicon,
Firefox,
Internet,
keyboard,
Linux,
Mozilla,
startup,
Web,
Windows,
windows vista,
windows xp
Related posts
Written by Jason on May 2nd, 2008 with no comments.
Read more articles on 1340 and 1354 and 1426 and 1429 and 1673 and 169 and 2065 and 2157 and 401 and 544 and Browser and Contributors and Firefox and Internet and Linux and Web and Windows Vista and Windows XP and keyboard and mozilla and startup and windows.
How many times has this occurred? You find a great web site, but it requires an account before you can access the site. So you create the account, password and secret question and let FireFox remember the account information. Time goes by and your at work or on another computer, and decide that you want to visit that great site, but can’t remember the password.
Sure you can have the site email your password, but it also wants you to answer the secret question. Now what? Time to dig into FireFox Password Manager….
Just go to Tools, Options and click on the Security Tab then click on Show Passwords (version 2.0 shown below) or View Saved Passwords (version 1.5 not shown) button.

You will see two columns, one for the Site and another for your Username. To view your passwords, click on the Show Passwords button and answer Yes to show your passwords.

The third column will list all passwords that have been saved…including the web site that you forgot!
Password Manager is a handy tool to use, but keep in mind, there are some potential security issues you should be aware of:
* Never let anyone access your computer un-attended. Doing so, will give them access to your account info as shown above.
* Make sure you are running the latest stable version of Firefox included any security updates.
* If you keep backups of your Firefox profile, keep it secure since Password Manager stores the data in a file. Although it is difficult to read, it’s not impossible to crack.
* Don’t use Password Manager for personal or banking/credit card sites (some banking/credit card sites by default don’t give you the option).
* Use “Password Never Saved” setting in Password Manager for sites you don’t trust or do not want to save passwords.
Tags:account password,
Firefox,
password,
password manager,
Security,
security issues,
security updates,
Web
Related posts
Written by Jason on April 30th, 2008 with no comments.
Read more articles on 1340 and 1354 and 1426 and 1429 and 1673 and 169 and 2065 and 2157 and 401 and 544 and Contributors and Firefox and Internet and Password and Security and Web and security updates.
This tip should be of interest to all the
Entrecard chain-droppers out there (you know who you are). It works in Internet Explorer (version 7 and later), Firefox, and Safari.
If you hold down the Ctrl key when you click on a link on a website the browser will open the linked page on a new tab, saving you having to right-click on the link and selecting 'Open Link in New Tab' (or 'Open in New Tab' on IE).


Written by Stepterix on April 30th, 2008 with no comments.
Read more articles on 1340 and 1354 and 1426 and 1429 and 1673 and 169 and 2065 and 2157 and 401 and 544 and Contributors and Firefox and Internet Explorer and keyboard shortcut.
When a web browser (IE 8 or Firefox for example) connects to a website it establishes connections. Each connection downloads one thing whether it is the html of the page, an image, or ad. Connections are used as a throttle that’s being held back to keep web servers and the internet from getting overloaded.
By default IE 8 only establishes two simultaneous connections at a time to download a web page. The two simultaneous connections limit is specified in the HTTP standard. The two connections limit can be changed on your computer through a registry edit.
Increasing the maximum allowed simultaneous connects from 2 to 16 can increase the speed of some web sites because the sites are downloaded in larger chunks at a time. Keep in mind that this won’t work on all web sites because the number of connections limit can be controlled by the web server.
Don’t expect this hack to make IE 8’s download speed super fast, but it will make some more advanced web sites more responsive.
Increase IE8’s Connections Limit
Warning: Increasing the connections limit requires editing the registry. Edit the registry at your own risk.
Note: You must be logged in with a user account that has administrative privileges to edit the registry.
1. Download this registry entry and save it on your computer.
If you’re not comfortable with running this registry entry on your computer, feel free to right-click it and select Edit to view the file contents. You’ll see it does nothing more than change two registry values dealing with your internet connection.
2. Merge the registry entry by double-clicking it and agreeing to the two information boxes that will appear.
3. Restart your computer.
Tags:Computer,
Connections,
download speed,
Explorer,
Firefox,
hack,
ie,
IE8,
Internet,
internet connection,
internet explorer,
internet explorer 8,
Limit,
registry,
web browser
Related posts