Microsoft takes a note from Palm in new Windows Phone 7 Series ad

We’ve held no punches in sharing our thoughts on Palm’s recent ad campaigns, but the one spot that was actually not heinous has seemingly served as the basis for one of Microsoft’s first-ever WP7S commercials. Debuting here at the tail-end of MIX, the ad spotlights Anna — a fictitious gal we’ve certainly heard of before — using her new smartphone to share photos with her dear lover Miles. It also features Luca, a kid with an undying love for playing Xbox LIVE titles, who seems to be caught somewhere in between the world of nature and nurture. At any rate, it’s worth your while to give the new Microsoft commercial and the Palm ad which it has oh-so-much in common with right after the break.

Oh, and Palm — we guess “Windows Phone 7 Series was your idea,” right?

Update: Yes, that definitely looks like an HTC HD2 at the 0:43 mark, but you can rest assured WP7S won’t ever come to that gem in native fashion.

[Thanks, Sean]

Continue reading Microsoft takes a note from Palm in new Windows Phone 7 Series ad

Microsoft takes a note from Palm in new Windows Phone 7 Series ad originally appeared on Engadget on Thu, 18 Mar 2010 11:36:00 EST. Please see our terms for use of feeds.

Permalink Everything Pre  |  sourceYouTube [Microsoft], [Palm]  | Email this | Comments

Android-powered Roewe 350 motorcar hits production line, we reserve space in our garage

We aren’t exactly hopeful that the Roewe 350 will ever ship stateside, but given that our Volt pre-order is still in limbo (and we’re not about to lease a Tesla Roadster), we can’t help but look longingly at this gem. Hailed as the first Android-powered automobile, this here car has just hit the production line, and it’s expected to make its formal debut next month at the Beijing Auto Show. The 350 was based on the N1 concept shown last year, and we’re told that the integrated DVD / GPS navigation system will run on Google’s Android (v2.1) operating system. As you’d expect, the system will be able to pull down real-time traffic reports and figure out the most effective route from point A to point B C, though we suspect you’ll need to rig up some sort of WWAN card in order to check your Gmail on the go. Oh, and did we mention this thing will start at just over ten grand? Huzzah!

[Thanks, Ash]

Android-powered Roewe 350 motorcar hits production line, we reserve space in our garage originally appeared on Engadget on Thu, 18 Mar 2010 10:52:00 EST. Please see our terms for use of feeds.

Permalink   |  sourceChina Car Times  | Email this | Comments

First Look: Kindle for Mac

kindleformac

Amazon has at last released Kindle for Mac, which means you can now read your Kindle books on most any device. It joins the iPhone, PC Blackberry and, of course, the Kindle itself.

Like the PC version, Kindle for Mac is a bare-bones reader. You turn pages with either the scroll-wheel of your mouse or the arrow keys, and it stays in sync with any other device authorized for the same account. You can view notes and bookmarks made on other devices, but you can’t create new ones (a limitation shared with the PC version).

It’s pretty bad. If you want to zoom the text, for example, the standard Mac shortcuts are Cmd + and Cmd -. They don’t work. Instead you have to open a special panel, which can leave a blank “cut-out” in the text after it has been closed.

It is a beta, but you only know that if you open up the “about” box. We guess it’s nice to have a way to read on a computer, and even better to have a local archive of your books, but I can’t help feeling that a company the size of Amazon could do better than this. Especially as it bought the quite excellent Stanza almost a year ago, which has a great Mac app, along with the iPhone version.

Amazon might be happy selling books, and not care about the devices they are read on. But if you carry on like this, Amazon, people will be pushed to buy their readers, and books, elsewhere.

Kindle for Mac [Amazon]

Press release [Business Wire]

See Also:


CyberNotes: Gmail Google Calendar In Opera Without Masking

This article was written on November 29, 2006 by CyberNet.

CyberNotes
Web Browser Wednesday

