Development by Davis

Headlines

martes, 4 de diciembre de 2012

Development by Davis: “WordPress 3.5 Release Candidate 3” plus 8 more

Development by Davis: “WordPress 3.5 Release Candidate 3” plus 8 more


WordPress 3.5 Release Candidate 3

Posted: 04 Dec 2012 12:37 AM PST

The third release candidate for WordPress 3.5 is now available. We've made a number of changes over the last week since RC2 that we can't wait to get into your hands. Hope you're ready to do some testing!

  • Final UI improvements for the new media manager, based on lots of great feedback.
  • Show more information about uploading errors when they occur.
  • When inserting an image into a post, don't forget the alternative text.
  • Fixes for the new admin button styles.
  • Improvements for mobile devices, Internet Explorer, and right-to-left languages.
  • Fix cookies for subdomain installs when multisite is installed in a subdirectory.
  • Fix ms-files.php rewriting for very old multisite installs.

At this point, we only have a few minor issues left. If all goes well, you will see WordPress 3.5 very soon. If you run into any issues, please post to the Alpha/Beta area in the support forums.

If you'd like to know what to test, visit the About page ( → About in the toolbar) and check out the list of features. This is still development software, so your boss may get mad if you install this on a live site. To test WordPress 3.5, try the WordPress Beta Tester plugin (you'll want "bleeding edge nightlies"). Or you can download the release candidate here (zip).

This posting includes an audio/video/photo media file: Download Now

Which gadget are you most likely to give for the holidays?

Posted: 04 Dec 2012 01:00 AM PST

Gift Giveaway poll
Which gadget from our Gift Guide are you most likely to give?
Raspberry Pi
Arduino
MaKey MaKey
BeagleBone
Ice Tube Clock
SparkFun Inventor's Kit
i-Racer
NanoNote
Flora
MintyBoost
Other (tell us in the comments!)

It's getting really close to the holidays. Hopefully you've seen our gift guide and giveaway, and we'd love to know which gadgets you're most excited about.

read more

International Open Data Day — An Update

Posted: 03 Dec 2012 11:00 PM PST

open data

Two years ago, I met some open data advocates from Brazil and Ottawa, and we schemed of doing an international open data hackathon. A few weeks later, this blog post launched International Open Data Day with the hope that supporters would emerge in 5-6 cities to host local events.

read more

AMD and Ubisoft Collaborate to Deliver the Ultimate Far Cry 3 PC Gaming Experience

Posted: 04 Dec 2012 12:00 AM PST

AMD (NYSE: AMD) today announced its collaboration with Ubisoft® to support the highly anticipated next chapter in the "Far Cry" franchise, "Far Cry 3®," launching today in North America. Developed in conjunction with the AMD Gaming Evolved program, "Far Cry 3" is fully optimized for a premium PC gaming experience, harnessing the power of  AMD Ra...

New AMD Opteron 4300 and 3300 Series Processors Deliver Ideal Performance, Power and Price for Cloud Applications

Posted: 04 Dec 2012 12:00 AM PST

AMD (NYSE: AMD) today unveiled nine new mid-range and entry-level AMD Opteron™ 4300 Series and 3300 Series server processors increasing performance per watt versus the previous generation to maximize compute capabilities in power-constrained environments1, while delivering outstanding value to cloud p...

Windows 8 Networking: Windows 8 and the WebSocket Protocol

Posted: 02 Dec 2012 04:00 PM PST

December 2012

Kenny Kerr explores the WebSocket protocol and its relationship to the larger TCP/IP suite. Learn how Windows 8 enables programmers to easily adopt WebSocket in their applications.

Cutting Edge: Essential Facebook Programming: Authentication and Updates

Posted: 02 Dec 2012 04:00 PM PST

December 2012

Integrate Facebook functionality into apps and use the Facebook C# API to authenticate users and post programmatically on behalf of the currently logged-in user.

New Google Maps Android API now part of Google Play services

Posted: 03 Dec 2012 02:08 PM PST

Posted by Reto Meier, Evan Rapoport, and Andrew Foster

