473,769 Members | 4,831 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Viewable in Any Browser campain: comments, feedback


I personally disagree with the Viewable in Any browser campain. The site
is frankly outdated, seems to be no longer maitained, has several
recommendations that don't make a lot of sense anymore. In my mind, it
is much more important to code according to standards (valid markup and
CSS code) and good coding practices (tableless design, graceful
degradation, etc.) than to code according to the lower common
denominator among browsers.

Let's face it: there is pretty much no one anymore who uses MSIE 4 or NS
4.x. We are already in the era of Firefox 1.5, NS 8.x, MSIE 7 and Opera
8.5. An unanimity of sources indicate that MSIE 5.x is now used less
than Firefox 1.x (eg: world-wide stats of August 2005:
http://www.thecounter.com/stats/2005/August/browser.php ).
Some marginal browsers are no longer being maintained either while some
other marginal browsers (e.g Icab 3, Amaya 9.x) are being upgraded to
support fully HTML 4.01, CSS 2.1 and DOM 1.

In that spirit, I stumble across other campains which I think make a lot
more sense and are more proactive, useful for the web in general:

- Any modern browser: http://merri.net/anymodernbrowser.shtml
- Browse Happy: http://browsehappy.com/
- Alternative Browser Alliance: http://www.alternativebrowseralliance.com/
- Table free campain: http://www.workingwith.me.uk/tablefree/why/

Gérard
--
remove blah to email me
Sep 29 '05 #1
14 2357

Content-Transfer-Encoding: 8Bit
Gérard Talbot wrote:
I personally disagree with the Viewable in Any browser campain. ....In my mind, it is much more important to code according to
standards (valid markup and CSS code) and good coding practices
(tableless design, graceful degradation, etc.) than to code
according to the lower common denominator among browsers.

Let's face it: there is pretty much no one anymore who uses
MSIE 4 or NS 4.x. We are already in the era of Firefox 1.5,
NS 8.x, MSIE 7 and Opera 8.5.


In my opinion, those few remaining users of ancient browsers
are used to most pages looking bad, and are grateful if the
text is readable at all.

There is, however, one "old" browser that we should all support;
Lynx.

Sep 29 '05 #2

Well, I agree with your general comment that AnyBrowser is a little
unmaintained, and some of the advice (commenting Javascript code) is
out of date, and other bits would benefit from updating to discuss
more recent compatibility issues and more stylesheet issues.

Still, if you do reasonable quality code and remember to hide complex
CSS from older browsers (@import method, usually) then you can support
NS4/IE4 in the same way you support Lynx - content without styling -
without really needing to worry about it much.

*shrug* Why not have it work in any browser? If it works in Lynx, IE
and any modern graphical browser, and you stick to well-known
accessibility principles, it can work in almost any browser without a
huge amount of extra effort. (The big effort for me, usually, is
getting it to work in IE)

Gérard Talbot <ne***********@ gtalbot.org> writes:
- Any modern browser: http://merri.net/anymodernbrowser.shtml
"One of the first steps, in my opinion, is to switch to XHTML."

Hmm. The advice to use CSS media types is potentially good, but
there's no need to use XHTML 1.0 (or they even suggest 1.1). HTML 4
Strict has almost exactly the same benefits [1] and disadvantages [2].

[1] If your internal storage format is XHTML 1.0 then there's a case
for using that for display, I suppose. Any other XML format and it can
be XSLTd to HTML about as easily as XHTML.

[2] You need a custom doctype with HTML to check some of the useful
XHTML strictness rules like closing of </p> being required, for
example, but that's not a big deal.
- Browse Happy: http://browsehappy.com/
- Alternative Browser Alliance: http://www.alternativebrowseralliance.com/
I'm not sure these really *replace* anybrowser - which was very much
directed at developers. These seem to be directed mainly at users and
don't give much in the way of detail to developers as to *how* to make
a site work in any browser.

It's a valuable aim, but not necessarily what anybrowser was/is about.
- Table free campain: http://www.workingwith.me.uk/tablefree/why/


Fairly good, for that area. It probably should emphasise a bit more
that data tables *are* still okay, given the number of people posting
here from time to time who have taken 'no tables' too far.

My own attempts to give (reasonably) updated advice on accessible and
compatible web authoring are at
http://www.dur.ac.uk/its/services/web/accessibility/
They also need a bit of work, but I haven't had time to do more than
update links for the last couple of years.

--
Chris
Sep 30 '05 #3
Gérard Talbot wrote:

I personally disagree with the Viewable in Any browser campain. The site
is frankly outdated, seems to be no longer maitained, has several
recommendations that don't make a lot of sense anymore. In my mind, it
is much more important to code according to standards (valid markup and
CSS code) and good coding practices (tableless design, graceful
degradation, etc.) than to code according to the lower common
denominator among browsers.

Let's face it: there is pretty much no one anymore who uses MSIE 4 or NS
4.x. We are already in the era of Firefox 1.5, NS 8.x, MSIE 7 and Opera
8.5. An unanimity of sources indicate that MSIE 5.x is now used less
than Firefox 1.x (eg: world-wide stats of August 2005:
http://www.thecounter.com/stats/2005/August/browser.php ).
Some marginal browsers are no longer being maintained either while some
other marginal browsers (e.g Icab 3, Amaya 9.x) are being upgraded to
support fully HTML 4.01, CSS 2.1 and DOM 1.

In that spirit, I stumble across other campains which I think make a lot
more sense and are more proactive, useful for the web in general:

- Any modern browser: http://merri.net/anymodernbrowser.shtml
- Browse Happy: http://browsehappy.com/
- Alternative Browser Alliance: http://www.alternativebrowseralliance.com/
- Table free campain: http://www.workingwith.me.uk/tablefree/why/


While the site might not have been updated recently (last update
was a year ago), much of the advice in "Design Guide" is still
valid. To paraphrase some of them:

* Don't create a Web page for a specific window size or
resolution.

* Avoid reserved characters when creating the file names of
pages.

* Observe case-sensitivity when coding links.

* Be sure to have sufficient contrast between text and background
colors.

* If you set the color for unvisited links, set a different color
for visited links.

* Specify the height and width of images.

* Use tables only to make a tabular presentation, not to create
margins or other layout that is best done via style-sheets.

* Be judicious in using frames. Don't use them unless the page
really is MORE useful with them. (See <URL:http://cad.chp.ca.gov/>
for an example of a good use of frames.)

These kinds of guidelines don't change with fashions. They remain
valid without frequent revisions.

--

David E. Ross
<URL:http://www.rossde.com/>

I use Mozilla as my Web browser because I want a browser that
complies with Web standards. See <URL:http://www.mozilla.org/>.
Sep 30 '05 #4
For general information:

Here is the current Accessible Site Design Guide on the "Viewable with
Any Browser Campaign" site:

http://www.anybrowser.org/campaign/abdesign.html
--
James Pickering
http://jp29.org/

Sep 30 '05 #5
Chris Morris a écrit :
Well, I agree with your general comment that AnyBrowser is a little
unmaintained, and some of the advice (commenting Javascript code) is
out of date, and other bits would benefit from updating to discuss
more recent compatibility issues and more stylesheet issues.

Still, if you do reasonable quality code and remember to hide complex
CSS from older browsers (@import method, usually) then you can support
NS4/IE4 in the same way you support Lynx - content without styling -
without really needing to worry about it much.

I don't use the @import method but I do test my pages with CSS disabled
to see if content can still be accessed, is still readable and if
navigation is still functional. This is a checkpoint in the WCAG list.
I also view/try those pages with Lynx 2.8.5. I never test my pages with
NS 4.x nor IE4/IE5.
*shrug* Why not have it work in any browser? If it works in Lynx, IE
and any modern graphical browser, and you stick to well-known
accessibility principles, it can work in almost any browser without a
huge amount of extra effort. (The big effort for me, usually, is
getting it to work in IE)

Gérard Talbot <ne***********@ gtalbot.org> writes:
- Any modern browser: http://merri.net/anymodernbrowser.shtml

"One of the first steps, in my opinion, is to switch to XHTML."

Hmm. The advice to use CSS media types is potentially good, but
there's no need to use XHTML 1.0 (or they even suggest 1.1). HTML 4
Strict has almost exactly the same benefits [1] and disadvantages [2].

[1] If your internal storage format is XHTML 1.0 then there's a case
for using that for display, I suppose. Any other XML format and it can
be XSLTd to HTML about as easily as XHTML.

[2] You need a custom doctype with HTML to check some of the useful
XHTML strictness rules like closing of </p> being required, for
example, but that's not a big deal.


This is interesting. I first developed my pages in XHTML strict and then
retroconverted them to HTML 4.01 strict. I kept all of the XHTML
strictness formatting like quoting attribute value, closing with end
tags (except for a few that must not have a closing tag), lowercasing
elements and attributes, no minimization of attributes, etc.
- Browse Happy: http://browsehappy.com/
- Alternative Browser Alliance: http://www.alternativebrowseralliance.com/

I'm not sure these really *replace* anybrowser - which was very much
directed at developers.


You're right.

These seem to be directed mainly at users and don't give much in the way of detail to developers as to *how* to make
a site work in any browser.

It's a valuable aim, but not necessarily what anybrowser was/is about.

Correct. It is another campain, aiming at users.
- Table free campain: http://www.workingwith.me.uk/tablefree/why/

Fairly good, for that area. It probably should emphasise a bit more
that data tables *are* still okay,

Good point. He's not mentioning that using table to render tabular data
is not only ok but logical and suitable. He mentions though in the
campain page (not in the 7 reasons page) that "Using tables for layout
is bad. They are intended to be used to display tabular data, not to
create complex layouts."
http://www.workingwith.me.uk/tablefree/
given the number of people posting
here from time to time who have taken 'no tables' too far.

My own attempts to give (reasonably) updated advice on accessible and
compatible web authoring are at
http://www.dur.ac.uk/its/services/web/accessibility/
They also need a bit of work, but I haven't had time to do more than
update links for the last couple of years.


Gérard
--
remove blah to email me
Sep 30 '05 #6
David Ross a écrit :
Gérard Talbot wrote:
I personally disagree with the Viewable in Any browser campain. The site
is frankly outdated, seems to be no longer maitained, has several
recommendatio ns that don't make a lot of sense anymore. In my mind, it
is much more important to code according to standards (valid markup and
CSS code) and good coding practices (tableless design, graceful
degradation , etc.) than to code according to the lower common
denominator among browsers.

Let's face it: there is pretty much no one anymore who uses MSIE 4 or NS
4.x. We are already in the era of Firefox 1.5, NS 8.x, MSIE 7 and Opera
8.5. An unanimity of sources indicate that MSIE 5.x is now used less
than Firefox 1.x (eg: world-wide stats of August 2005:
http://www.thecounter.com/stats/2005/August/browser.php ).
Some marginal browsers are no longer being maintained either while some
other marginal browsers (e.g Icab 3, Amaya 9.x) are being upgraded to
support fully HTML 4.01, CSS 2.1 and DOM 1.

In that spirit, I stumble across other campains which I think make a lot
more sense and are more proactive, useful for the web in general:

- Any modern browser: http://merri.net/anymodernbrowser.shtml
- Browse Happy: http://browsehappy.com/
- Alternative Browser Alliance: http://www.alternativebrowseralliance.com/
- Table free campain: http://www.workingwith.me.uk/tablefree/why/

While the site might not have been updated recently (last update
was a year ago), much of the advice in "Design Guide" is still
valid. To paraphrase some of them:

* Don't create a Web page for a specific window size or
resolution.

* Avoid reserved characters when creating the file names of
pages.


Depending on what is meant with "reserved" characters, this may be an
advice aiming at supporting old browsers only.

HTML 4.01 section B.2.1 Non-ASCII characters in URI attribute values
http://www.w3.org/TR/html401/appendi...on-ascii-chars

"We recommend that user agents adopt the following convention for
handling non-ASCII characters in such cases: (...) Escape these bytes
with the URI escaping mechanism (i.e., by converting
each byte to %HH, where HH is the hexadecimal notation of the byte value)."
Modern browsers will do the conversion; old may not.
Let's try an example here (coming from a bugzilla bugreport actually
https://bugzilla.mozilla.org/show_bug.cgi?id=293177 ):

http://www.gtalbot.org/BugzillaSection/Bug293177.html (testcase)
http://www.gtalbot.org/BugzillaSection/ÐÃÅ¥ÖãßÜü.html (targeted page in
bug 293177)

Lynx 2.8.5 does not make the conversion but will handle the both links
of the page http://www.gtalbot.org/BugzillaSection/Bug293177.html. I
have not tried with NS 4.x and MSIE 4.x/5x and have no intention of
trying those. Mozilla 1.7+, Seamonkey 1.x and Firefox 1.x convert the 2
links properly. Opera 8.5 handles the links without any conversion in
the address bar; same thing with MSIE 6.

* Observe case-sensitivity when coding links.

* Be sure to have sufficient contrast between text and background
colors.

* If you set the color for unvisited links, set a different color
for visited links.

* Specify the height and width of images.

* Use tables only to make a tabular presentation, not to create
margins or other layout that is best done via style-sheets.

All of these recommendations are justly for all browsers and media.
* Be judicious in using frames. Don't use them unless the page
really is MORE useful with them. (See <URL:http://cad.chp.ca.gov/>
for an example of a good use of frames.)

This one is somewhat debatable. If I do not consider the several invalid
markup code, missing doctype decl., etc.. in that page, then the page
is making a good use of frame. Also, the page still works with CSS
disabled and javascript disabled: so the page is good at achieving
accessibility goals.
The issue with anybrowser.org is that it recommends practices which,
with time, are less and less justified or clearly not making any sense
anymore. What will happen in 5-7 years from now when pretty much
everyone will be using a browser supporting "position: fixed" or which
will support XFrames? Will anybrowser.org still recommend to use
<frame>s when it seems "judicious" to do so?
These kinds of guidelines don't change with fashions. They remain
valid without frequent revisions.


Here's one point where I disagree with the anybrowser.org website: the
graphics format section at
http://www.anybrowser.org/campaign/a...n2.html#images

PNG is not formally recommended. Pretty much any decent visual browser
render PNG nowadays. That section is clearly outdated.
W3C QA tips for webmasters recommends very differently from anybrowser.org.
"PNG also compresses better than GIF in almost every case (5% to 25% in
typical cases)."
http://www.w3.org/QA/Tips/png-gif

Spacer tag is somewhat recommended: "if a non-breaking space won't
fulfill your needs, and your document will be readable without the
space, it may be preferable to use a SPACER rather than a transparent
graphic". That is definitely not what I recommend.

Document colors:
"If you want to specify one of the colors (BGCOLOR, TEXT, LINK, VLINK,
ALINK), specify them all to ensure a pleasant and readable mix."
That fits exactly what I meant. If you code according to standards, you
will not use these deprecated attributes. If you code according to the
lowest common denominator in browsers, you'll use deprecated attributes
all the time, everywhere, forever. That's not what I recommend.

