Introducing the SketchUp Showcase

 

It’s our sincere pleasure to unveil The SketchUp Showcase, a home for the most impressive, interesting, and inspiring project stories that have been shared with us.

Why a new showcase? Often, when you find an amazing model in the 3D Warehouse, it doesn’t tell the full story behind a project. You can download it and see how it was built. But you probably wouldn’t get a sense of why it was built. Where did the inspiration come from? What were the design challenges the modeler faced? What happened after the model was finished? The story just isn’t complete.

The Showcase is a space where the stories, images, renders, animations, and 3D models of passionate SketchUppers can shine a bit brighter.

 

 

What was the inspiration behind this 3D model? | Image courtesy of Roberto Bergamo 

 

But that’s not all – the Showcase is also a first look at a new element of SketchUp technology: an online 3D model viewer. This 3D viewer lets you orbit, zoom, and pan 3D models right in your browser! To see it in action, find a project marked with a red flag or simply click here. Please note: you’ll need to use the latest version of Google Chrome to take advantage of the WebGL goodness that makes this viewer possible.

Go ahead and start exploring now; content is organized by category filters, so you can easily find projects based on your interests.

A project page featuring the new online 3D viewer | The Catalyst Playground in VietnamFinally, our team would like to dedicate the SketchUp Showcase to all the passionate SketchUppers who’ve supported us for over a decade. As we enter a new chapter with Trimble, we hope the Showcase and the online viewer are proof that SketchUp is only getting better. It’s clichéd to say we wouldn’t be much of anywhere without you, but that doesn’t make it any less true. Thank you for all of the love (sometimes tough) you’ve sent our way. Your passion for SketchUp is still what gets us out of bed in the morning.

Google+: Improvements before the New Year

Google announce a goodie basket full of Google+ features and functionality for you to unpack and enjoy over the holidays. Some of these were on nearly everyone’s wishlist… and some we hope will be welcome surprises. These features will be rolling out over the next couple of days, and we hope you’ll find them useful this holiday season and beyond.

Pump up (or down) the volume!
Sometimes important posts you wouldn’t want to miss from close friends or family can get lost amongst posts from others who post dozens of times a day. We’re adding fine-grained controls that will enable you to “graphic-equalize” and fine-tune your stream. When viewing the stream for a particular circle, you’ll now see a slider at the top that lets you adjust how posts from that circle should be blended into the main stream. That way you’ll never miss a post from that special someone, and you can tweak these settings to form your own “perfect stream.”

More useful and attractive notifications
One of the most useful and valuable features of the redesigned Google bar is the red notifications indicator. (You could even say it glows!) You know when you have tasty social content to consume, but the notifications themselves have been a little cryptic, often requiring you to navigate to the content itself to understand what happened. We now have easy-to-read “sneak previews” that immediately present what’s new and why you might care. We’ve polished these notifications up and made a few other meaningful improvements too, including the ability to see the +1’s and shares your posts have received since you last checked.

Google+ Notifications

Improvements to Google+ Pages
Google+ Pages have already provided brands and businesses a new means of connecting to and deeply engaging with consumers. In the weeks since launching pages, we’ve been listening to your feedback and we’re pleased to make some of the most oft-requested features available.

  • You can now delegate up to 50 named managers as administrators for a page.
  • A new notification flow will ensure that these managers stay in the loop on all the activity that takes place on a page, giving managers the ability to stay involved in page conversations.
  • We’ll now show an aggregated count of users that have engaged with your page, either by +1’ing it or by adding it to a circle. This way, both you and your page’s visitors can get an at-a-glance summary of who is interacting with your page.

A more beautiful and usable photos experience
Finally, we’re making a bevy of improvements to the Google+ Photos experience, just in time for the holiday photo-sharing season. Viewing a photo in Lightbox has been completely redesigned with improved navigation, enhanced comment legibility and better overall utility. This design makes the photo the hero, letting the content itself shine through. And we’re introducing a completely new photo-tagging experience that’s both fun and fluid, and lets you quickly focus on the people in your photos.

We hope that you enjoy these improvements and continue to provide us feedback. It’s been an incredible year for us on the Google+ team. While this indeed has been a #seasonforshipping, Google+ users know that we believe that shipping is always in season!

via: Google Official

The Pictarine: Building a mashup in the cloud with Google App Engine

 

Pictarine is a photo management web application, launched in 2010, that allows people to easily manage and share all of their photos from Flickr, Picasa, Facebook, Twitter and other sites. Pictarine developers Guillaume Martin and Maxime Rafalimanana have contributed the following post discussing their experiences using Google App Engine and Google Web Toolkit.

From the start, we used Google technologies in developing Pictarine and we wanted to share our experience with them so far. In this post, we will shed some light on the weaknesses and strengths we found in Google Web Toolkit (GWT) and Google App Engine. We will also discuss how we leveraged GWT to build a new technology that allows Pictarine to seamlessly display photos from the computer directly into the browser. The following diagram is an overview of how our application works.

Building a mashup in the cloud with Google App Engine

The Pictarine team is made of a web designer and two developers who previously worked mainly with Java based enterprise technologies and had a little experience with web technologies. When we started the project in early 2009, we were quite open on learning new languages like Python or Ruby, but when App Engine announced that Java would be supported, we were really excited to give Google App Engine a try.

The first few months, learning about the App Engine environment was quite easy and dare I say fun. Testing our code on Google’s servers from Eclipse IDE was only one click away. So we built our first prototype fast and we quickly decided to adopt App Engine. Then we started to build the core of our application: the engine that uses the API from Flickr, Picasa, Facebook to fetch the users’ photos. This is where we hit the first limitations of App Engine. Most users have a lot of photos on these services and retrieving them can take some time. But App Engine has strict limits on how long a request should last: an outgoing HTTP request cannot last more than 10 seconds and cannot process a request for more than 30 seconds. So while building our architecture we found ourselves writing approximately one third of our code dealing with these limitations: paginating our requests, creating background tasks to store data in small batches, etc.

In early 2010, when we launched our alpha version, everything went smoothly. We had some good press coverage and App Engine met our expectations in handling our first users. During 2010, we worked on implementing new features requested by our users, and during this period of time we were really impressed by the way App Engine evolved. Many of the limitations were lifted and great new features were added. We are now able to use Task Queues for requests that last up to 10 minutes, which we fully use to sync our users’ photos and albums. One of the features we like the most is the Channel API, a push notification system that allows us to instantly show a photo in every connected browser as soon as it is uploaded.
App Engine is still not perfect but has greatly improved and when we see its roadmap, we are quite confident it will continue to improve.