SketchUp Pro Case Study: Turner Construction and the WTC, Part 1

Tuesday, January 31, 2012

Today, we kick off a three-part series profiling Turner Construction Company, one of the largest construction management companies in the world. Turner uses SketchUp Pro at several points in its workflow: planning and coordinating of demolition and construction, creating presentations and providing safety training. They’ve even developed SketchUp plugins to accelerate certain internal processes.

We sat down with Jim Barrett, Director of Integrated Building Solutions, to discuss how Turner is using new technologies and processes to solve everyday problems. In this first installment, Jim tells us about SketchUp Pro’s role in Turner’s World Trade Center Transportation Hub Project.

To meet the accelerated schedule and high number of deliverables for the World Trade Center Transportation Hub Project, Turner turned to SketchUp Pro. This project is not only a complex matrix of building system and structural elements; it also requires detailed phasing of demolition and construction to avoid disturbance to the six major subway lines that run within the project extents. Coordination models are essential for planning phasing and coordinating the location of not only the permanent structures, but also the temporary construction items such as formwork, shoring, and bracing.

Detailed model of East Box Girder steel, precast smoke purge ducts, and temporary shoring.

Weekly work-in-place presentation updates are automated through a custom Turner plugin (which we’ll discuss in Part 2 of this post) for exporting images to slide presentation software. The ability to customize workflows provides Turner with the opportunity to combine constructibility studies with graphic information about the schedule and clearly represent this information to the project team.

Work in place tracking of 1-train subway structure and temporary shoring towers. Both subway and PATH train service are maintained while construction is taking place.

Interoperability is key for Engineers at Turner. SketchUp Pro’s ability to import and save to exchange file formats allows the team to compile models from multiple disciplines, regardless of the model’s software origin. In this way, the team can quickly study complex details and integrate additional information to an existing model.

PATH Hall roof steel ribs, vierendeel truss, and adjacent to Memorial Pavilion structure.

We’d like to thank Jim and Turner Construction for chatting with us. In part 2, we’ll explore a couple of Turner’s custom plugins used to bring existing processes into the simple, efficient and visual environment of SketchUp Pro.

Posted by Gopal Shah, SketchUp Marketing

Awesome Rainbow animation Link Widget for Blogger

Monday, January 30, 2012

This is a simple Blogger Blog Trick,Changing the color of Link when Mouse over it.7 colors are changing like animation when hover the link.
Follow the simple steps below..












If you are a beginner in HTML editing,Use our 1 Click Widget Below(Click Add to Blogger Button below)



Install Rainbow Animation Hover Effect manually.

Note:Remember that Back up your Template First.(How to Backup Template)

  • Sign In to you Blogger Account.
  • Go to Design->Edit HTML
  • Find <head> section and Place the below code inside it.