Google Play services is our new platform that offers you better integration with Google products, and which provides greater agility for quickly rolling out new capabilities for you to use within your apps. Today we're launching Google Play services v2.0, which includes two new APIs, including perhaps our most frequently requested upgrade: Maps.

Google Maps Android API


The new version of the API allows developers to bring many of the recent features of Google Maps for Android to your Android apps. We're excited to make this API available as part of Google Play services supporting devices from Froyo onwards (API level 8+).

The new API uses vector-based maps that support 2D and 3D views, and allow users to tilt and rotate the map with simple gestures. Along with the layers you've come to know from Google Maps such as satellite, hybrid, terrain and traffic, the new API lets you include indoor maps for many major airports and shopping centers in your app.

One of most common feature requests we've heard on Android is support for Map Fragments. With this new API, adding a map to your Activity is as simple as:

<fragment    android:id="@+id/map"    android:layout_width="match_parent"    android:layout_height="match_parent"    class="com.google.android.gms.maps.MapFragment" />

Check out this image from updated Trulia Android app (which goes live tomorrow), that users can use to search for a place to buy or rent in 3D.


The new API is simpler to use, so that creating markers and info windows is easy. Polylines, Polygons, Ground Overlays and Tile Overlays can all now be added to the map with just a few lines of code.

To get started follow the getting started instructions to obtain an API Key. Then download and configure the Google Play services SDK using the SDK Manager. Check the Google Maps for Android API documentation for more details.

More than 800,000 sites around the world already use our mapping APIs to create amazing and useful apps. We hope you enjoy using this new addition to the Google Maps API family, and building mapping experiences that were never before possible on a mobile device.

Photo Sphere


In Android 4.2, we introduced Photo Sphere mode in the Camera, which you can use to create amazing, immersive panoramas just like you see in Street View on Google Maps. Today we're excited to announce new APIs and documentation that empower developers, businesses, and photographers to explore new uses of Photo Sphere for work and for play.

We've made Photo Sphere an open format so anyone can create and view them on the web or on mobile devices.

A Photo sphere is simply an image file (like a JPG) that has in it text-based metadata, an open format created by Adobe called XMP. The metadata describes the Photo Sphere's dimensions and how it should be rendered within the interactive Photo Sphere viewer you see in Android, Google+, and Google Maps.

If you'd like to programmatically or manually add the XMP metadata into panoramic images not created by the Photo Sphere camera in Android, stay tuned today for more details on the metadata and how to apply it to your photos programmatically later.

In the new Google Play services, we've added the ability for Android app developers to check to see if an image is a Photo Sphere and then open it up in the Photo Sphere viewer.

// This listener will be called with information about the given panorama.  OnPanoramaInfoLoadedListener infoLoadedListener =    new OnPanoramaInfoLoadedListener() {      @Override      public void onPanoramaInfoLoaded(ConnectionResult result,                                       Intent viewerIntent) {          if (result.isSuccess()) {              // If the intent is not null, the image can be shown as a              // panorama.              if (viewerIntent != null) {                  // Use the given intent to start the panorama viewer.                  startActivity(viewerIntent);              }          }                    // If viewerIntent is null, the image is not a viewable panorama.      }  };    // Create client instance and connect to it.  PanoramaClient client = ...  ...    // Once connected to the client, initiate the asynchronous check on whether  // the image is a viewable panorama.  client.loadPanoramaInfo(infoLoadedListener, panoramaUri);

For more information, please see the Android developers documentation.

Congressional group briefly opens up on radical copyright reform, then takes it back

Posted: 03 Dec 2012 02:00 AM PST

broken copyright

Open source software licenses and copyright law have a complex relationship. People often say that open source turns copyright on its head and loosely refer to open source licenses as "copyleft" licenses. Indeed, the idea of a license that grants perpetual rights to copy, modify, and distribute a work—and requires licensees to attach the same terms to any downstream work—certainly feels like the antithesis of copyright law's protectionist character.

read more

No hay comentarios:

Publicar un comentario