Google/Opera A few weeks ago I made a post about Google services that don’t work properly in Opera. I was happy, yet surprised, to see that Opera Watch had linked to the article in a post that they made which sparked me to do some searching around to see what Google problems I might be able to make Opera-compatible. I am far from being a JavaScript programmer so my main goal was simply to get around the browser compatibility checks.

One of the main things that most Opera users always try when a site doesn’t work properly is to mask the site. By doing that it will force the Opera to identify itself as another browser, like Internet Explorer or Mozilla. It isn’t always the most effective thing but it works fine a majority of the time.

Over the summer I wrote a quick article that showed how you could use masking to get Google Talk to display in Gmail. It wasn’t anything extravagant but it got the job done. There is actually a way that you can prevent Gmail from trying to identify which browser you are using. All you have to do is visit http://mail.google.com/gmail?nocheckbrowser and Opera users will get all of the features that you would have in Firefox and Internet Explorer. There might be some incompatibilities but from what I can tell the Google Talk almost works perfectly in Gmail when using Opera. Just change your bookmark to use that URL and you’ll be all set.

Okay, that wasn’t anything too special because it is just a URL. Unfortunately Google didn’t put that in every service that they offer so to get around the prompt in Google Calendar it took a little more work. What’s the end result? Google Calendar will load completely without ever displaying the annoying prompt that Opera users have suffered with for a long time:

Google Calendar Compatibility For Opera

It is time to stop that popup using a bit of our own JavaScript that I whipped up. It took me a few hours to write this up…okay okay, it really only took a few seconds after I looked at the Google Calendar source code but a little exaggeration never hurt anyone. :)

Here are the steps you need to take to eliminate the prompt in Google Calendar:

  1. Find a folder that you can place a JavaScript file in and try to make it a place that won’t get deleted, otherwise you’ll have to do this again. Also, you should try to make sure that there aren’t any unintentional JavaScript files located in that folder otherwise Opera may get confused. By that I mean that there shouldn’t be any other files in that directory with the extension .js and have nothing to do with your Opera installation.
  2. Right-click on this JavaScript file and save it to that directory from Step 1.
  3. Go to Tools > Preferences > Advanced > Content > JavaScript options and into the User JavaScript files box enter in or browse for the directory from Step 1.
  4. That’s it, pull up the Google Calendar homepage and the prompt will be suppressed.

There is really only one line of code in the file that does anything. Basically it stops all JavaScript confirmation windows from appearing on the Google Calendar site only, which is essentially the same as pressing the Cancel button. What about deleting an event from the calendar then? That isn’t a JavaScript confirmation prompt so it will be displayed just like it is in other browsers.

So far I have been able to confirm that everything works in Google Calendar except for the Settings screen. For some reason I can’t adjust any of the settings in Opera but as long as you get everything configured in another browser you can switch to Opera and it should all work okay. This is somehow a result of using my script but I don’t see how blocking confirmation dialogs affects this. Everything appears to render okay on the main screen though:

Google Calendar in Opera

These surely aren’t a solution to the compatibility problems but they are a workaround that should please most people. The best part about both of these tweaks is that they don’t involve any sort of masking so websites are not going to throw any IE or Mozilla specific code at Opera that it can’t handle. Of course using Google Calendar in Opera via masking wasn’t really an option because it would render terribly. I do hope to see more of Google’s services becoming Opera-compatible in the future so that these fixes won’t even be necessary.

P.S. If someone knows how to block the specific dialog box using the JavaScript please let me know and I will update the code on this site. Thanks! :D

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


iPhone Alarm Dock Combines Hardware And Software

bedside-small
A new iPhone dock and speaker from iLuv offers an unusual twist. A literal twist, even. It turns the iPhone 90-degrees and holds it, charging, in landscape orientation. By day, this isn’t so useful, but by night, it means that the screen can display a big clock so you can know the exact times you wake up cold and sweating from your many fevered nightmares.