Safe Colors and Color Palettes:
How many people are now using a computer screen/graphic card which can
not render more than 256 colors? Is anybrowser.org really offering truly
reasonable and best recommendation in 2005?

The whole issue is still for which/according to which level to code for:
according to web standards (HTML 4.01, CSS 1, DOM 1, WCAG 1, etc.) or
according to the lowest common denominator among browsers. With upgraded
browser versions being released and with people updating/upgrading their
browsers, is the anybrowser.org site still truly making a point?

Gérard
--
remove blah to email me
Sep 30 '05 #7
David Ross a écrit :
* Be judicious in using frames. Don't use them unless the page
really is MORE useful with them. (See <URL:http://cad.chp.ca.gov/>
for an example of a good use of frames.)

Gérard Talbot <ne***********@ gtalbot.org> wrote: This one is somewhat debatable. If I do not consider the several invalid
markup code, missing doctype decl., etc.. in that page, then the page
is making a good use of frame. Also, the page still works with CSS
disabled and javascript disabled: so the page is good at achieving
accessibility goals.


Well, all the incident links at <URL:http://cad.chp.ca.gov/> give me

Microsoft VBScript runtime error '800a01a8'
Object required: 'rsD'
/iiqr.asp, line 56

so I don't really consider it a very good example of anything...
--
Darin McGrew, mc****@stanford alumni.org, http://www.rahul.net/mcgrew/
Web Design Group, da***@htmlhelp. com, http://www.HTMLHelp.com/