<script type='text/javascript'>
//<![CDATA[
var rate = 20;
if (document.getElementById)
window.onerror=new Function("return true")
var objActive;  // The object which event occured in
var act = 0;    // Flag during the action
var elmH = 0;   // Hue
var elmS = 128; // Saturation
var elmV = 255; // Value
var clrOrg;     // A color before the change
var TimerID;    // Timer ID
if (document.all) {
document.onmouseover = doRainbowAnchor;
document.onmouseout = stopRainbowAnchor;
}
else if (document.getElementById) {
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
document.onmouseover = Mozilla_doRainbowAnchor;
document.onmouseout = Mozilla_stopRainbowAnchor;
}
function doRainbow(obj)
{
if (act == 0) {
act = 1;
if (obj)
objActive = obj;
else
objActive = event.srcElement;
clrOrg = objActive.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}
function stopRainbow()
{
if (act) {
objActive.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
function doRainbowAnchor()
{
if (act == 0) {
var obj = event.srcElement;
while (obj.tagName != 'A' && obj.tagName != 'BODY') {
obj = obj.parentElement;
if (obj.tagName == 'A' || obj.tagName == 'BODY')
break;
}
if (obj.tagName == 'A' && obj.href != '') {
objActive = obj;
act = 1;
clrOrg = objActive.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}
}
function stopRainbowAnchor()
{
if (act) {
if (objActive.tagName == 'A') {
objActive.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
}
function Mozilla_doRainbowAnchor(e)
{
if (act == 0) {
obj = e.target;
while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
obj = obj.parentNode;
if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
break;
}
if (obj.nodeName == 'A' && obj.href != '') {
objActive = obj;
act = 1;
clrOrg = obj.style.color;
TimerID = setInterval("ChangeColor()",100);
}
}
}
function Mozilla_stopRainbowAnchor(e)
{
if (act) {
if (objActive.nodeName == 'A') {
objActive.style.color = clrOrg;
clearInterval(TimerID);
act = 0;
}
}
}
function ChangeColor()
{
objActive.style.color = makeColor();
}
function makeColor()
{
// Don't you think Color Gamut to look like Rainbow?
// HSVtoRGB
if (elmS == 0) {
elmR = elmV;    elmG = elmV;    elmB = elmV;
}
else {
t1 = elmV;
t2 = (255 - elmS) * elmV / 255;
t3 = elmH % 60;
t3 = (t1 - t2) * t3 / 60;
if (elmH < 60) {
elmR = t1;  elmB = t2;  elmG = t2 + t3;
}
else if (elmH < 120) {
elmG = t1;  elmB = t2;  elmR = t1 - t3;
}
else if (elmH < 180) {
elmG = t1;  elmR = t2;  elmB = t2 + t3;
}
else if (elmH < 240) {
elmB = t1;  elmR = t2;  elmG = t1 - t3;
}
else if (elmH < 300) {
elmB = t1;  elmG = t2;  elmR = t2 + t3;
}
else if (elmH < 360) {
elmR = t1;  elmG = t2;  elmB = t1 - t3;
}
else {
elmR = 0;   elmG = 0;   elmB = 0;
}
}
elmR = Math.floor(elmR).toString(16);
elmG = Math.floor(elmG).toString(16);
elmB = Math.floor(elmB).toString(16);
if (elmR.length == 1)    elmR = "0" + elmR;
if (elmG.length == 1)    elmG = "0" + elmG;
if (elmB.length == 1)    elmB = "0" + elmB;
elmH = elmH + rate;
if (elmH >= 360)
elmH = 0;
return '#' + elmR + elmG + elmB;
}
//]]>
</script>

  • Save It and Enjoy. . . !

I think you enjoyed this post.Surely you will get excited after using this widget.

Awesome Random Posts Widget for blogger Blog

Saturday, January 28, 2012

random posts widget
Random Posts widget is an awesome widget for your Blogger Blog.Most important feature of this widget is it lets your Blog visitors to surf more blog posts in your blog.Surely it increases your Blog's internal links that lets your blog higher traffic.
Its let your users to spend more time in your Blog.






Install Random posts widget

Make sure you are Sign In to your Blogger Account.

If you are a beginner in Blogger Editing ,use our one click Widget
  • Click the below Add to Blogger Button to install

Manually Add Random posts Widget

  • Sign In to your Blogger Account.
  • Go to Design->Page Elements
  • Click on Add Gadget and look for HTML/Javascript take it
  • Give the title as you need(eg:Random Posts)
  • Copy and paste the below code to the content section
<style type="text/css">
.noop-random-posts ul li {
    list-style-image: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgqs7Nq6sK0z9EFxOBNjMuf3uBmtFkODxZhMDsvzyj-PcFNoNyF6Td2Izu3bUShIa1elYKCcE-feSYWtq9K50MM0gB4cqQj-TsVir6RJdvV5cNmSP0SYnz2XEGvewyHwbCAfhc1eiBL27w/s1600/tick+list+style.png");
}
</style>
<div class="noop-random-posts"><script type="text/javascript">
    var randarray = new Array();var l=0;var flag;
    var numofpost=5;function nooprandomposts(json){
    var total = parseInt(json.feed.openSearch$totalResults.$t,10);
    for(i=0;i < numofpost;){flag=0;randarray.length=numofpost;l=Math.floor(Math.random()*total);for(j in randarray){if(l==randarray[j]){ flag=1;}}
    if(flag==0&&l!=0){randarray[i++]=l;}}document.write('<ul>');
    for(n in randarray){ var p=randarray[n];var entry=json.feed.entry[p-1];
    for(k=0; k < entry.link.length; k++){if(entry.link[k].rel=='alternate'){var item = "<li>" + "<a href=" + entry.link[k].href + ">" + entry.title.$t + "</a> </li>";
    document.write(item);}}
    }document.write('</ul>');}
    </script>
<script type="text/javascript" src="/feeds/posts/default?alt=json-in-script&start-index=1&max-results=1000&callback=nooprandomposts"></script></div>
Click on Save and its Done...If you have any doubts don't hesitate to ask.Please Comment.
I hope you had enjoyed this post.Leave Comments...

Beautiful Page Navigation for Blogger Blog

Friday, January 27, 2012


page navigation for blogger
Blogger Page Navigation is an awesome trick to navigate your Blogger Blog Pages.It allows your users to Navigate Blog pages like Book,By using this your blog visitors can easily go to an appropriate page.By default Blogger allows Older Posts and Newer Posts link to Navigate between Blog pages.It is very difficult for your users to navigate deeper into your Blog's Posts, so the Page Navigation helps us to solve this problem.
 Let's see how to install it.Follow the steps below.

1.How to install Page Navigation Widget

  • Log In to your Blogger Account
  • Go to Design-> Page Elements(Shown in the Picture)
  • Click on Add Gadget (anyone) and look for HTML/Javascript take it.
  • Leave the Title as Blank(as shown in the figure)
  • Copy and paste the below code in it.
<style type='text/css'>
#blog-pager{height: 28px;
    padding: 10px 0 0;
overflow:hidden;
text-align:center;
}
.showpageArea a {text-decoration:underline;
font-size: 16px;
       text-align: center;}
.showpageNum a {font-size:16px;text-decoration:none;border: 1px solid #cccccc;margin:0 5px;padding:5px;}
.showpageNum a:hover {border: 1px solid #cccccc;background-color:#cccccc;}

.showpagePoint {font-size:16px;text-decoration:none;border: 1px solid #cccccc;background: #216FD9;margin:0 5px;padding:5px;color:#ffffff;}

.showpageOf {text-decoration:none;padding:5px;margin: 0 5px;}
.showpage a {text-decoration:none;border: 1px solid #cccccc;padding:5px;}
.showpage a:hover {text-decoration:none;background: #cccccc;}
.showpageNum a:link,.showpage a:link {text-decoration:none;color:#333333;}</style>
<script style='text/javascript'>var pageCount=7; 
var displayPageNum=5;var upPageWord="Previous";var downPageWord="Next";</script>
<script style='text/javascript' src='http://netoopscodes.googlecode.com/svn/netoops-page-nav-v2.js'></script>
you can change Red Highlighted texts when you need. pageCount=7;  determines how many Blog posts in each pages. you want to display in each pages.(Note:if you change this value '7' goto Settings->Formatting and change value of Show at most as you given in PageCount)
And displayPageNum=5 determines how many additional Page Navigation numbers display on the page.
  • Click on save,You are almost clear.
  • Then Change the position of the Widget ,place under the Blog posts.(shown in the figure)
  •  
  • Done..your blog had a page navigation bar.
The Page Navigation had been developed by Muhammed Rias and it was a good presentation.There are some bugs in that and Abu Farhan had solved it.Give them a big thanks for giving us a Beautiful Page Navigation Solution.

Organic modeling made simple with Curviloft

Thursday, January 26, 2012

The process of extruding one 2D profile such that it ends in another, different 2D profile is often called lofting. There’s no easy way to do this in plain ol' SketchUp, but there are plenty of plugins that make it possible. The one I’ve been obsessed with lately is called Curviloft; it's by the venerable Fredo6. If you need to learn about plugins in general, including how to install them, visit the plugins page on our website.

Curviloft lets you do three basic operations; which one you use depends on what you’re trying to accomplish. For the sake of brevity (and simplicity), I’m going to focus on only the first operation in this post: Loft By Spline.

The Basics

Let’s say you have two profiles that you want to connect together. The example below is super-simple: It’s a circle directly above a square. Here, I want to connect the two with a shape that goes directly between them. Curviloft’s Loft By Spline tool was made for just this kind of thing.

I start with two flat profiles (shapes) positioned one above the other.

Fredo6's Curviloft plugin includes three handy tools. This post deals with the first one: Loft by Spline. To use it, you need two or more profiles. These can be closed shapes (as above) or simple, unconnected edges (see the end of this post for an example).

With nothing selected, I activate Loft By Spline and click once on each shape. Because there are only two, it doesn’t matter which shape I click first. If there were more than two, I’d click in the order that I want to connect them, starting at either end. When both profiles are numbered, I click the green checkmark in the Curviloft toolbar (see below). This brings me into Preview mode, where I can see what I’m about to end up with.

Activate the tool, then click on the profiles you'd like to use as the endpoints for the shape you're trying to create. When you're done, click the green checkmark to enter Preview mode.

The Curviloft toolbar is complicated; there’s no getting around it. The good news is that you don’t have to understand what all the controls do in order to use the tool. In Preview mode, you can just click things to see what happens. There's no shame in experimentation.

The Curviloft toolbar is a doozy, but you can (and should) click buttons to see what happens. Every case is different, and some settings look better than others.

When you perform a Loft by Spline operation with Curviloft, the tool is generating two different kinds of geometry which it later combines. Intermediate profiles (left) are "in-between" 2D shapes spaced between the profiles you start out with. Splines (right) are lines that connect adjacent profiles together. They can be straight or curvy, depending on the settings you choose.

I like to fiddle with the Spline Method settings first (see below). This is where you control the shape of the vertical lines (splines) that connect the two profiles—in this case, the circle and the square. The three options that I find give the most interesting results are “Junction by connected lines”, “Bezier curves – Respect tangency (Method 2)” and “Junction by Orthogonal Bezier Curves”. By all means, try the other buttons, too; there’s gold in them thar hills.

Different settings usually produce fairly different results. Click around until you like what you see.

Playing with the Vertex Matching controls also yields some useful options (see below). Here, you’re telling Curviloft how to decide which points on the perimeter of each profile should connect to one another. In this case, the circle has 24 endpoints and the circle only has four. The tool does its best to figure out the intermediate geometry, but the Vertex Matching settings let you provide guidance. For me, the most interesting button is the one on the far right; often, deselecting “Orientate contours to their best-fit box” seems to produce better results. Click it a few times to see what happens.

To be honest, I really don't understand what these buttons do. I have eyes, though, and I can tell what looks good and what doesn't. I bet you can, too.

When you’re satisfied, hit Enter on your keyboard (or click the green checkmark on the toolbar) to finish generating the result.

I'm delighted every time I do one of these operations. Modeling this "by hand" would take so long that I doubt I'd even bother attempting it.

Cool variation #1: Twisting


While you’re still in Preview mode, clicking on black part of your preview object opens yet another set of controls. The Properties of the Edited Junction window shows you more information about the connections in the operation you’re doing. My favorite widgets here have to do with twisting; they let you rotate either of your profiles (in this case, the circle and the square) by 15 or 90 degree increments. The result is an insanely cool twisting effect. Click the little right and left arrows and you’ll see what I mean. Addictive, no?

Twisting 3D forms is one of those things that SketchUp modelers have resigned themselves to never being able to do. When I discovered this functionality in Curviloft, I got up and danced around.

Cool variation #2: Offset profiles

Loft by Spline works great on profiles that aren’t lined up perfectly, too. Below, I’ve moved and rotated the circle.

Your profiles don't have to be directly on top of one another to use Loft by Spline.

Again, trying different Spline Method settings produces pretty wildly different results.

Using straight splines connects the profiles in a very direct manner. Choosing a curvy spline method produces a much jauntier shape.

I dare you not to waste an afternoon playing with Curviloft. The other two tools in the set let you loft along a path and "skin" connected profile edges, but Loft by Spline is pretty powerful on its own. Remember that Curviloft is donationware, meaning that if you like it, you can contribute to its author; you'll find an option to do so in the Curviloft menu after you install it.

Here are some quick examples of shapes I whipped up while I was working on this post:

Both profiles are identical, but I used the twist options to spiff things up a little.

Lofting between a complex profile and a simple one can be tricky, but the smooth transition that ensues is always lovely. Rocket? Tree trunk? Bicycle handlebar grip?

Your profiles needn't be fully-enclosed faces. Try lofting between arcs and other edges to produce all kinds of things that would be painful to model without Curviloft.

I used Curviloft to model parts of this queen I'm making. Some of us on the SketchUp team are collaborating on a 3D printed chess set.

I've written about a couple of Fredo6's other terrific plugins in the past. RoundCorner gives you the ability to quickly and easily create rounds and fillets on almost any shape. FredoScale is a toolkit for stretching, bending, twisting and otherwise deforming your models in incredibly useful ways.

Google Earth 6.2: It's a beautiful world

[Crossposted from the Google Lat Long blog]

We're taking bird's eye view to a whole new level with the latest version of Google Earth, released today. With Google Earth 6.2, we’re bringing you the most beautiful Google Earth yet, with more seamless imagery and a new search interface. Additionally, we’ve introduced a feature that enables you to share an image from within Google Earth, so you can now simply and easily share your virtual adventures with family and friends on Google+.

A seamless globe
The Google Earth globe is made from a mosaic of satellite and aerial photographs taken on different dates and under different lighting and weather conditions. Because of this variance, views of the Earth from high altitude can sometimes appear patchy.

Today, we’re introducing a new way of rendering imagery that smoothes out this quilt of images. The end result is a beautiful new Earth-viewing experience that preserves the unique textures of the world’s most defining geographic landscapes—without the quilt effect. This change is being made on both mobile and desktop versions of Google Earth. While this change will appear on all versions of Google Earth, the 6.2 release provides the best viewing experience for this new data.

Grand Canyon before and after

Sri Lanka before and after

Share your explorations with Google+

Google Earth is a great way to virtually explore the globe, whether revisiting old haunts or checking out a future vacation spot. With the Google Earth 6.2 update, we’ve added the option to share a screenshot of your current view in Google Earth through Google+. If you’ve already upgraded to Google+, you can share images of the places you’ve virtually traveled to with your Circles, such as family, friends or your local hiking club. To try this new feature, simply sign in to your Google Account in the upper right hand corner of Google Earth and click “Share.” Images of mountains, oceans, deserts, 3D cities, your favorite pizza shop on Street View—you can now experience all these amazing places around the world with people on Google+.
Search improvements

We’ve also made some updates to the search feature in Google Earth. Aside from streamlining the visual design of the search panel, we’ve enabled the same Autocomplete feature that’s available on Google Maps. We’ve also introduced search layers, which will show all the relevant search results (not just the top ten), so now, when looking for gelato in Milano, you can see all the tasty possibilities. Finally, we’ve added biking, transit and walking directions, so if you’re itching for a change of scenery or looking for a new route for your regular commute, you can now use Google Earth to generate and visualize all your options.

Posted by Peter Birch, Product Manager, Google Earth

Use Search Bar to Find a code in Blogger

find code in blogger
This article is very useful for Blogger beginners.This is a tutorial about how to find specific code in  webPages/Blogs/Websites.You may see many Blogger Tutorials on internet for the purpose of designing or to add gadgets to your blog,for eg: if you need to add some meta tags  inside <head> section.
 You go to
Design->Edit HTML
look for <head>

find <head> and place meta tags inside it. But,

It is not easy to find a code manually.So Use Ctrl + F to find.

Look the below picture
 

  • Hold Ctrl on the keyboard and press F,(Ctrl+F is the shortcut to reach Find Bar in almost all browsers)
  • A Find Bar will display, Type the code you want to search.
  • At once that code will highlight on the Page/Blog
  • Then you can edit/delete/modify highlighted code.
Please Leave Comments

Create an Official Google plus Page to drive traffic

Google launched Google pages for Google plus.It is a business solution for promoting products,blogs,news,events etc.. to your fans.Another important feature is it will increase your blog's traffic.Now i am saying about how to create an official Google+ Fan Page for your Blog.You can share your blog posts,events,photos etc to your Google Official plus fan page.It is almost similar to Facebook Fan Page.
Lets see how to create it.(Description with images)
Follow the instructions

Create official Google+ page

You must have a Google plus Account to create Fan page.

  • Sign In to your Google account and go to this LINK
  • Click on Product or Brand
  • Give the name of page you need to create(Blog/Site Name)
  • Choose Website from the list
  • Make sure you check the box below it
  • Click on CREATE

  •  The give your blog title and upload your Blog LOGO, If you have no LOGO for Blog click HERE
  • Click on Continue
  • Page creation is almost finished.Now you can share your Google+ page by click on Share on Google+
  • Click on finish ..Done..your page has been created sucessfully.

How to add Google+ Badge to your Blog

After finishing creating page ,you can see a button Get the Badge, Click it
  • It will redirect to the page like following picture.
  • you can see your page link,you can share it.
  • Choose the style of your G+ badge
  • After that if you want check the box HTML5 valid syntax
  • Then Copy the code in  the text box
  • Go to your Blogger Dashboard
  • Select Design->Page Elements click on Add Gadget
  • A pop up window will appear look it carefully and find HTML/JavaScript
  • Enter gadget title(eg:Share in Google Plus) and Paste the code on the content textbox
  • Click on SAVE..,Done..

CustomMade: A community design marketplace

Monday, January 23, 2012

Here’s an interesting twist on our Make Ideas Real project: sometimes great designs aren’t your ideas. The good folks at CustomMade.com have developed a marketplace that connects roll-up-your-sleeve makers with people who have project ideas they want to bring to life. (Editor's Note: CustomMade is part of the Google Ventures portfolio.) Have an idea for a one-of-a-kind armoire? On CustomMade there are about 3,000 contractors who can help you bring that idea to life.

"Kari’s Armoire," contracted, designed and sold on CustomMade.com, Michael Colca

Of course, if you’re one of those designers and you find yourself competing with 2,999 others, affordable and efficient design software is a pretty key resource. Enter SketchUp. CustomMade’s CEO Mike Salguero recently shared a few compelling projects that were brought to life using SketchUp:

White Oak and Wenge coffee table, Jon S Manss

Sure enough, SketchUp plays a critical role in not just the design of CustomMade projects, but in the collaborative conversations between clients and artisans. Jason Hernandez, of Jason Andrew Designs, uses SketchUp to fuel the ideation and iteration process between clients and contractors: the end result, a project that both parties can buy into.


Posted by Mark Harrison, Community Manager

Message from CustomMade.com
Have you started designing your dream project with SketchUp? Post a project description on CustomMade’s “Get it Made” job board and upload .skp files as attachments. Artisans interested in building your custom project will have the chance to experience your inspiration in 3D and contact you. Let the collaboration begin!

How to Backup/restore Blogger template

Sunday, January 22, 2012


backup blog

This article is for absolute blogger beginners,about how to backup your blogger blog's template.This is very important thing that every blogger should beware of it. While adding or changing new features to your blog ,there may occur template crash.If you are not aware of this thing( backup template), it will affect your blogger blog's overall body language.So first you must know about backup your Blogger Blog Template.Follow the Steps 




Backup Blogger Blog template

It is a simple method to backup your template,follow the steps.
  • First Make sure you had Sign In your blogger account
  • Go to Design->Edit HTML
  • There is a link "Download Full Template" at right side,click it

  •  Save it,You finished..!
The file you downloaded now is in the .XML format,so if any crash made on your template you just upload the downloaded XML file.

Upload/Restore Blogger Template

If any problem persist to your blogger blog's template upload the XML file.
  • Select Design->Edit HTML
  • There is a button (Browse) below the "Download Full template" link.Click on Browse
  • Choose the XML file you downloaded
  • Then Click on Upload button right to Browse button.
You are done,you had studied how to backup and restore your template.

How to add Search engine Friendly Title to Blogger Blog

Friday, January 20, 2012



This article will help new blogger blog owners and all bloggers to make their blog search engine friendly Titles.By default Blogger blog titles are not search engine friendly.Page Title is group of text that appears on top of your browser.It is more important in showing your blog/blog posts on Search engine results.The Page title is the most important element in your blog in terms of higher ranking in search results.
Here is example,the figure shows the title of our blog post,the blog title is displayed first and after that the post title has been displayed.





Google only displays 70 characters on Google search results and in case of Yahoo display bit more.So your blog posts will not display or you will not get as much rank in Search Results.Let us think about reversing of position of the blog title and post title,Giving the first priority to Post title and it will works.
It will appears like the following figure.
This
Lets see how to optimize your blogger blog titles Search engine friendly.
  • Go to Design->Edit HTML
  • find the following 
<title><data:blog.pageTitle/></title>
  • Replace the it with the following code
<b:if cond='data:blog.pageType == &quot;index&quot;'>
<title><data:blog.pageTitle/></title>
<b:else/>
<title><data:blog.pageName/> - NetOops Blog</title>
</b:if>
Replace the red text by your blog's Name
Done..! you have an SEO friendly page title.

Increase blog traffic using powerful meta tags

Thursday, January 19, 2012

This is a very useful article for all bloggers,every blogger had a dream that their blog got higher rank in Google or other search engines.Adding meta tags to your blogger blog help you to increase blog traffic.The meta tag helps the search engine to find appropriate results,This is a powerful Search Engine optimization(SEO) method used by popular websites and blogs.
Within a few steps you can add powerful meta tags by following the below steps


  • Sign In to your Blogger Account
  • Take Design tab in your blog dashboard
  • Select Edit HTML
  • Add the following code inside <head> section

<b:if cond='data:blog.url == data:blog.homepageUrl'>
<meta content='Place blogger description here' NAME='description'/>
<meta content='Place your blog's keywords here(seperated by commas)'
NAME='keywords'/>
</b:if>
Replace the Red text by your blog's description and keywords and place it inside <head> section.Now your blogger blog meta tags are placed.The Blogger description you placed in meta tag description will display as the description of your blog in Google search results(as shown in the figure).
Now day by day there are so many blogs are arriving on internet.This powerful meta tag technique will help you to go your blog success.

New Book: SketchUp for Game Design

Tuesday, January 17, 2012

I’ve yet to meet a SketchUp modeler who doesn’t—at least just a little bit—want to work in the video game design industry. I get a stupid grin on my face when I think about how much fun it it would be to make battle tanks and exploding oil drums and secret doors for hidden basements full of zombies. In the gaming world, boring things like gravity and cost take a backseat to novelty and sheer coolness.

But how to turn your SketchUp habit (and job cranking out toilet stall details) into days full of armor design and wandering through bad neighborhoods looking for interesting photo-textures to shoot?


Google SketchUp for Game Design is Robin de Jongh’s newest book; he also wrote SketchUp 7.1 for Architectural Visualization. It presumes that you’re a SketchUp beginner, but then quickly gets on to the good stuff:

  • Finding good resources for photo-textures
  • Using Meshlab to convert your models in useable 3D game assets
  • Working with the Unity 3D game engine (which is widespread, free-or-low-cost middleware for designing game levels)
  • Creating high-quality textures for games
  • Adapting your models for use in video games
  • Authoring custom levels
  • Modeling low-poly game assets (including cars) and selling them online

Robin’s writing is accessible and easy to follow. He packs a lot of information into each page, but manages to keep the tone friendly and even funny at times. While the book’s in black and white, color versions of the images are available from the publisher’s website.

Posted by Aidan Chopra, SketchUp Evangelist

Head Banner changing trick for blogger

Monday, January 16, 2012


Today i am saying about an interesting thing .Head banner changing trick for blogger
This is a simple blogger hack.when you add this, your blogger blog's header image will change after RELOAD the webpage on your browser.
 Follow the instructions :)

  • Sign In to your blogger account.
  • Goto Design->Edit HTML
  • Find ]]></b:skin> and paste the following code before it.
#header {
background: url("your head image url") no-repeat left bottom;
margin:0;
padding:2px;
}
  • Then copy the below script  and place it inside the <head> tag:

<script type="text/javascript">
var banner= new Array()

banner[0]="1st image url"
banner[1]="2nd image url"
banner[2]="3rd image url"
banner[3]="4th image url"
banner[4]="5th image url"
var random=Math.round(4*Math.random());

document.write("<style>");
document.write("#header {");
document.write(' background:url("' + banner[random] + '") no-repeat left TOP;');
document.write(" }");
document.write("</style>");
</script>
you are done...:)
If any problem with this blogger trick please leave comment,don't hesitate to ask,we are happy to help you:)

What would you 3D print?

Wednesday, January 11, 2012

It’s easy to see why 3D printing has captured the imaginations of modelers around the globe -- it’s captured ours as well! Being able to hold what you’ve modeled in your hand brings a new dimension (no pun intended) of understanding and usefulness to the 3D design process.


We’re curious to learn more about what SketchUp users want out of 3D printing: if you were going to (or already have!) print a SketchUp model, what would it be? Take a couple minutes to let us know.

Posted by Mark Harrison, Community Manager