The hardware is called the iMM190 App Station and it pairs with a free iPhone application called iLuv App Clock. They collaborate to lull you to sleep at night with your own music library, wake you in the morning with your choice of sounds and all the while tell you the time and weather (so you can decide whether it is worth getting out of bed). The iMM190 can be used upright or horizontally and powered from either the mains or from six AA batteries.

Unless you are the couple in the picture above, who sleep with the lights on, then you may not use the actual clock at night. I have tried a bunch of alarm apps and, while they work to wake me with mellow music, the glow of the screen is too bright. Even with a blank black screen image and the backlight turned all the way down, enough photons escape the screen to illuminate the room slightly. This isn’t a criticism of the iLuv app, just a note on iPhones in general (and on my hypersensitivity to the light creeping into my hermetically sealed bedroom).

We do like this trend of marrying hardware and software, though, especially as the apps (including this one) often come free, a kind of software promo. The speaker will cost you actual dollars, though: Ninety of them.

iMM190 [iLuv. Thanks, Jennifer!]

iLuv App Clock [iTunes]


Samsung Galaxy Spica grows up to Android 2.1

Also known as the Galaxy Portal in the UK, Samsung’s i5700 is today officially entering the Eclair portion of its Android existence. We got a nice leak of the 2.1 ROM in February, whose small glitches will no doubt have been ironed out in this official release. You’ll need to either hook up to the Samsung neural network using their proprietary PC Studio 7 software to leech the upgrade or just buy a new handset — it all depends on the ratio between your disposable time and income. Guess this will make the Spica that little bit more seductive to Rogers customers, who only just got the option to own the handset last week. Full PR after the break.

Continue reading Samsung Galaxy Spica grows up to Android 2.1

Samsung Galaxy Spica grows up to Android 2.1 originally appeared on Engadget on Wed, 17 Mar 2010 04:09:00 EST. Please see our terms for use of feeds.

Permalink   |   | Email this | Comments

CyberNotes: Override Modify Keyboard Shortcuts on a Mac

This article was written on June 26, 2008 by CyberNet.

CyberNotes
Tutorial Thursday

arrow Mac Mac only arrow
For me using a computer without keyboard shortcuts would be like trying to cut the grass with a pair of scissors. Sure it could be done, but it would take a lot longer to accomplish a task that should take no time at all. One thing that I’ve come to notice is that keyboard shortcuts seem even more important on a Mac than on a Windows machine.

What’s nice is that Apple has not only made it simple to edit many of the built-in keyboard shortcuts, but they also let you create your own keyboard shortcuts. Of course many of the application-specific shortcuts are terribly difficult to remember because the system-wide shortcuts have all of the easy key combinations. Since you’re able to create your own keyboard shortcuts, however, you might be able to get around that.

mac keyboard shortcuts-1.png

The first thing you’ll want to do is browse through all of the universal shortcuts that Apple has already created for the operating system, and then disable/change the ones you don’t think you’ll ever use. That way we can try to free up some of the easy to remember shortcuts for our own use later on.

  1. Open the System Preferences -> Keyboard & Mouse. Then choose the Keyboard Shortcuts tab.
  2. You can double-click on any of the shortcuts listed to change the key combination used, or uncheck the box next to a shortcut to completely disable it. You can always return to the factory settings by clicking the Restore Defaults button in the lower-right corner.

