Domain: com.com
Stories and comments across the archive that link to com.com.
Stories · 2,381
-
Håkon Responds to Questions About CSS and...
You submitted questions for Håkon Wium Lie on June 20. Today we have his answers, not only to the (+5 moderated) questions we sent him, but to a bunch of others he thought would also be interesting to answer.> Where... by bcat24 > > Do you think the W3C development process is too slow? I know that > you guys want everything to be perfect, but it seems to take far > longer than necessary. CSS 3 shows promise and I wouldn't want it > to die a slow death in standardization.
No, I don't think W3C is too slow. W3C isn't the bottleneck, browsers are. The dominant browser on the web hasn't been updated for years, and it doesn't make sense for specifications to get too far ahead. Rather, the CSS Working Group in W3C has focused on specification maintenance and achieving interoperability between implementations. This work is not so glamorous and some people — even within W3C — would prefer if they concentrate on new specifications. However, I think the focus on interoperability (which has resulted in CSS 2.1) has been crucial to the success of CSS.
CSS3 is a set of specifications that are developed more or less independently of each other. The best way to push a specification forward is to implement it. In the past year, we've seen some encouraging CSS3 implementations come along. For example, Mozilla supports multi-column layouts, Opera supports media queries, Prince supports cross-references and Safari supports borders and backgrounds. A few years from now, I think a select group of CSS3 modules will be interoperably supported in all browsers.
> Why is CSS such a good idea but a pain to use? > by rar > > CSS is clearly very useful for separating style from content. But > apparently people tend to have problems when using it for layouts. > Would you say this is because people have not yet understood how to > properly do layout in CSS, or is it CSS that is lacking in this > area? What can be done to improve the situation? --- Would the web > benefit from HTML and CSS being complemented with some kind of > "layout language"?
I think layout and style should be tackled by the same language and the two are intertwined. Trying to split the two is like splitting the HTML specification in two, one specification describing inline elements and the other describing block elements. It's not worth the effort.
I think CSS is capable of describing beautiful and scalable layouts. The CSS Zen Garden has been a eye-opening showcase of what is possible today. If MS IE had supported CSS tables, another set of layouts would have been possible. So, there is still lots of potential in the existing CSS specifications which should be the next milestone. Beyond that, the CSS Working Group has started work on a new CSS3 module for advanced layout. Feedback is welcome.
> CSS Evolution! > by eieken > > Is the wave of webpages designed completely in CSS what you > intially intended when you came up with CSS? Do you see that > changing? Is that good or bad?
I saw a clear need for a web style sheet language when proposing CSS in 1994. I also wanted CSS to fully describe the presentation of a web pages -- not just add some styling. All in all, I think it has turned out quite well. It has taken longer than I expected, but the scale -- due to the growth of the web -- is more than anyone could imagine.
I used "I" too many times in the previous paragraph. It's important to realize that CSS is a community effort rather that one man's work. Bert Bos joined me early and we worked out the initial designs on a whiteboard during the summer of 1995. The www-style mailing lists and the W3C CSS Working Group have also been crucial in ensuring the success of CSS.
If you're interested in the history of web style sheets, you'll find plenty of material in my PhD thesis on the subject.
> Two questions (cut to 1.5 by editor Roblimo) > by Dolda2000 > If you were allowed (perhaps by court order, which wouldn't be > unthinkable) to force Microsoft to do one (1) change in Internet > Explorer, what would that be?
I would force them to support one (1) single web page before shipping IE7, namely Acid2. By using a tiny amount of resources to get Acid2 right, Microsoft can save web designers and users endless amounts of frustration in the future. It would also be an honorable thing to do. This is what Microsoft's W3C representative wrote in 1998:
Microsoft has a deep commitment to working with the W3C on HTML and CSS. We have the first commercial implementation of HTML4, we were the first vendor anywhere to implement even portions of CSS, and we have put a tremendous amount of energy into seeing CSS mature to Level 2. We are still committed to complete implementations of the Recommendations of the W3C in this area (CSS and HTML and the DOM).
May I have one (1) more change? Please? Then I would make IE7 support TrueType downloadable fonts. Microsoft's record in fonts isn't that bad. They made their core fonts available for anyone to use, and IE supports downloadable fonts. Unfortunately, only the proprietary EOT format is supported. A few lines of code would be sufficient to support zipped TrueType fonts as well, and this would unleash a new wave of typography on the web. (To protect yourself, make sure you use a browser where author style sheets can be turned off — Shift-G in Opera). > As a bonus question: What do you think of Slashdot's CSS? ;)
The new design looks great! The style sheets behind the scene are more complex than what the average web page needs. But, we wouldn't expect anything average from Slashdot, would we?
> 6) Opera > by taskforce > > Opera 9.0 seems to offer a lot of decent additions to Opera's > standards pool. How satisfied are you personally with the work the > team has done on implementing standards, and is there anything in > there you feel is superflous and anything you would have preferred > to see which wasn't in there?
I'm very proud of the standards support in Opera 9. Acid2 is an obvious favorite of mine and seeing that smiley face makes me very happy.
Among the more experimental features is support for Audio in HTML5. Web applications can now make sounds in a sensible way! Combined with the canvas element, developers can create Flash-like content without resorting to a proprietary format.
Having support for Bittorrent is also great. From a technical point of view, it makes much sense. Also, it's a political statement of sorts.
During the development of Opera9. Geir Ivarsøy, who founded Opera with Jon von Tetzchner, died after fighting cancer for years. Geir did a spectacular initial CSS implementation in Opera, thus convincing me to join the company. In music, the 9th is legendary. Beethoven, Schubert, Bruckner and Mahler all did 9 symphonies. Opera 9 was Geir's last symphony.
> Included styles, aliases > by Spy der Mann > > I always wanted to have "included" substyles or "aliases" in my > CSS definition, to save redundancy. > > (For includes) > > .class1 { color:#ff0000; } > .class2 { background-color:#ffffff; } > .class3 { include:class1,class2;font-weight:bold; } > > (For aliases) > > @alias color1 #ff0000; > @alias color2 #ffffff; > @alias default_image url('/img/image1.jpg'); > > .class1 { color:color1; } > .class2 { background-image:default_image;background-color:co lor2; } > > This way we could change colors or images for a whole webpage > by editing a reduced number of lines. > > Had you considered any of these ideas in the past? If so, > why were they rejected?Yes, aliases and constants have been considered. As David Wheeler noted, "Any problem in computer science can be solved with another layer of indirection."
CSS is already an indirection. Instead of putting properties and values directly on elements, it associates properties and values with selectors. What you (and others) are proposing is to add another layer of indirection. By doing so, one could possible write shorter, more manageable style sheets. However, there are also some downsides. It requires a new syntactic construct (@alias) and implementations must be able to remember a list of aliases. What if aliases are defined in one style sheet and referenced in another -- should that work? If so, what if the first style sheet isn't available?
For CSS1, the downsides of aliases were considered more significant than the benefits.
> Definition of pixel > by Sara Chan > > The word pixel meant "picture element", but CSS redefined it >to mean something quite different (a particular subtended angle >of view [w3.org]). This causes confusion: CSS pixels are not pixels. >(Indeed, I have seen misinformed comments on Slashdot due to >that confusion.) > > My question is this: why call the subtended angle a "pixel", instead of >something else (e.g. "subangle")? If CSS wanted to use the subtended >angle for something, that is fine, but calling it a pixel seems to follow >the approach of Humpty Dumpty "When I use a word, it means just >what I choose it to mean".
In most cases, a CSS pixel will be equal to a device pixel. But, as you point out, the definition of a CSS pixel will sometimes be different. For example, on a laser printer, one CSS pixel can be equal to 3x3 device pixels to avoid printing illegibly small text and images. I don't recall anyone ever proposing another name for it. Subangle? Personally, I think most people would prefer the pragmatic "px" to the non-intuitive "sa".
> Vertical CSS Support > by infestedsenses > > As a developer who works with CSS every day, I find one > complication that continues to bother me in my daily work. > Support for CSS has always been good on the horizontal scope, > but vertical positioning has always been quite complicated. > Alone the procedure to affix a footer to the bottom of a screen > in dependance of the amount of content is unnecessarily difficult, > spawning hackish solutions such as "footerStickAlt" > [themaninblue.com]. Centering an object in the dead center of a > page also requires strange procedures such as this one [wpdfd.com], > which still aren't ideal (try making the viewport really small). The old > table method provided much easier methods for this. What are your > thoughts on this and do you see improvement following in future > CSS revisions?
Indeed, the CSS formatting model allows more control horizontally than vertically. This is due to (typically) having a known width, but an unknown height. As such, the height is harder to deal with.
However, CSS2 fixed positioning allows you to place content relative to the viewport (which is CSS-speak for window) instead of the document. For example, by setting position: fixed; bottom: 0 on an element, it will stick to the bottom. This works in Opera, Safari and Mozilla-based browsers. IE6 doesn't support it, however. It remains to be seen if IE7 will support it.
> About Microsoft... > by Chabil Ha' > > With MS's next browser release (IE 7), you mentioned in other > interviews that their decision to not supprt CSS2 was more a political > decision than a mechanical one. Aside from their obvious desire to > dominate the world, what politics do you think are in play that make > them not want to conform to the standard, and what do you think would > change that landscape so that they would have some initiative to > fully support it?
Great question. It's quite clear that Microsoft has the resources and talent to support CSS2 fully in IE and that plenty of people have reminded them why this is important. So, why don't they do it? The fundamental reason, I believe, is that standards don't benefit monopolists. Accepted, well-functioning, standards lower the barrier of entry to a market, and is therefore a threat to a monopolist.
From that perspective, it makes sense to leave CSS2 half-implemented. You can claim support (and many journalists will believe you), and you also ensure that no-one can use the unimplemented (or worse: buggily implemented) features of the standard. The only way to change the equation is to remind Microsoft how embarrassing it is to offer a sub-standard browser. And to use better browsers.
Another reason for not making a IE too good is that it will compete with Windows. A modern browser is an application platform; the combination of HTML, JavaScript, CSS and DOM allows developers to target the web instead of Windows, Linux, or Mac.
> From linvir > How long since you last used Linux?
I'm using it right now. Ubuntu on a IBM Thinkpad X41 is the environment I live in. Ubuntu rocks -- especially with Opera on top! (And Emacs right underneath.)
> From Rob T Firefly (844560) > Why the curly brackets?
The initial CSS proposal didn't use them, instead relying on newlines to separate statements. TimBL didn't really like that and I therefore borrowed the curly braces from the C programming language. The syntax for comments came along as well. I think it works quite well.
> why not XML? > by slashdot.org > Simple question (hopefully simple answer ;-)): why > did you not use XML?
The simple answer is that the development of CSS preceded XML by a year or so. However, if XML had been available, would we have used it? Probably not. And I suspect Brendan Eich of JavaScript fame would answer the same way on behalf of his language.
XML is a great syntax for structured data, but not suitable for all languages. Still, I think the SGML-based syntax for the FOSI style sheet language.
> Padding > by Anonymous Coward > Why was the decision made to make padding apply outside > of the width of a 'box', rather than inside, which would seem > to make more sense?
It makes sense in some situations, but not in others. For example, when a child element is set to width: 100%, I don't think it should cover the padding of its parent. The box-sizing property in CSS3 addresses this issue. Ideally, the issue should have been addressed earlier, though.
> by nuzak > why not float: > DSSSL had this sort of thing solved before HTML even existed, > let alone CSS. But scheme is too scary and icky, and the W3C > believes in a principle of least power, so CSS has to be fully declarative, > static, and crippled until patched later.
You're wrong about DSSSL -- it didn't support floating text (as in having text wrap around images) at all. And the DSSSL specification only became publically available around 1996, years after HTML.
> by MagicM > How frustrating is it to write a specification knowing > that you're at the browser vendors' mercy?
That's part of the game. I don't think any specification has a birthright to be fully supported by all browsers. There should be healthy competition between different specifications. I believe simple, author-friendly specifications will prevail in this environment.
Microformats are another way of developing new formats. Instead of having to convince browser vendors to support your favorite specification, microformats add semantics to HTML through the CLASS attribute. And style it with CSS.
> New standards > by iamsure > > In your work at Opera, you have clearly paved a path that includes > going beyond the W3C standards. Whether it is WhatWG > implementations, or new functionality specific to Opera (2dgame), > you are pushing into new territory. Can you explain why W3C isn't > sufficient, and why efforts at Opera to expand beyond the standards > differ from Microsoft's embrace/extend model?
It's a fair question. The WhatWG was set up when it seemed as if W3C didn't care much about browsers anymore. That has definitely changed and work items from WhatWG are now channeled into W3C (e.g., XMLHttpRequest).
At Opera, we sometimes include experimental features before they have been standardized. When this happens they are labeled as such, but we still try to document them. For example, we support some Opera-only CSS properties for XML. If these features gain traction, we are happy to work with other organizations to standardize them. If they don't become popular, the features will most likely disappear.
> Beyond HTML > by pr1000 > How far can CSS be taken beyond the web page--that is, > have generalized or non-web specific features for such things > as page formatting or type setting? Do you plan/wish/hope to > take it farther than it currently is?
Yes, I think it's possible to take CSS further in several directions. I'm eager to see CSS being used in paper-based publishing and I joined the board of YesLogic — which makes the Prince XML to PDF converter — to make sure they added my favorite features. Bert and I used Prince to generate PDF from HTML and CSS sources for the third edition of our book. W3C just published a new Working Draft which describes features for printing, e.g., footnotes, cross-references, and even generated indexes.
For mobile units, I think Media Queries will be important. For example, they can express that large images should not be sent to mobile devices.
Another great opportunity for CSS is Web Applications. Just like documents, applications need to be styled and CSS is an intrinsic component of AJAX. The "AJAX" name sounds great, but allow me to propose a few alternate spellings that I find more accurate:
- AJACX: Asynchronous JavaScript, CSS and XMLHttpRequest
- ADJACS: Asynchronous DOM, JavaScript and CSS
- ADHJACS: Asynchronous DOM, HTML, JavaScript and CSS
- AJAHCS: Asynchronous JavaScript, HTML and CSS
- AJACS: Asynchronous JavaScript, HTML and CSS
Opera, Mozilla and Safari developers are collaborating in the WHAT WG and in W3C to make sure we have interoperable specifications for AJAX. I mean, ADHJACS.
> by crush > Is the difficulty of producing a layout that consists of > three or more columns of equal height justification for > adding some new feature to the specification to make this easier?
I don't think so. CSS2 defines a table layout that can be used for this purpose. The problem is, and I'm repeating myself here, that the dominant browser doesn't support it. Adding yet more features to the specification wouldn't help.
> How come, we um, lie?
Right. My name is, um, a bit troublesome to pronounce in English. But I'm a nice person who generally tells the truth. I often tell non-Norwegians that my first name is pronounced "howcome". That's close, but not quite. It does make for a great email address like howcome@opera.com, though.
So I may be a Lie, but I'm just a little white one :-)
-
An IE-Based Tabbed Browser from China
wannabgeek writes "CNET reports that a new browser, Maxthon is gaining wide popularity in China. 14 percent of Chinese websurfers have used it ... Part of the reason, it has features that help in circumventing the Chinese government censors. CNET says it was shown at the Consumer Electronics Show in Vegas this year, and is slowly gaining foothold in Europe as well as the U.S." -
More PDF Blackout Follies
georgewilliamherbert writes "The latest installment of "As the PDF Blackouts Turn" hit today, with a U.S. government apparently releasing a redacted version of their court filing in the Balco grand jury leak case which merely stuck a black line over the text, which remains available in the document. As with prior documents, entering text cut/paste mode in a normal PDF browser such as Acrobat allows a reader to access the concealed text. Previous incidents include an AT&T filing in the NSA case." This works with Xpdf and KPDF, too; for KPDF, use the selection tool (under the Tools menu) around the redacted section, copy to clipboard, then paste into the text-manipulator of your choice. -
Slashback: Sidekick Justice, Free WebTV, Office Patent
Slashback tonight brings some clarifications, and updates to previous Slashdot stories including, justice for a stolen sidekick victim, free WebTV test a hit, SUSE 10.1 release postponed, Microsoft loses Office patent appeal, and PayPal fixes their phishing hole -- Read on for details.Justice for stolen Sidekick victim. chroma writes "Remember the stolen Sidekick from a few days back? When the girl uploaded photos of herself to T-Mobile's service and bragged on IM about having the stolen PDA? Well, after creating a webpage that gathered 400,000 links in less than two weeks, and much runaround from the NYPD, justice has finally been served: the perpetrator has been arrested and the PDA returned. Further information is also available from The New York Times."
Free WebTV test a hit. An anonymous reader writes "Disney has said that their recent ABC free WebTV was a real hit with viewers and advertisers alike. Shows posted on the site received more than 11 million hits in the first month alone. From the article: 'An online exit survey posted the first week of the two-month trial showed that 87 percent of respondents could recall the advertisers that sponsored the episodes they watched. That compares with typical ad recall of about 40 percent for commercials viewed on television, industry sources said.'"
SUSE 10.1 release postponed. An anonymous reader writes "According to a confidential memo, the next release of both the server and desktop versions of SUSE Linux Enterprise 10 will be delayed. The delay is apparently to allow Novell 'to address final issues with our new package management, registration, and update system and also fix the remaining blocker defects.' From the article: 'SUSE has a new update and package management system, which has not worked well in its initial release in the free, community OpenSUSE 10.1 release. Unfortunately, even after a recent set of fixes was released, SUSE's update and new program installation system is still giving many users trouble.'"
Microsoft loses Office patent appeal. xwipeoutx writes to tell us ITNews.com is reporting that Microsoft has lost their appeal in US Federal court over a judgement handed down saying they violated a patent by Guatemalan inventor Carlos Armando Amado. The original judgement stipulated that Micosoft was to pay Amado $6.1 million for violating a patent covering a means to link spreadsheets and databases.
Paypal fixes their phishing hole. Juha-Matti Laurio writes "News.com is providing new information to the previous PayPal XSS hole and reporting that the hole is now fixed." From the article: "By exploiting the flaw, attackers were able to redirect people from a PayPal Web page to an online trap located in South Korea, a representative for the service said. The page actually has a real PayPal URL, but hosts malicious code that presents a message warning members that their account had been compromised. It then redirects them to a 'phishing' Web site."
-
Creative Commons Add-In for Office Released
Ctrl+Alt+De1337 writes "Creative Commons has announced the release of an add-in to Microsoft Office that allows the easy addition of a CC license to files created with Word, PowerPoint, or Excel. It was co-developed by Microsoft and Creative Commons and only works in Office XP and Office 2003. It can be downloaded from Microsoft's download center after a validation check, and CNet has a screenshot available of the tool." -
Microsoft Loses Appeal in Guatemalan Patent Claim
Spy der Mann writes "A year ago, Guatemalan inventor Carlos Armando Amado sued Microsoft for stealing an Office idea he had tried to sell them in '92. They were found to be infringing on his patent and had to pay him $9 million in damages, but they refused and appealed the decision. Today, just a year after they appealed, the Court confirmed the verdict: Microsoft loses. If that wasn't enough, the amount was raised to $65 million for continuing infringement." -
How Much Should Broadband Cost?
An anonymous reader writes "The difference in cost between broadband options seems to be the primary motivator for consumer spending, reports News.com. Frugal consumers are opting for the lower-priced DSL options, while those with more money to spend on services are opting for cable modems." From the article: "A year-and-a-half ago, pricing of DSL and cable modem service was roughly the same. But over the past year, the phone companies have launched an aggressive assault by dropping prices. At the end of 2005, the average price of DSL service was about $32 per month, roughly $9 less than cable, according to research firm IDC. AT&T has twice lowered the price of its DSL service and now offers its 1.5Mbps service for $12.99 for the first year." -
EU Officials Cautious on AntiTrust Issues
An anonymous reader writes "News.com has a piece up looking at reactions from EU officials to the iTMS antitrust case. The individuals involved are wary of cracking open the DRM that protects the music sold at the iTunes Music Store." From the article: "One of the most outspoken government advocates on the issue is Norwegian consumer ombudsman Bjorn Erik Thon, who said he would act soon depending on how Apple responds to a letter the government had sent the company. If Apple can require an iPod for songs via iTunes, then music, book and film companies might restrict their products to specific players too, he said." -
Amazon Asks Congress to Curb Patent Abusers
theodp writes "As Amazon urged Congress to change the law to protect the e-tailler from patent abusers, Rep. Lamar Smith had a question: 'Could not Amazon.com be accused of being a troll for patenting the one-click?' Smith asked, a wry smile on his face." While it's nice to see to see tech companies behind such legislation, it would seem there's some pots calling the kettle black, so to speak. -
Internet For All in Europe
evileyetmc writes "It seems that the EU has taken the next big step in promoting the concept of Internet for All, by attempting to 'ensure that the most Web-disadvantaged groups can get online.'" From the article: "The EC has now pledged to increase broadband coverage across the continent to 90 percent by 2010. Rural areas are still underserved, according to the Commission, with about 60 percent penetration. Urban areas fare better and are already at the 90 percent mark. The EC has also committed to putting new measures in place to halve exclusion rates in skills and digital literacy by 2010. " -
Slashback: Oklahoma Spyware, FSF DRM, Lenovo Linux
Slashback tonight brings some corrections, clarifications, and updates to previous Slashdot stories including Oklahoma's Spyware Bill dies a quiet death, Lenovo denies ditching Linux, Mars rover escapes again, RIM CEO speaks out against unlimited wireless, Microsoft LiveMail gets ads, FSF anti-DRM campaign expands, and AT&T calls Wired to task over leaked documents -- Read on for details.Oklahoma's Spyware Bill dies a quiet death. enforcer999 writes to tell us that the Oklahoma Computer Spyware Protection Act has been pretty much dismantled by the Senate review committee. From the article: "Sen. Clark Jolley, R-Edmond, the Senate author of the legislation, said revisions he had made to the bill were well received by those who had originally opposed it, but that after making the changes, the companies backing the measure -- which had included Microsoft and Symantec Corp. -- opposed it."
Lenovo denies ditching Linux. btornado writes "According to News.com, Lenovo has denied ditching Linux on their notebook computers. Lenovo actually plans to support Linux on its ThinkPads starting in the third quarter, in partnership with Novell. From the article: 'Customers of the recently introduced Lenovo 3000 units still won't have a preloaded option, however, because the small and midsize business customers that are the targets for those units have many different requirements, he said.'"
Mars rover escapes again. An anonymous reader writes "New Scientist is reporting that NASA's Mars Opportunity rover has freed itself from the sandy soil that ensnared it for more than a week. This is the second time the rover has gotten bogged down in a Martian sand trap. Both times, the rover has managed to escape to solid bedrock by churning its wheels in reverse."
RIM CEO speaks out against unlimited wireless. frdmfghtr writes "The president and co-CEO of Research in Motion seems to think that wireless data services providing unlimited data traffic for a flat monthly rate will have a 'devastating effect on wireless innovation.' From the article: '"No matter how you slice it, bandwidth is not free," he said. "If we don't set up economic incentives now, research and innovation for new networks won't happen for the future. We want companies to be encouraged to make efficient use of the network, so we don't cross over and use up all the capacity of the networks." Counters Jeff Pulver, the founder of Pulver Media, saying that (FTA) "unlimited bandwidth use in the wireless world is needed because access to the network is what spurs innovation."'"
Microsoft LiveMail gets ads. Blahbooboo3 writes to tell us BetaNews is reporting that Microsoft will be embedding advertising in their new e-mail client software, Windows Live Mail Desktop. Similar to Google's Gmail, it will serve ads based on the text of your mail messages. Microsoft's Active Search feature, being tested within Windows Live Mail Desktop, scans users' emails and displays potential search terms related to that email as well as text-based contextual ads. The effort is an example of the Windows Live ad-supported software initiative. Contextually relevant ads served by Microsoft-partner Kanoodle will be displayed next to each email message. Also, paid search links will be served by Microsoft adCenter when users conduct searches via a search box that's built into the mail interface.
FSF anti-DRM campaign expands. nanday writes "According to an article on Newsforge (Also owned by VA), the Free Software Foundation's Defective by Design campaign against Digital Rights Management expanded on Saturday, targeting Apple Stores in eight American cities. However, unlike the event outside WinHEC 2006 two weeks ago, this time the police and security guards were waiting when campaign volunteers arrived to demonstrate."
AT&:T calls Wired to task over leaked documents. John Young writes to tell us that AT&T is standing in opposition [PDF] to Wired's recent intervention and the unsealing of documents. AT&T stated that "Wired argues that it has a 'unique perspective in this case.' If that is anything other than hot air, it is a reference to the fact that Wired has leaked eight pages of what it claims are AT&T Proprietary documents--and did so despite actual knowledge that AT&T claims its documents contain trade secrets and the Court had ordered that such documents remain under seal. A 'unique perspective' indeed--that of the scofflaw. [...] Wired maintains that the Klein and Marcus Declarations should be unsealed in their entirety because "the course of events has overtaken the sealing order." The "course of events" to which Wired refers is, of course, its own leaking of subsets of the information that the Court ordered remain under seal. Wired's argument appears to be that because it has openly chosen to disregard the Court's order (not to mention AT&T's rights) the Court should reverse that order. Talk about chutzpah."
-
Verizon to Launch Mobile 'Chaperone' Service
Billosaur writes "CNET is reporting that Verizon will soon be offering a service (branded "Chaperone") which will allow parents to keep track of their cell phone-carrying children. Following on the heels of a similar service started by Sprint in April, the system will allow parents 'to set up geographic limits and receive text alerts if their children, who also carry phones, go too far from home. The service also lets parents check where their offspring are via a map on their cell phone or computer.' Disney will purportedly be offering a similar service when it begins selling mobile phones sometime this summer. It's 10pm -- do you know where you child's cell phone is?" -
Chipmakers Admit Your Power May Vary
Dylan Knight Rogers writes to mention a News.com story discussing the realities of chip power consumption. From the article: "Assessing only pure performance is passe. The debate these days is about performance-per-watt, which seems like it should be a simple miles-per-gallon type of calculation. However, miles are miles, and gallons are gallons. There's no one simple way to measure processor performance, and measuring the amount of power output by today's chips is proving just as difficult." -
Blizzard Folds on WoW Guide Suit
Agent writes "You may remember the suit that Brian Kopp brought against Blizzard, Vivendi and the ESA in March of this year. He sued due to wrongful takedowns under the DMCA of his ebay auctions. The case was settled today, allowing him to resell his guide on eBay and his personal site. The settlement helps more than just Kopp, as it sets a precedent for future interactions of this nature with game companies." -
Second Life Looks At Scaling Problems
News.com reports that Second Life is looking down the barrel of some major scaling problems as the virtual world's popularity soars. While Linden Labs itself seems confident in the scalabilty of their virtuality, outsiders aren't so sure. From the article: "'My understanding of (Linden Lab's) back-end requirements are that they're absurd and unsustainable,' said Daniel James, CEO of Three Rings, publisher of the online game Puzzle Pirates. 'They have (about) as many peak simultaneous players as we do, and we're doing it on four CPUs.'" -
PC's Role Key in New Format War
An anonymous reader writes "With the PlayStation 3's launch still a ways off, Toshiba and Sony are turning to the PC as the next battleground for the DVD format. News.com reports that some manufacturers are, at least for now, planning to offer both options on upcoming desktop and laptop PCs. Only a handful of films and software are to be available for the formats this year." From the article: "PCs equipped with HD DVD or Blu-ray will cost several hundred dollars more than comparably equipped models with DVD drives--a factor that should keep sales relatively low this year as consumers wait for applications and video titles that can take advantage of the higher capacity." -
Congress Sets Sights on Videogames
boarder8925 writes "According to CNET, Congress has set its sights on 'the purported problem of violent and sexually explicit video games.... A U.S. House of Representatives committee on consumer protection says it will hold a hearing on the topic later this month, with a focus on 'informing parents and protecting children' from the alleged dangers of those types of games.' " The article goes on to describe seven bills under consideration that either attach fines to the sales of Mature titles to children, or study "the effect of electronic media on youths." Five of them are sponsored by Democrats. -
ISPs Offer Faster Speeds, Why Don't We Get Them?
Ron Williams asks: "I'm infuriated every time I see that companies are raising their speeds when they can't maintain their current speeds. Here's my biggest issue: my grandmother signed up for the 3Mbps DSL plan through Verizon, however a speed test said she was only getting 750Kbps. Why pay for the extra bandwidth when she's not getting it? She downgraded to the 768K plan expecting to still have 750K. Wrong, instead her speed dropped to 300K. So, how about instead of companies constantly claiming to increase their speeds, they get their actual speeds correct. Comcast has done the same thing, I had their 6Mbps plan at one point, I got 2.5Mbps usually and sometimes 3Mbps, so they're all doing the same thing. In closing, with all these speed increases, why is my Internet not getting faster?" What practices and tools do you use to test your bandwidth speed and how have you approached your ISP when the performance repeatedly fell short of your expectations? One thing to note is that you'll never get the top speed advertised for any connection due to transmission overhead; even so, you should be able to get close (within about 10-20%). Also, ISPs oversell their bandwidth, so if you run your speed tests when other customers are using their connection, you will notice the performance hit. -
First StarOffice Virus Sighted
Sam Haine '95 writes "News.com is reporting on the creation of Stardust, a virus which uses macros to attack StarOffice, Sun's office suite. The malware was written as a proof-of-concept code to show what might be possible rather than as a serious attempt to create a new attack vector." From the article: "The pest is written in Star Basic. It downloads an image file with adult content from the Internet and opens that file in a new document, according to Kaspersky's posting." -
Oracle Exec Strikes Out At 'Patch' Mentality
An anonymous reader writes "C|Net has an article up discussing comments by Oracle's Chief Security Officer railing against the culture of patching that exists in the software industry." From the article: "Things are so bad in the software business that it has become 'a national security issue,' with regulation of the industry currently on the agenda, she said. 'I did an informal poll recently of chief security officers on the CSO Council, and a lot of them said they really thought the industry should be regulated,' she said, referring to the security think tank." -
Pakistan Plans Mobile WiMax Network Rollout
OneInEveryCrowd writes "Pakistan is apparently ready to move ahead of the USA in the deployment of a mobile wireless network." From the article: "The deployment is a milestone in the spread of WiMax, a superfast wireless technology that has a range of up to 30 miles and can deliver broadband at a theoretical maximum of 75 megabits per second. The 802.16-2004 standard, which is used in fixed WiMax networks, is being skipped in favor of a large-scale introduction of 802.16e, which was only recently agreed upon by the WiMax Forum. 'We made the decision 18 months ago to jump over (802.16-2004) and go straight to 802.16e,' Paul Sergeant, Motorola's marketing director for Motowi4, told ZDNet UK on Tuesday. 'We've been working on it for a while, which is how we're able to ship so soon after agreement.'" -
AT&T Accidentally Leaks NSA Suit Information
op12 writes "CNET has an article describing how AT&T accidentally leaked sensitive information involving the NSA lawsuit. From the article: 'AT&T's attorneys this week filed a 25-page legal brief striped with thick black lines that were intended to obscure portions of three pages and render them unreadable. But the obscured text nevertheless can be copied and pasted inside some PDF readers, including Preview under Apple's OS X and the xpdf utility used with X11. The deleted portions of the legal brief seek to offer benign reasons why AT&T would allegedly have a secret room at its downtown San Francisco switching center that would be designed to monitor Internet and telephone traffic. The Electronic Frontier Foundation, which filed the class action lawsuit in January, alleges that room is used by an unlawful National Security Agency surveillance program."" -
MS Proposes JPEG Alternative
automatix writes "Microsoft's new competitor to the omnipresent JPEG format has been shown at WinHEC and is discussed on CNET. The Windows Media Photo format has many promises associated with it. The program manager is claiming 'We can do it in half the size of a JPEG file.'. While 'the philosophy has been that licensing should not be a restriction', it is interesting that the specification requires a click-through agreement to even read it." -
Dan Geer's Monoculture Bomb Goes Off
Andy Updegrove writes "Three years ago, celebrated security expert Dan Geer lost his job at @stake when he co-authored a paper on the dangers that the Microsoft 'monoculture' represented for end-users. Last fall, he authored a similar warning in a Perspective piece he wrote for CNETNews.com, applauding the action of Massachusetts in adopting OpenDocument Format, thereby reducing its vulnerability to the same type of risk. Four days ago, Dan's prediction came true, when users of Word (but not those that only trade files created in StarOffice, OpenOffice, or other ODF compliant software) began to be infected with the Backdoor.Ginwui virus - a malicious Trojan program that hitches a ride on bogus Word documents. In short, an object lesson that in IT, as in biology, those that exist in diverse gene pools are at a lower risk, both individually and collectively, from those that subsist in a proprietary monoculture." -
US Government Fears China Bugs Lenovo PCs
An anonymous reader writes "After approving the sale of IBM's PC Division to the Chinese Corporation Lenovo, the US Government has realized China could bug Lenovo PCs destined for US Government customers. Would the US have done the same to China? With American businesses so eager for business in China no matter what, where are we headed?" -
New Patent Reform Proposal Focuses on Education
CNet is reporting that a new proposal before Congress is attempting to increase the number of federal judges who specialize in patent litigation. From the article: "The proposal prescribes $5 million each year in federal funding over the next decade for "educational and professional development" programs for designated judges and to pay the salaries of new, specially appointed clerks with patent expertise. Under the bill, patent cases would continue to be randomly assigned to judges, but with a notable exception. Any judge who practices within a court district offering the pilot program but who chooses not to sign up for the extra training would have the option of transferring patent cases to a program participant." Techdirt also has a short writeup on why this specialization might not necessarily be a good thing. -
Is Evolution Predictable?
An anonymous reader writes "C|Net is carrying a story about some research out of Rice University. They are exploring the possibility that we can predict the evolution of a species, given environmental factors." From the article: "Typically, the bacteria can continue to thrive when the temperature hits 73 degrees Celsius (163 degrees Fahrenheit). The experimental strain of bacteria contained a mutated version of a gene that, in the naturally occurring strain of the microbe, produces a protein that made existence possible. They then put these mutant strains in environments where the temperature rose slowly but steadily, and studied how different generations coped with the changing temperature. In the breeding that followed, millions of new mutations of the gene in question were produced, but only about 700 of those variants replicated some of the functionality of the naturally occurring gene." -
Open Source is 'Not Reliable or Dependable'
Exter-C writes "News.com is reporting that Jonathan Murray, the vice president and chief technology officer of Microsoft Europe has made claims that 'some people want to use community-based software, and they get value out of sharing with other people in the community. Other people want the reliability and the dependability that comes from a commercial software model.'" -
Dell to Use AMD Chips in its Servers
garfangle writes "Dell has decided to include AMD's Opteron processor in its product line of servers. This is the first time Dell has used AMD chips within its own Dell branded products (excluding the recently acquired Alienware computers)." From the News.com article: "The deal appears to be confined to servers at this point. The news came along with the release of Dell's earnings results, which were in line with the disappointing warning the company provided last week. Revenue was $14.2 billion, up 6 percent from last year, but net income slid 18 percent to $762 million. Several times during the last few years, Dell CEO Kevin Rollins has hinted that the company was right around the corner from introducing products based on AMD's chips." -
Microsoft Releases Vista Hardware Requirements
Digital Inspiration writes "CNet reports that Microsoft has kicked off a 'Get Ready' campaign aimed at helping customers prepare for Windows Vista. The site also includes an Upgrade Advisor tool to help people determine just how Vista-ready an existing PC is." From the article: "The marketing programs and upgrade tool are designed to ease some of the uncertainty around Vista well ahead of the back-to-school and holiday shopping seasons, the two biggest PC selling times of the year. Vista had long been expected to arrive by the 2006 holidays, but Microsoft said in March that it would not arrive on store shelves until January." -
Hardware Firms Go Against Crowd on Net Neutrality
An anonymous reader writes "Some of the largest hardware firms in the world, like Cisco and 3M, have sent a letter to U.S. policymakers asking them not to be too hasty on mandated net neutrality laws." From the News.com article: "'It is premature to attempt to enact some sort of network neutrality principles into law now,' says the letter, which was signed by 34 companies and sent to House Majority Leader Dennis Hastert and Minority Leader Nancy Pelosi. 'Legislating in the absence of real understanding of the issue risks both solving the wrong problem and hobbling the rapidly developing new technologies and business models of the Internet with rigid, potentially stultifying rules.'" -
Google Releases AJAX Framework
maquina writes "Google released a new AJAX framework based on Java. From Google's mouth: "Google Web Toolkit (GWT) is a Java software development framework that makes writing AJAX applications like Google Maps and Gmail easy for developers who don't speak browser quirks as a second language." This impressive framework promises to make AJAX available to the masses and is one more step towards Google becoming the de facto Internet platform provider." -
Skype Offering SkypeOut Service for Free
Skudd writes "In an effort to boost new customer acquisition, Skype has begun offering its 'SkypeOut' service for free. The free service is slated to last until December 31, 2006." From the article: "While the SkypeOut service will allow free calling to regular phones, the company will continue to charge people to get calls using a service it calls SkypeIn, which costs about $38 for an unlimited 12-month subscription. Consumers can get the service for three months for about $12.80." -
Chinese Scientist Admits To Stealing Chip Research
An anonymous reader writes "A prominent Chinese scientist, one of the founders of the chip manufacturing industry in the country, has admitted to stealing his research." From the article: "Chen Jin, a dean of Shanghai's prestigious Jiaotong University and the leader of a government-funded high-tech research project, was dismissed from his university posts this week and stripped of other government titles and perks. The government also said that Chen had been permanently banned from taking part in any government-funded science projects. In a statement Friday, Jiaotong University--one of the nation's elite schools--said, 'Chen Jin has breached the trust of being a scientist and educator. His behavior is despicable.'" -
FreeBSD Vows to Compete with Desktop Linux
AlanS2002 writes "FreeBSD developer Scott Long is being reported as saying that FreeBSD is quickly approaching feature parity with Linux. Apparently this is being achieved through efforts to more tightly integrate GNOME with FreeBSD, with one of the priorities being to 'GNOME's hardware abstraction layer--which handles hardware-specific code--working with FreeBSD'." -
U.S. Adds Years To Microsoft's 'Probation'
An anonymous reader writes "The U.S. Justice Department has added another two years to its agreement with Microsoft, extending the protocol licensing program that is part of the company's penance for anti-competitive activities. The organization feels Microsoft is providing documentation too slowly to its licensees." From the article: "At one time, the Justice Department and several state Attorneys General had sought a breakup of Microsoft in order to prevent it from abusing its Windows monopoly. Judge Thomas Penfield Jackson at one point ordered such a move, though his ruling was later reversed on appeal. Ultimately Microsoft settled with the Department of Justice, agreeing to far more modest restrictions, including the protocol licensing program." Relatedly, regulators have cleared Vista of anti-competitive elements. They examined the OS on concerns an added search box may have given the company a home-field advantage. -
U.S. Adds Years To Microsoft's 'Probation'
An anonymous reader writes "The U.S. Justice Department has added another two years to its agreement with Microsoft, extending the protocol licensing program that is part of the company's penance for anti-competitive activities. The organization feels Microsoft is providing documentation too slowly to its licensees." From the article: "At one time, the Justice Department and several state Attorneys General had sought a breakup of Microsoft in order to prevent it from abusing its Windows monopoly. Judge Thomas Penfield Jackson at one point ordered such a move, though his ruling was later reversed on appeal. Ultimately Microsoft settled with the Department of Justice, agreeing to far more modest restrictions, including the protocol licensing program." Relatedly, regulators have cleared Vista of anti-competitive elements. They examined the OS on concerns an added search box may have given the company a home-field advantage. -
Congress To Restrict Social Security Number Use
diverge_s writes "News.com.com has an article detailing a long overdue attempt Congress is making to restrict the use of Social Security Numbers. From the article: 'In both the House and the Senate, there are at least three pieces of pending legislation that propose different approaches to restricting the use and sale of SSNs. Politicians have expressed astonishment at what they see as a rising identity fraud problem, frequently pointing to a 2003 Federal Trade Commission survey that estimated nearly 10 million consumers are hit by such intrusions each year.'" -
Politicians Target Social Sites For Restrictions
cnet-declan writes "Politicians are looking for reasons to convince citizens to vote in November, and polls say suburban parents are worried about the internet. Wednesday top House Republicans announced a bill to make 'social' Web sites unreachable from schools and libraries. The bill is intended to go after MySpace, but the actual text of the legislation covers sites that let users 'create profiles' and have a 'forum' for conversations -- which would include Slashdot and many blog sites. House Speaker Dennis Hastert claims it's necessary to stop 'dangerous predators' out here on the Interweb." -
Mapping a Path For the 3D Web
An anonymous reader writes to mention C|Net coverage of the Metaverse Roadmap Summit, an event designed to look at the future of 3D Web environments. From the article: "While many took issue with the basic premise that an overriding 3D Web will be in place within 10 years, it was clear that most in attendance relished mixing it up as part of an august group that included Microsoft's Robert Scoble, former Sony Online Entertainment chief creative officer Raph Koster, PARC researcher Bob Moore, online game pioneer Randy Farmer, There.com founder and currently IMVU CEO Will Harvey, and CNET Networks editor at large Esther Dyson." -
Small Cable Groups Seek To Break Net Neutrality
saikou writes "CNet's News.com has a story on the first cable companies openly going against Net Neutrality. As usual, request for equal treatment is labeled as 'special favors', and Google is used as an example of company that should pay for a fast connection to the end user." From the article: "'I think what the phone industry's saying and what we're saying is we've made an investment, and I don't think the government should be coming and telling us how we can work that infrastructure, simple as that,' Commisso said during a panel discussion about issues faced by companies like his, adding, 'Why don't they go and tell the oil companies what they should charge for their damn gas?'" -
One Second Ads Hoping To Grab Your Eyes
otis wildflower writes "C|NET reports that GE will be airing a new advertising campaign called 'One Second Theatre'." From the article: "'GE One Second Theater,' as the campaign is being called, presents a humorous peek behind the scenes at recent General Electric commercials produced by BBDO. The campaign is intended specifically for new media like digital video recorders, which can be used to watch expanded versions of the spots, and News Corp.'s MySpace social-networking service, where visitors can read a mock profile of Elli, the elephant star of one of the commercials. The spots will also be accessible on MP3 players, through podcasts presented as if they were recorded by Elli and other characters from the spots, and on a microsite offering an online version of the campaign. The multimillion-dollar campaign, scheduled to begin Friday, is the most recent effort by GE to explore media beyond conventional commercials and print advertisements." -
SF Wifi More Than Flipping a Switch
An anonymous reader writes "News.com is carrying a story looking at the costly rollout of the Google/EarthLink SF Wifi project." From the article: "EarthLink said it expects the project to run to between $6 million and $8 million in initial costs, which include attaching radios and receivers to utility poles throughout the city. Within 10 years it expects the whole network, complete with upgrades and maintenance, to cost about $15 million. Finer financial details of the project haven't been made public, but the plan calls for EarthLink and Google to contribute to the initial cost of building the network. It's not clear what the split between the two companies will be. Once the network is built, Google will pay EarthLink for access to the network on a wholesale basis. In order to make access free to people in San Francisco, Google will use revenue generated from local advertisements to pay for access to the EarthLink network." -
Google Sued for Allegedly Profiting From Child Porn
skinfaxi writes "Filed in New York, Jeffrey Toback claims Google has made billions by allowing child porn and 'other obscene content' providers to use sponsored links." From the article: "The suit, which claims Google acted negligently and intentionally inflicted emotional distress on the public, requests monetary damages to be determined at trial. It also accuses Google of violating federal statutes relating to child pornography and calls for the court to order that Google cease "advertising, promoting, or distributing" child pornography through its site or otherwise providing any links to such content." -
Microsoft's IE7 Search Box Bugs Google
tessaiga writes "The New York Times reports that Google is crying foul over a new IE7 search box feature that defaults to MSN Search. Although the feature can be modified to use Google or other search engines, Google asserts that "The best way to handle the search box [...] would be to give users a choice when they first start up Internet Explorer 7." Google goes on to assert that the move "limits consumer choice and is reminiscent of the tactics that got Microsoft into antitrust trouble in the late 1990s". I notice that in my version of Firefox the search box defaults to Google, and that the pulldown menu of pre-entered options doesn't even include MSN Search, but Google seems to have been oddly quiet on that front for the many years prior to IE7 that Firefox has made this feature available." -
Congress May Consider Mandatory ISP Snooping
An anonymous reader writes to mention a News.com story covering a most disquieting trend in the House of Representatives. From the article: "Colorado Rep. Diana DeGette's proposal says that any Internet service that 'enables users to access content' must permanently retain records that would permit police to identify each user. The records could not be discarded until at least one year after the user's account was closed. It's not clear whether that requirement would be limited only to e-mail providers and Internet providers such as DSL (digital subscriber line) or cable modem services. An expansive reading of DeGette's measure would require every Web site to retain those records." -
NSA Spying Comes Under Attack
maotx writes "The NSA's no-longer-secret surveillance program came under a two-pronged attack this week on both political and legal fronts. Sen. Arlen Specter of Pennsylvania threatens to cut funding to NSA's spying program if President Bush's administration does not come clean on how it works. Separately, two hearing dates have been set for a lawsuit that seeks to prove that AT&T illegally cooperated with the NSA and violated federal wiretapping laws in doing so. Sen. Specter emphasized that he doesn't want the issue to fade into the background, saying that he'd like to see 'public concern and public indignation build up.'" -
Web 2.0 Goes To Work
An anonymous reader writes "News.com is reporting on analyst predictions that Web 2.0 has begun meeting up with enterprise software in the business world." From the article: "Buttoned-down IBM, which mainly sells to businesses, on Wednesday detailed QEDwiki, for example. The project is meant to let people assemble Web applications using wikis, really simple syndication (RSS) and simple Web scripting. Similarly, the grassroots direct-marketing techniques of the consumer world are starting to be used to tout enterprise software, analysts said. The enterprise software market, once the hotbed of innovation, is starting to catch up to the consumer Web, where people are becoming used to melding data from their desktop with services online. It's a shift that could shake up the traditional enterprise-software model, experts predicted. " -
Oklahoma Senate OKs Violent-Games Bill
CNet is reporting that the Oklahoma Senate unanimously approved a new violent-games bill on Monday that makes it a crime to sell violent video games to children under 18. From the article: "The bill passed 47-0 in the state Senate, but is being held on a motion to reconsider the vote within three legislative days before being sent back to the House to vote on Senate amendments." -
On World of Warcraft's Network Issues
alphaneutrino writes to mention a C|Net article discussing some of the recent problems the World of Warcraft playerbase has experienced. From the article: "'Being a system administrator myself, I have some understanding of what goes on in a corporate data center,' said Evgeny Krevets, a sometimes-frustrated WoW player. 'I don't know Blizzard's system setup. What I do know is that if I kept performing 'urgent maintenance' and taking the service down without warning for eight-hour periods, I would be out of a job.' Blizzard blames some of the problems--such as the disconnection, for several hours on Friday, of players linked to several servers--on AT&T, its network provider. (AT&T did not respond to a request for comment.) "