"There are three kinds of people: those who can count and those who can't."
Sep 30 '05 #8
Darin McGrew a écrit :
David Ross a écrit :
* Be judicious in using frames. Don't use them unless the page
really is MORE useful with them. (See <URL:http://cad.chp.ca.gov/>
for an example of a good use of frames.)

Gérard Talbot <ne***********@ gtalbot.org> wrote:
This one is somewhat debatable. If I do not consider the several invalid
markup code, missing doctype decl., etc.. in that page, then the page
is making a good use of frame. Also, the page still works with CSS
disabled and javascript disabled: so the page is good at achieving
accessibili ty goals.

Well, all the incident links at <URL:http://cad.chp.ca.gov/> give me

Microsoft VBScript runtime error '800a01a8'
Object required: 'rsD'
/iiqr.asp, line 56

so I don't really consider it a very good example of anything...


Well, I was able to view the page without a problem. It's some sort of
traffic incidents page for the Los Angeles region.

By the way, Darin, did you get my email... regarding the update of WDG
Web Authoring FAQ Updated ? sent on 2005-09-18. Just asking...

Gérard
--
remove blah to email me
Sep 30 '05 #9
Gérard Talbot <ne***********@ gtalbot.org> wrote:
By the way, Darin, did you get my email... regarding the update of WDG
Web Authoring FAQ Updated ? sent on 2005-09-18. Just asking...


