<xyzxyz@microsoft.com>: host maila.microsoft.com[131.107.3.125] said: 550 5.7.1 <Your e-mail was rejected by an anti-spam content filter on gateway (131.107.3.125).Reasons for rejection may be: obscene language, graphics, or spam-like characteristics. Removing these may let the e-mail through the filter.>...huh? I CC'ed Scoble and Mark Cliggett, too - and those messages bounced as well. If you're going to bounce a Microsoftie-initiated email, at least tell me what I did wrong so that I can fix the damned thing!!! Anyway, on to the crux of Mike Van Snellenberg's original message, and my original response (as written mere minutes ago):
I recently got back from vacation, and just saw your blog entry where you mentioned that you had some problems filing feedback on Connect. I'm the development lead for Connect, and I'd like to understand what errors you encountered so that we can get them fixed.Okay, for one - it's confusing as sin. ;) I should be able to log in and figure out what's going on in about 2.3 seconds. I have no idea what's going on, what I'm supposed to do, or where I'm supposed to go.
Also, as Mark Cliggett mentioned on his comment to you, we're currently looking at marrying some of the nice features of Ladybug with Connect and having a single system for feedback going forward. If there are particular parts of the Ladybug experience that you think we should pay attention to, let me know, and I'll make sure we consider them for our next release.Ladybug is a dream as far as usability is concerned. I know what's going on from the first moment I load this page:
5.6-inch screen and 20GB drive or no, we can think of better ways to drop about a half a thousand dollars on a digital photo viewer than Brookstone’s PictureBook. For example, Epson’s P-2000 or P-4000, which also play back movies, or a freaking iPod color, for that matter. But hey, it’s your money, we ain’t gonna tell you how to (not to) blow it. We just request for future product naming schemes Brookstone not knockoff HP biting the Village Green Preservation Society, mkay?
[Thanks, Joe]
Read | Permalink | Email this | Linking Blogs | Comments
© 2005 Weblogs, Inc.
SPONSORED BY: Fable: The Lost Chapters. Now On PC. Enter a world where every choice changes your fate. Enhanced graphics, new journeys, good or evil-how will you choose to play?
The Sono Digital Media Player is one of those devices that sounds great but which, we suspect, doesn’t quite live up to its potential. The Sono (not to be confused with Sonos) is a $149 “universal tuner” that looks like a table radio and combines a built-in FM receiver with a wireless connection to your PC for playback of audio files and access to Internet radio. Sounds a lot like the Roku SoundBridge Radio, but for less than half the price. Unfortunately, it doesn’t use WiFi; instead, it uses its own RF scheme, powered by a USB dongle that you connect to your PC. According to the specs, it also looks like it only supports MP3-formatted music files, which means you can forget about streaming any DRM’d music you’ve purchased online, along with CDs you’ve ripped in other formats.
[Thanks, kinaja]
Read | Permalink | Email this | Linking Blogs | Comments
© 2005 Weblogs, Inc.
SPONSORED BY: Fable: The Lost Chapters. Now On PC. Enter a world where every choice changes your fate. Enhanced graphics, new journeys, good or evil-how will you choose to play?
It’s just a prototype, and since it’s being displayed under glass it could be made of cardboard for all we know, but Panasonic is showing off a prototype laptop with a built-in Blu-ray drive at the Ceatac Japan 2005 trade show. The drive is a multi-function DVD/Blu-ray recorder, with the ability to record and play Blu-ray discs as well as recordable DVDs. Sony is also displaying Blu-ray recorders as part of a Vaio-R entertainment system that contains a separate DVD-R drive. Of course, Toshiba is also displaying prototype HD-DVD-equipped laptops, despite announcing that no real units will be out anytime soon, so who knows what’s really going to show up in stores when.
[Thanks, Alexei]
Read | Permalink | Email this | Linking Blogs | Comments
© 2005 Weblogs, Inc.
SPONSORED BY: Fable: The Lost Chapters. Now On PC. Enter a world where every choice changes your fate. Enhanced graphics, new journeys, good or evil-how will you choose to play?
This might actually be illegal in some places, and we don’t expect to see it in the U.S. any time soon (so what else is new?), but that doesn’t mean we don’t like Toyota’s AS Limited Dual AVN Special, an angled dual-display (no, not that dual screen, more like that other dual screen) GPS system being offered to buyers of the company’s Alphard minivan in Japan. The system displays GPS data on the driver’s side, while the passenger can veg out to videos. And, no, the pic doesn’t have it backwards. It’s Japan, remember? They drive Brit-style over there.
Read | Permalink | Email this | Linking Blogs | Comments
© 2005 Weblogs, Inc.
SPONSORED BY: Fable: The Lost Chapters. Now On PC. Enter a world where every choice changes your fate. Enhanced graphics, new journeys, good or evil-how will you choose to play?
And no, I don't mean the colloquialism describing revenge. I'm talking about Payback, the every-so-ironically named internal accounting system now making its fourth appearance (see 1, 2, and 3) on this site. One area of the application we haven't yet covered is the UI experience. And it certainly is an experience.
First, a quick look at the design view of a fairly typical Payback form ...
Doesn't seem too bad; just a few text boxes, a list box, and a timer that fires an event off every three seconds. And heck, even a quick glance looking at the timer event code doesn't seem too bad, either ...
Private Sub ControlTimer_Timer() Dim TextEntered As Boolean Dim SelectedItem As Boolean Dim Index As Integer Index = tspCourseInfo.SelectedItem.Index 'This sub determines when to enable the controls SelectedItem = False TextEntered = False Select Case Index Case 1 If (lstCourseTypes.ListIndex > 0) And _ (lstCourseTypes.Enabled = True And _ Len(Trim(txtCourseType.Text)) > 0) Then SelectedItem = True End If If Len(Trim(txtCourseType.Text)) > 0 And _ Len(Trim(txtCourseTypeName.Text)) > 0 Then TextEntered = True End If Case 2 If (lstCourses.ListIndex > 0) And _ (lstCourses.Enabled = True And _ Len(Trim(txtAbbreviation.Text)) > 0) Then SelectedItem = True End If If Len(Trim(txtCourseName.Text)) > 0 And _ Len(Trim(txtAbbreviation.Text)) > 0 And _ Len(Trim(txtMat.Text)) > 0 And _ Len(Trim(txtCert.Text)) And _ Len(Trim(txtCreditHours.Text)) > 0 And _ Len(Trim(txtMaxSize.Text)) > 0 And _ Len(Trim(txtMinSize.Text)) > 0 Then TextEntered = True End If Case 3 If blnChangeMade Then TextEntered = True Case 4 If blnPartChangeMade Then TextEntered = True End Select cmdDelete.Enabled = SelectedItem cmdUpdate.Enabled = SelectedItem And TextEntered cmdSave.Enabled = TextEntered cmdCancel.Enabled = SelectedItem Or TextEntered End Sub
That is, until you realize the "experience" this gives the users. Instead of behaving like a normal application and responding to UI events (change list item, change text, etc), Payback requires users to wait around for the timer event to fire and change the enabled/disabled and visible/invisible state of other controls.
All of us cope with loss in our own personal ways. I know it can be tough to think about, but have you ever thought about how you would deal with the loss of something near and dear? Something that you have grown to love and cherish? Something that has helped you maintain strong cohesion and enforce data integrity throughout your applications?
But it could happen. No, really, it could; some languages don't support enumerations. And you need to be prepared to program in one of those languages. In your time of grieving, you don't want to go and program something like this ...
define datastruct TPSReport as ( Report_Number as fixedstring[7], Project_Number as fixedstring[5], Status__0_new_1_open_2_closed as int % ED: Snip ... )
(Note: The submitter requested that not only the submission be anonymized, but the original programming language as well, since it was a rather obscure platform)
It can be a pretty frightening prospect to take the helms, full time, as the Sole Maintainer of a system. Being all alone in the system ... it can ... it can make programmers do things .... terrible things ... unspeakable things. Let's hope J Rojas doesn't succumb to the same fate as his predecessor, who proudly concocted this twisted tally system for indices of object arrays throughout the system ...
void RstPccoLv(int curIdx) { if (sysobjs[curIdx * (0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1) + (0 + 1 + 1)] == 0x0000004e - 0x00000032) { if (sysobjs[curIdx * (0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1) + (0 + 1)] > -1) { sysobjs[curIdx * (0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1) + (0)] = 0; if (sysobjs[ sysobjs[ curIdx * (0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1) + (0 + 1) ] * (0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1) + (0 + 1 + 1 + 1 + 1 + 1) ] < 0) { sysobjs[ sysobjs[ curIdx * (0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1) + (0 + 1) ] * (0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1) + (0 + 1 + 1 + 1 + 1 + 1) ] += (4); } if (sysobjs[ sysobjs[ curIdx * (0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1) + (0 + 1) ] * (0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1) + (0 + 1 + 1) ] == 0x0000004a - 0x00000032) { sysobjs[ sysobjs[ curIdx * (0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1) + (0 + 1) ] * (0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1) + (0) ] = 0; XPos2 = sysobjs[curIdx * (0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1) + (0 + 1)]; if ((XPos2 + 1) < nbObj) { while (sysobjs[(XPos2 + 1) * (0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1) + (0 + 1 + 1)] == 0x0000004a - 0x00000032) { sysobjs[(XPos2 + 1) * (0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1) + (0)] = 0; XPos2++; } } } if (sysobjs[ sysobjs[ curIdx * (0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1) + (0 + 1) ] * (0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1) + (0 + 1 + 1) ] == 0x0000004d - 0x00000032) { if ((sysobjs[curIdx * (0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1) + (0 + 1 + 1 + 1)] & (1 << 4)) == 0) { sysobjs[curIdx * (0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1) + (0)] = 0; } else { sysobjs[curIdx * (0 + 1 + 1 + 1 + 1 + 1 + 1 + 1 + 1) + (0)] = 1; } } } } } //ED: Indenting added
Budapest, Hungary — Gizmodo, the gadgets weblog and wholly owned subsidiary of Gawker Media Inc., today announced its support for some kind of better looking, higher capacity, more expensive DVD format. The writers and editors of the weblog will purchase high definition DVDs, and the overly-priced components that will be required to play them, as soon as the industry figures out which format it plans to back.
"Gizmodo is a big proponent of new formats," said executive director of standards creation and content leveraging Tobey Grumet. "We backed machine language punch cards, Betamax and MiniDisc, and now we look forward to backing DVD in some format as well."
Gizmodo joins the likes of Microsoft, Paramount, Intel, Toshiba, Matsushita and Sony in supporting some form of next generation DVD. The weblog is a participating member in the debate over which standard to choose, and anticipates continuing anguish over having to write several dozen more entries about the issue.
"As a big fan of the color blu, I was an early supporter of Blu-Ray technology," said Gizmodo's senior vice president of logistics Vince Veneziani. "But then I heard that HD DVDs would have a 0.65 numerical aperture and I was like, whoa! Then I found out there would be more porn on Blu-Ray and I kind of went back to Blu-Ray then I found out Paramount is releasing stuff on both formats and I was all 'Hold the phone.' Then I downloaded a pirated AVI of Madagascar and chilled. Chris Rock is so funny."
About DVDs
DVDs are these disks that you get from Netflix like four times a week and you never can watch them so they pile up and you're looking at these movies and you're wondering "At what point did I want to watch 40 hours of The Office? I mean it was a good show, but what? Was I drunk? I have to stop drunk-Netflixing." High definition DVDs will have like better pictures and maybe be digital.
About Gizmodo.com
Gizmodo.com is like that guy who shows off his new phone at the office and says that it can take 1.3-megapixel pictures and a bunch of other shit that you definitely don't care about until he takes your picture and emails it to you with a funny hat pasted on it and you get a little pissed when everyone starts passing it around the office and now you not only find him annoying AND you think he's a major prick.
I’m proud to announce Sivitols, a Java microformat API. Sivitols’ microformat support is limited to xFolk for now, but we hope to expand its functionality in the future to include other microformats.
I wrote Sivitols to support Video Vertigo’s tag sharing project, which is designed to enable the real- or near-real-time sharing of tags between member services. We’re releasing it under the Lesser General Public License.
Part of our tag sharing implementation is a central server we call “Mirror Play,” which is written in Java. I’m writing Mirror Play, and I couldn’t find any Java support for the xFolk microformat, which is an integral part of our tag sharing system.
The Video Vertigo project is “brainstorming the future of video syndication.” We co-founded the group with folks from FireANT, Mefeedia, Vlogdir and videoblogging.info to foster cooperation and data sharing between videoblogging services.
Andreas Haugstrup Pedersen of videoblogging.info is working on a PHP xFolk implementation.
Speaking to Forbes magazine, Activision CEO Bobby Kotick has reaffirmed his position on pricing next-generation console games at $60 – a 20% increase over the current generation. According to Kotick:
“We’ve said we’re to going sell those products at higher price points until … the market forces us to sell them at lower price points, which we don’t think is likely. We don’t really think that there’s a lot of price sensitivity on the part of the consumer, if you’re delivering value.”
Of course, the problem therein is with making sure the next-generation games are all worth $60, and Activision’s
lineup of Tony Hawk, Call of Duty, and Quake sequels, may or may not have that
added value over their predecessors.
[Thanks, bandersnatch]
Read | Permalink | Email this | Linking Blogs | Comments
© 2005 Weblogs, Inc.
SPONSORED BY: Fable: The Lost Chapters. Now On PC. Enter a world where every choice changes your fate. Enhanced graphics, new journeys, good or evil-how will you choose to play?
About 3 hours ago, Bungie addressed the Halo 3
script leak rumors that have been circulating the
Internet, and the answer is, not surprisingly, that the script “is either fake, or the fanfic of a dedicated Halo fan
being passed off as real…it has nothing to do with Bungie or Joseph Staten.”
So that settles it, the Halo 3 script is as fake as the pictured box art. The script, although very long, was not as
well written as Bungie or Joseph Staten’s previous work. And, just to clarify, the script is definitely not for the
Halo movie either, as Halo scribe Alex Garland has more than
proven himself as a good screenwriter.
[via Halo.Bungie.org. Thanks,
bandersnatch]
Read | Permalink | Email this | Linking Blogs | Comments
© 2005 Weblogs, Inc.
SPONSORED BY: Fable: The Lost Chapters. Now On PC. Enter a world where every choice changes your fate. Enhanced graphics, new journeys, good or evil-how will you choose to play?
Online news site The Inquirer did some
digging through Amazon.com’s UK site and has found a
listing
for Duke Nukem Forever that lets you pre-order the game (for £24.99) or buy it with Quake 4 for a
discount, and gives a release date of December 2, 2005.
Don’t get your hopes up, though, this is probably just Amazon UK being greedy – the game is not listed on
GameStop,
EBgames, or even Amazon.com’s US
site. 3D Realms, the company that has been working on Duke Nukem Forever since 1997, has repeatedly
stated that it’ll be done “when it’s ready” and that “once we
begin taking pre-orders, believe us, you’ll know about it.” Our advice is to ignore the order page entirely, and do not
give it a second thought unless we start seeing some screenshots of the game in the coming months.
[Thanks, bandersnatch]
Read | Permalink | Email this | Linking Blogs | Comments
© 2005 Weblogs, Inc.
SPONSORED BY: Fable: The Lost Chapters. Now On PC. Enter a world where every choice changes your fate. Enhanced graphics, new journeys, good or evil-how will you choose to play?
Atari has confirmed that an Alone in the Dark installment is in development for Xbox 360—also rumored to be in the works for PlayStation 3. While few details have been revealed, the selection of screens that has been released certainly grabs our attention (but are they in-game?). Alone in the Dark 360 (working title) is said to feature highly detailed, free-roaming, fully interactive environments. Will Eden’s game be the next-gen survival horror title to beat?
[Thanks, JamesO]
Read | Permalink | Email this | Linking Blogs | Comments
© 2005 Weblogs, Inc.
SPONSORED BY: Fable: The Lost Chapters. Now On PC. Enter a world where every choice changes your fate. Enhanced graphics, new journeys, good or evil-how will you choose to play?
Time to dust of your N64 and do battle against a miniature Arwing as Link in the classic Zelda masterpiece, Ocarina of Time. Apparently, there’s a Gameshark code that let’s you change one of the characters in Kokiri village into any object in the game. Guess what? There’s an arwing hidden in the code. The little bugger even shoots laser beams. En garde!
[Thanks, dusda]
Read | Permalink | Email this | Linking Blogs | Comments
© 2005 Weblogs, Inc.
SPONSORED BY: Fable: The Lost Chapters. Now On PC. Enter a world where every choice changes your fate. Enhanced graphics, new journeys, good or evil-how will you choose to play?
The Associated Press
July 7, 1981, Tuesday, AM cycleAsked about Mrs. O'Connor's position on the extremely sensitive abortion issue, Reagan, who said he had interviewed the intended nominee, told reporters as he left the press room: "I am completely satisfied."
At her press conference, Mrs. O'Connor declined questions over that issue, the ERA and others, saying "I'm sorry. I cannot address myself to substantive issues pending my confirmation."
But deputy White House press secretary Larry Speakes said she had told the president "she is personally opposed to abortion and that it was especially abhorent to her. She also feels the subject of the regulation of abortion is a legitimate subject for the legislative area."
---------
United Press International
July 8, 1981, Wednesday, AM cycle
Television evangelist James Robison, taking the opposite position of many of his conservative colleagues, Wednesday said he supports the nomination of Sandra O'Connor to the Supreme Court.
In a statement, Robison said he based his support for Mrs. O'Connor on a conversation Tuesday with presidential counselor Edwin Meese. A Robison spokesman said Robison obtained the following statement from Meese:
''Sandra O'Connor thinks abortion is abhorrent and is not in favor of it. She agrees with the president on abortion. There was a time when she was sympathetic toward the ERA (Equal Rights Amendment) movement, but the more she studied and found out about it the more she changed her mind.
''She is very conservative ... Sandra O'Connor assured the president that she was in agreement with him and she totally supports pro-family issues and the Republican platform.''
Just goes to show, you never know what you'll get in a justice once political pressures are off the table. O'Connor turned into one of the most reliable votes for Choice on the court.
(And further proof that you can personally find abortion abhorrent, and still support a woman's right to choose.)
I need to know a lot more about her, her experience and her level of competence and what is her philosophy. I really don't know this lady and I do think I owe it to my constituents and to my own conscience to do due diligence and find out actually who this person is," he said. His first impression, however, was not a positive one. "I don't just automatically salute or take a deep bow anytime a nominee is sent up," he said. "I have to find out who these people are, and right now, I'm not satisfied with what I know. I'm not comfortable with the nomination, so we'll just have to work through the process in due time."
Lott wants answers too. So do I. So should every Senator, Democrat and Republican. And for every nominee. Not just Miers. Not just Roberts. Every nominee, Democratic or Republican.
Let's end this era of stealth nominees. Let the Senate do its Constitutional duty of advice and consent by providing the information it must have. No more stonewalls.
Jack Carter, the son of former President Carter, said Tuesday he plans to run against John Ensign for the U.S. Senate next year.
Carter, 58, and his wife, Elizabeth, have lived in Las Vegas since 2003, operating the investment consulting firm Carter Global.
"I'm very seriously exploring it," Carter said in an interview Tuesday. "I had not planned to run for office. I have no infrastructure and this is new to me."
Carter said he decided to run in the aftermath of Hurricane Katrina. He said he was offended by the federal government's response to the disaster.
"I'm more concerned than ever with the way that the country is headed," Carter said.
Reid has promised to aggressively support and campaign for whoever rose against Ensign. He'll have a chance to shatter rumors of a truce with Ensign.
Basically, when the Singularity comes, humanity will merge with self-aware computers to become god-like. Normal humans will find themselves obsolete.
>
I'm not worried for a couple of reasons.
>
First, Kurzweil is predicting based on current trends. One of these is Moore's Law which says that the complexity of computer chips doubles every 18 months. Kurzweil uses this to predict how complex computers will be in 40 years.
>
The thing is, Moore's Law is actually Moore's Observation. Moore, a top engineer at HP at the time, observed in the 1970s how fast compuer complexity increased. This became self-fulfilling when the marketing people at Intel got ahold of it. Currenty Intel executives are convinced that their stock will drop precipitously if they fall behind Moore's Law so they throw enourmous resources at maintaining this rate. This means that rather than being a hard and fast law, it is a marketing concept.
>
Eventually Moore's Law will run into physics. To see what I mean, look at flight.
>
The Wright Brothers first flew in 1903. Their flight was nothing more than an extended hop. They realized this and kept it secret for nearly two years. By 1905 they had an airplane that could stay in the air for a half hour (until it ran out of fuel) and was fully controlable. It could fly at speeds of nearly 40 miles an hour.
>
Fifteen years later planes could fly reach speeds of over 100 miles per hour. By WWII jets were invented and the speed of sound was broken in 1947. The SR71 Blackhawk first flew in 1964. It could fly at mach 3.3 (three times the speed of sound).
>
So we went from 40 mph to 2,175 mph in sixty years. If we extropolate from there then we should have planes that can fly 10,000 mph or faster but the SR71 continues to be the fastest plane built. Flight ran into the laws of physics. Friction is a real problem at these speeds, both as drag and as heat.
>
This is happening with computers. Computer complexity is increased by making finer etching in silicon but we are approaching the limits. You cannot etch smaller than an atom.
>
Speed is another issue. Clock speeds keep increasing but there are limits here, also. We already hit the limits of memory. While engineers put more memory on a chip they have not made it ru any faster in some time. There are tricks for getting around thisbut they are tricks and they have their own limits.
>
So the idea of Moore's Law continuing for the next 40 years is unlikely.
>
The next problem with Kurzweil's predictions is self-aware computers. He assues that once computers are powerful enough they will be self-aware.There is no reason to think this. We think in ways that are very different from the way computers work. While scientists are researching exactly how we think, we do not know when this will be solved or how computers will need to be changed to simulate thought.
>
Kurzweil makes a lot of other predeictions dealing with genetics ond other sciences but I doubt that he is any closer with them.
From The Truth According to Mark (feed)
See also links to this feed and more from this feed
From John Quiggin (feed)
See also links to this feed and more from this feed
From EntropyMobius (feed)
See also links to this feed and more from this feed
I understand you have to set a good example…and of course it can’t be easy being in a profession where your patrons automatically hate you, but please stop whistling while you suck spit from my mouth and casually wipe blood on that bib from you POKING AROUND MY TEETH!
>
Yes, yes, I know I should floss more. I can never admit to my dentist that my problem is simply that I am uber lazy. That’s it. You’d think after enduring six years in braces, three of which with a HEAD GEAR and several more years with a retainer I lost every three months and then getting a cavity at 26 with NO DENTAL PLAN and shelling out $300 to fix it …I’d learn about good oral hygiene. Nope. Bring on the scraper, that’s what my insurance company is paying you for!
>
The good thing is that they send me home with a goodie bag. I’m not joking. I got Listerine, TWO tooth brushes, several flavors of toothpaste and, of course, dental floss.
>
Since when do they make tropical fruit tooth paste? It's like candy!
From Greetings from the home office (feed)
See also links to this feed and more from this feed
From Toronto, IA - Topix.net (feed)
See also links to this feed and more from this feed
The emotion usually comes so fast I don't really have the time to think which feeling should manifest in my heart at that very moment. And you can't tell another person, "No, you should not feel this way, it's not right." I think that's such a superficial remark.
When I was studying in Uni, the psychology of feeling is very much attached to what we think about something (cognitive).
From People Still Matter (feed)
See also links to this feed and more from this feed
From All jobs in Virginia | Indeed.com (feed)
See also links to this feed and more from this feed