Posts tagged web
Browser Wars: Learning from each other
0The most popular browsers from the country I come from (where Mac is rare) are Google Chrome, Mozilla Firefox & Microsoft Internet Explorer. Like any other browser, these all have the same goal – to make browsing experience richer & better. Yet, there are a lot of differences in their ways and some are better than other in some ways.
If I ever have to make a generic purpose browser, I’d certainly pick good (for inclusion) & bad (for exclusion) things from the current browsers.
Google Chrome:
The recent one and certainly a game changer. It has improved the user expectations from a browser by 100x.
The Good:
- The crashless browser - protect the user even from the crashes in external plug-ins (Thankfully, Firefox also implemented out-of-box plugins)
- Faster startup time – Do things that are only absolutely needed. Nothing more. Defer everything else, to post-startup (in parallel with the user’s browsing).
- Sandboxing – Whatever you do on web stays on web. Protect the machine from all the various security issues.
- Explicit permissions listed for Extensions – user must know what an extension is capable of (despite of what it claims to do)
- Silent updation: Push updates only when it is good for users. Then, who would say “no” to better browsing experience? So, there is no point in showing an annoying dialog “Updates Available” when you already know the user clicks “yes”.
- Incognito Mode starts a new session without closing the current session (sadly, Firefox does that)
The Bad:
- Weakest & the most limited extension model – So limited that it may give you a feeling that the word “extension” doesn’t suit it.
- Still an immature platform for developers. Extension Model hasn’t moved but the other parts (rendering, UI etc.) are moving forward at a very fast pace. Even, many bugs in the chrome extensions are not getting fixed for many months.
Mozilla Firefox
The Good:
- Super cool extension model. There is almost nothing that can’t be done by the addons. And, XPCOM works across all the platforms.
- Known to be the developer-friendly browser from long time. One of the early browsers that emphasized on standards and innovation from its early days.
The Bad:
- Known to be memory hog. Not efficient at Memory management. Have issues with Intel’s hyperthreading.
- MaxVersion in addons is mandatory and is limited to current version (you can’t just use * for maxversion). The only issue with this is each and every addon is to be updated (you add features or not) with every major version release (which is once in 12 weeks as of now).
- Private browsing closes the current session and starts a new one. After closing private session, it restores the earlier session. This means you can’t do both (with default command line options)
- Every extension have complete control (including a binary component), because of lack of a permission model. You can never trust an extension because of this!
Internet Explorer
The Good:
- Its never late to catch up with the standards, speed & security (with IE 9 & IE 10)
- Native 64-bit for 64-bit OS. (I can’t believe Firefox and Chrome do not have them for Windows)
The Bad:
- Still maintains the completely idiotic ‘Quirks Mode’. I don’t see the greater cause of maintaining a version which is full of bugs, extremely slow and follows no standards, and also all developers hate it.
- Extension Model – Its a big pain. You need to be comfortable with COM to get started with. Its much comfortable to think addons don’t exist at all for this version.
- Supports ActiveX plugins when the whole world uses NPAPI plugins.
Disclaimer: All the above are my own thoughts, and I’ve to confess I haven’t researched every point. So, not all the above may be true, but is to the best of my knowledge.
5 Reasons I dislike Flash
0The times have changed to where we spend most of our lives on the web. But, web is far from perfect. It has annoyances lurking around at every corner. Most of the times I get annoyed is because of the bad code (in HTML, CSS, Javascript) by the developers. The next big annoyance is from Flash content, but I can’t blame the content developers for their code. Its the design issue of the Flash runtime itself…
The top 5 things in Flash that annoys me daily:
- Browser shortcuts (like, Ctrl+W, Ctrl+T) do not work when focused on flash elements, since it consumes all the keyboard events. I’d expect it to at least pass them to browser if it doesn’t handle a key event, but it doesn’t even bother.
- Zoom doesn’t work – Ctrl++, Ctrl+- are useless. You have to read the content in SWF in the published size itself. You cannot increase or decrease it size.
- Middle Click doesn’t work – I can’t open a link in new tabs. Opening links in new tabs from SWF is a small-size challenge.
- I can’t find the text I’m looking for with Ctrl + F. You can’t just search in Flash content, unless the SWF itself contains a search box & search implementation.
- Its pretty famous & is gonna stay there longer. And the worst part – everyone uses it in their site, though there is absolutely no need for it (making my browsing experience annoying)
Disclaimer: The above view is completely personal and has absolutely nothing to do with anything (including friends & employer also) else.