Yes, and I've incorporated some of the suggestions already. Specific,
noncontroversia l suggestions are easy to incorporate quickly.

Others get added to various "to do" and "to research" lists, and will take
longer. For example, I plan to replace deprecated presentational markup
examples with CSS, and proprietary DOM examples with the standard DOM. And
at some point, I'll include a "No Longer Frequently Asked Questions" page
with the entries that I've deleted from the FAQ.
--
Darin McGrew, mc****@stanford alumni.org, http://www.rahul.net/mcgrew/
Web Design Group, da***@htmlhelp. com, http://www.HTMLHelp.com/

"There are three kinds of people: those who can count and those who can't."
Sep 30 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

16
2238
by: Braxton Beyer | last post by:
I have just added a message to my website, wellheard.com, notifying WinIE users that their browsers will not render the site correctly as the site uses PNGs with alpha transparency. I then give them a link explaining why they should not use IE and the benefits of upgrading to another browser. My question is has anyone ever done this and what was their experience. I would like feedback and comments. Why isn't their a browser switch...
6
2160
by: Nobody | last post by:
This is sort of my first attempt at writing a template container class, just wanted some feedback if everything looks kosher or if there can be any improvements. This is a template class for a binary search tree. Note there is a requirement for this to be a Win32/MFC "friendly" class, thus the use of CObject and POSITION. There is also a requirement for there not to be a separate iterator class. template <class TYPE, class ARG_TYPE =...
12
10175
by: Kepler | last post by:
How do you get the height of the client browser in IE? Both document.body.clientHeight and document.body.offsetHeight return the height of the document. If the page is long and there's a vertical scrollbar, you get the height of the entire document, screwing up any chance of centering a window in the browser using these values. Is there a way to get the height of the actual browser window and not the entire page height? Thanks.
10
2199
by: William L. Bahn | last post by:
I'm looking for a few kinds of feedback here. First, there is a program at the end of this post that has a function kgets() that I would like any feedback on - including style. Second, for those that are interested, I present an outline of the approach I am looking at using in class this semester. I would be very interesting in any feedback on that, but if you are not interested, feel free to skip over it.
3
1401
by: Mark C | last post by:
Hi I was in the progress of developing a web site whereby developers can do free online tests on various programming languages. After initial feedback I managed to fix quite a few issues and changed the look and feel. I would just like some futher comments\tips\hints or feedback The site is http://www.quiznetonline.com
4
1618
by: =?Utf-8?B?TmFkYXYgUG9wcGxld2VsbA==?= | last post by:
Hi everybody, I've got an ASP.NET 1.1 application and I need to add to it new Browser Capabilities information for 3 new cellular phones. I used to use http://www.asp.net/mobile/profile/MyDevices.aspx to detect the Browser Capabilities for my devices, but now I can't get to that page. When I try to get there I get a login page. When I try to login it shows the same login page WITHOUT any error. I've got an account in www.asp.net (when...
3
4019
by: TS | last post by:
I am using IE 7. I have a website running on my local machine (localhost) and auto complete doesnt work for any of the textboxes, but going to web sites on the internet does support this so i know the browser has this config turned on. any ideas why it doesnt work on my local web application (.net 2)? thanks
5
1760
tjc0ol
by: tjc0ol | last post by:
Hi all, I made contact page which allows visitors to input their name, email address, phone number, comments and select a comment type by using <select> element in html with javascript. Among the option of it are: General Support, Technical Support, Sales in billing, Request RA no. and Others. If they select Others there will be a pop-up textbox for others(so they can specify a comment type) and the textbox is placed on a DIV. I placed CSS on...
3
2407
by: TompIfe | last post by:
Hei, I have a web service with web methods that take nullable DateTime parameters (i.e., DateTime?) When i open the service in IE7, I get the message that those methods cannot be viewed ("not primitive types"); the other web methods can be invoked without problems. Any suggestions on how I can change IE7 settings or something else? Kind regards, Tom Pederen
0
9416
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10199
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10032
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8861
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7393
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6661
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5293
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3948
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2810
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.