Now we’ll get to the good stuff! What we want to do now is create our own keyboard shortcut(s) that can execute any menu item from within one or all applications. For example, using this method we could override the “New Tab” shortcut in Safari to be Command+N instead of Command+T. Here’s how you can do that:

  1. Open the System Preferences -> Keyboard & Mouse. Then choose the Keyboard Shortcuts tab.
  2. Click the plus sign located in the lower-left corner to add a new shortcut.
    mac add keyboard shortcut.jpg
  3. From the popup choose an application from the list, or leave the All Applications option selected if you want the shortcut available throughout the entire operating system. Remember though, the shortcut will only work if there is a corresponding menu item available.
    Example: Choose Safari from the list of applications.
  4. In the Menu Title box you’ll need to enter the menu item exactly how it appears in the menu.
    Example: Type New Tab into the box.
  5. Assign a shortcut by pressing the corresponding keys on your keyboard.
    Example: We’ll use the Command+N shortcut, which will remove that shortcut from the “New Window” option in Safari.
    mac create keyboard shortcut.jpg
  6. Press the Add button to complete the process.

What’s the end result? In our example we set out to replace the new tab shortcut in Safari with the shortcut that is normally used to open a new window. If you followed the steps outlined above it should have worked, and you can easily tell whether it worked by opening up the File Menu in Safari:

safari keyboard shortcut.jpg

Did you notice how the “New Tab” shortcut is now assigned Command+N, while the “New Window” shortcut has been removed all together? That’s a good sign that the new shortcut should be working.

Now you know everything that’s needed to modify, create, and override keyboard shortcuts on Mac OS X. Don’t forget that you can also create shortcuts for items in the Apple Menu, which includes the ability to sleep, restart, and shutdown the computer. ;)

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


CyberNotes: Add the Date To Mac Menubar Clock

This article was written on May 22, 2008 by CyberNet.

CyberNotes
Tutorial Thursday

arrow Mac Mac only arrow
When on a Windows computer one of the things I always did was make the Taskbar twice the normal height. The reason I did that was because it would then show the date in addition to the time, which is something I use quite regularly. Sure I could have hovered my mouse over the time to see the same information, but that often took more time than was necessary.

So naturally when I got my Mac I was surprised to see that I couldn’t do something similar with the Menubar. There is a checkbox in the time configuration options so that you can add/remove the day of the week, but there’s no setting to add the current date. Being the geek that I am I begun a quest for someway that I could get this, and as it turns out there’s a rather simple solution. The best part is that it requires no additional software! Here’s what my end result looks like:

mac menubar clock.png

Notice how the Menubar shows the date without needing to be clicked? Cool, huh? Here’s how you can add the date to the Mac Menubar clock:

  1. Go to System Preferences -> International -> Formats, and click the Customize button listed in the Dates section.
    mac international.png
  2. Now you’ll want to build the format of the date that you want shown next to the time. To change between the different different date formats use the arrow located next to each element, or drag and drop elements from the lower section to add more of them:
    date builder.png
  3. Now you need to copy and paste the elements by highlighting everything in the contents of the box, and then pressing Command+C to copy it. Once you have the elements copied press CANCEL:
    copy date format.png
  4. Now click the Customize button located next to the Times section in the International settings. Make sure you switch the Show option to Medium, and then paste in the formatting where you would like it to appear. Remember, you can add spaces, punctuation (hypens, slashes, semicolons, brackets, etc…) by simply typing them in where the should appear. After you are done formatting press OK.
    custom date time mac menubar.png
  5. You should now see the date in the Menubar located alongside the time (no restart is required). If you don’t, you may need to change the Show option in Step 4 to Long and paste in the formatting elements from Step 3 again. One of those two styles should work for you. When all is said and done you should see something like this:
    mac menubar clock.png
  6. Note: By changing the time format you might noticed that the day of the week is automatically shown in the Menubar. If you don’t want this just go to System Preferences -> Date & Time -> Clock, and uncheck the Show the day of the week option.

I do want to point out that there could be some adverse affects from manipulating the Menubar clock in this fashion, such as an application showing the date and time where it would only show the time before. That will only happen, however, if the application uses the Medium time format that you altered in Step 4. I’ve found that most programs, such as iChat, use the Short format when doing things like timestamps though so they really aren’t affected.

This might not be as simple as checking a box, but I was actually surprised that I didn’t have to go diving into a system file to adjust the setting. It’s not optimal, but it definitely works. This is a must-have tweak in my book!

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts:


Internet Explorer 9: A Fresh Start, With HTML5 [Internet Explorer]

Ninth time’s the charm, sometimes! At least that’s Microsoft’s hope with IE9, which they’ve just announced at Mix, brings new HTML5 support (including HTML5 video!), hardware-accelerated 2D graphics, and a totally new JavaScript engine—and no XP support.

Microsoft’s just demoed the latest build of IE9, the final version of which doesn’t yet have a release date, and for something as sleepy as a browser, it’s pretty cool. Here’s what’s new:

HTML5

HTML5 is basically the talk of the town right now, assuming your town is populated exclusively by web developers and Apple apologists. It’s magic! It’s going to save the internet! It’s going to kill Flash! Etc. But really, it’s more subtle than that: It’s the next version of the entire language that underlies the web—HTML—and it supports a lot of interesting features, which will make websites behave more like apps. Firefox, Safari, Chrome and Opera have pretty much left Microsoft in the dust in terms for HTML5 support. Until now! Here are the HTML5 features Microsoft says IE9 will support:

h.264 video: When people talk about HTML5 killing Flash, this is what they’re talking about. Some video sites, like YouTube and Vimeo, have been experimenting with video playback that doesn’t require a plugin to play. h.264 is the format standard the big sites have chosen to go with, and now Internet Explorer will support it.

Embedded Audio: Just as the video tag allows for video to be embedded directly into a page without a plugin, the audio tag allows audio files to be embedded straight into the page. IE9 supports MP3/AAC codecs.

Scalable Vector Graphics: Scalable vector graphics allow for the creation of certain types of graphics that scale perfectly—because they’re drawn as vectors, not plain images. It can also allow for rudimentary, Flash-style animations.

CSS3: CSS is essentially what the web is formatted with, and Internet Explorer’s various CSS compatibilities have been maddening since, well, forever. IE9 supports more standards-based CSS3—including Selectors, Namespaces, Color, Values, Backgrounds and Borders and fonts—and should support more before launch. They’re finally trying, is the point.

The New JavaScript Engine

Modern web apps are loaded with JavaScript, to the point that new browsers are practically measured by how fast they can render it. (A faster JavaScript engine means sites like Gmail, Facebook and even Gizmodo don’t just load faster, but run more quickly.) Here’s how Microsoft says IE9 measures up right now:

Keep in mind that this is a WebKit-designed test, and that IE9 isn’t ready for release yet—Microsoft says they’ll still improve the rendering speed. And really, while IE9 might not outpace the fastest browsers out there, it’s at least close. And hilariously faster than IE8. In the onstage demo, IE9 didn’t do terribly well on the Acid3 test, either, scoring a mediocre 55/100, which they vowed to improve. But again, they’re at least trying, and when you’ve got the market share (and history of ignoring standards) that Microsoft does, this is, again, worth a lot.

2D Acceleration


Internet Explorer nine adds DirectX video acceleration for SVG graphics and even text rendering, which will make some SVG graphics and CSS3 rendering faster, but also applies to text rendering, which makes the entire browsing process a bit smoother.

HTML5 video rendering is much, much smoother than in Chrome (demonstrated onstage), simply because of Direct2D video rendering—Microsoft was able to demonstrate two 720p HD videos playing smoothly in the same browser window, while Chrome choked on just one. Getting this acceleration doesn’t require any extra code on the website’s part, though developers won’t be able to depend on this kind of video acceleration in their webpages, since it’s unique to IE9 and Windows, for now. More than allowing for absurd demos like this, what this means is that any video played back via the video tag in IE9 will simply use less CPU power than it would in another browser, which is an objective improvement. (Note: This won’t be available on Windows XP.)

Additionally, some Javascript rendering can also be offloaded to the GPU, which, again, helps speed along rendering and responsiveness for complicated web apps.

A lot of what Microsoft is doing here could be accurately described as catchup. And aside from the 2D acceleration features, there’s really not much new here, as far as your average browser is concerned. But Internet Explorer adoption is inevitable, and for Microsoft to embrace modern web standards—at least more than they have in the past—will have a measurable, positive effect on the internet, and the people who browse it. (From work, which I’m fairly sure is the only place where the computer-literate people use IE anyway.)

A Clean Break

It’s hinted on Microsoft’s IE9 site that some of the features of IE9 won’t be compatible with XP, and some commenters have told me the prerelease version doesn’t run on the aging OS. The truth, as confirmed by Mary Jo Foley, is more severe: IE9 will not support Windows XP.

A clean break at some point is inevitable, but this isn’t going to go over too well with the millions of XP loyalists still out there.

The Preview


You can actually try it now, though some of the features—most conspiciously HTML5 video—aren’t yet there, and the interface is still pretty barebones. (There’s no proper address bar, for example, but just a “go to” popup window. This is a developers’ test tool, really.) The download’s available here.

[Giz at Mix]

CyberNotes: Mandriva 2007 Makes XGL Easy And Quick

This article was written on October 31, 2006 by CyberNet.

CyberNotes
Time Saving Tuesday

A few months back I gave Kororaa Linux a shot because it installed XGL automatically on my system without me needing to do a thing. Heck, the 3D goodness that Kororaa brought even worked flawlessly on the Live CD that they offered. It didn’t take long for ATI and nVidia to go after them for distributing the drivers with the kernel which forced Kororaa to remove XGL from its CD.

Mandriva Linux It has been several weeks since Mandriva 2007 (formerly known as Mandrake) was released and it has received some pretty amazing reviews because of the built-in XGL/Compiz. I love trying new Linux distributions and this one seems to be very popular on the list at DistroWatch (located in their right sidebar).

The first thing that I did was download the free version of Mandriva and burned it to a CD. Before I installed it I decided to boot it up and see if I like it. Well, I didn’t have much of a choice because you have to boot it up in order to install it anyway (the installation shortcut is located on the desktop).

It didn’t look very promising because the first two computers (both have ATI graphics cards) that I tried it on couldn’t even get the CD to finish booting. It would get an error halfway through loading and then throw in the towel. The hours of troubleshooting didn’t help and I was beginning to believe that it was a bad download/burn. Then I popped the CD into my Dell laptop with the integrated Intel graphics card and it loaded up just fine.

With Intel graphics cards, however, Mandriva uses AIGLX instead of XGL for performance reasons I would imagine. At any rate it looked superb and ran smoother than my XGL installation under Ubuntu, which is on a laptop with an ATI graphics card. This is the closest thing to a Mac, based on graphics, that I have ever experienced! There is even an Exposé clone that is nothing short of remarkable.

I put together this quick video to show you Mandriva 2007 (free version) in action:

Sorry about the poor quality but I had to use a camera since I couldn’t find any good screencast software for Linux.

The Exposé is no doubt my favorite feature and is actually available for all Linux distributions. Its real name, which bears no resemblance to Exposé, is Komposé. Combining this feature with XGL/AIGLX makes it look and feel like a retail operating system that you would expect from Microsoft or Apple.

I don’t think that I’ll be using this as my primary Linux installation because I am still a big openSUSE fan, but Mandriva definitely sets the bar very high when it comes to the expectations that other Linux distributions need to reach. The reason I chose this for the “Time Saving Tuesday” article is because there are many of you who are looking for a way to play with Linux and XGL…and this is by far the easiest/quickest!

Mandriva One 2007 Free (KDE) Torrent (XGL capable)
Mandriva One 2007 Free (Gnome) Torrent (XGL capable)
Mandriva Free 2007 DVD (NOT XGL capable)

Copyright © 2010 CyberNet | CyberNet Forum | Learn Firefox

Related Posts: