Repainting Boeing 747

Check this out!!


Virgin Atlantic plane livery time-lapse movie from johnson banks on Vimeo.

This is a time lapse video of a Boeing 747 being repainted with its new livery. In total it takes about four days.



If you find the above link useful, let us know your feedback, it will help us to improve our posting(s). or You can send your feedback linkOblast.
Report Broken Link

Very Interesting Research... Shit-Enter Key

Today i was looking for "SHIFT-ENTER" ASCII Code and i came to know there is no actual assigned ASCII Code for SHIFT key. Hmmm... i goggled it more and more and then i found, SHIFT-ENTER is for Single Space and it uses Char Value "10". For ENTER Key it is value "13".

If you are using Web Application then you can force single-spacing when you hit return in a content-editable element by seeding it with an inner DIV like so:

"< div style="border: 1px solid;" contenteditable="true" >< div>< / div>
< / div>
"

Very Very interesting. Hope above solution works for you.

Happy Coding...

If you find the above link useful, let us know your feedback, it will help us to improve our posting(s). or You can send your feedback linkOblast.
Report Broken Link

BugTracker.NET

abstracts:



BugTracker.NET is a free, open-source, web-based bug
tracker
or customer support issue
tracker
written using ASP.NET,
C#, and Microsoft SQL Server (or its free cousin, SQL Server Express).

It is in daily use by thousands of development and customer support
teams around the world.



BugTracker.NET is easy to install and learn how to use.
When you first install it, it is very simple and you can start using it
right away. Later, you can change its configuration to handle your
needs if they are more complex.


Read what others
have written
about BugTracker.NET.


Try a BugTracker.NET demo. The demo
shows just one possible way BugTracker.NET can be configured, so even if
the demo isn't exactly what you are looking for, you should still
download BugTracker.NET and see if you can configure it to meet your
needs.




If BugTracker.NET doesn't fit your needs, see some

comparisons of other issue tracking systems
.

Surface Area Configuration tool in SQL Server 2008

I installed SQL server 2008 and tried to find "Surface Area Configuration Tool".
I couldn't find that easily and Googled for that.

I got a good link that says where is the tool in sql server 2008.

Click here to visit the original site.

A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified) (Microsoft SQL Server, Error: -1)

I have recently installed Microsoft SQL Server 2008 in my PC having Windows 7 Ultimate x86 as Operating system.

When I tried to connect my SQL server from remote computer, it gave me the below error message:

 A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified) (Microsoft SQL Server, Error: -1)
After spending a whole day for proper solution, I couldn't find any.

Finally as an alternative I got a silly solution. Just Disable OR Turned Off Windows Firewall and in my surprise, I was able to connect.

I am not satisfied with this alternative and still searching for the formal solution. Once I have it, I will post it here for all.


If you find the above link useful, let us know your feedback, it will help us to improve our posting(s). or You can send your feedback linkOblast.
Report Broken Link

The best Toolbar

I have used many toolbars in different browsers, but I have found Google Toolbar as the most useful browser.
I use most of the google application and it becomes handy to access them.

in reference to: Get started with Google Toolbar : Install or uninstall - Toolbar Help (view on Google Sidewiki)

Happy Independence Day




Happy Independence Day to all Indian Visitors...!

SharePoint Server 2010 : Technical diagrams

May of us like to have more 'n' more details for SharePoint.

I've visited Microsoft's site and found very useful information about SharePoint 2010.

Abstract:

Many of these resources are visual representations of recommended
solutions. They include poster-sized documents available in formats
including Microsoft Office Visio 2007 or Microsoft Visio 2010 files
(.vsd), PDF files, and XPS files. You might need extra software to view
these files. See the following table for information about opening these
files.


Click here to visit the original site




How To: SharePoint 2010 - Configure PDF iFilter for search server 2010

abstracts:

I have recently installed and configured Search Server 2010 Express
on my VMware machine for evaluation purposes. Once I configured basic
steps to configure Search Centre site and necessary settings, I decided
to install PDF iFilter (x64). Last year, I posted similar article on how
to install and configure PDF iFilter for SharePoint 2007 (64bit), which
can be found at: http://www.mossgurus.com/adnan/Lists/Posts/Post.aspx?ID=9.
I didn't find any single decent article on Google, which clearly
explain the process of installing and configuring PDF iFilter for
SharePoint Server 2010 or Search Server 2010 Express edition. So I
decided to follow my own article and I was hoping that it should be
straight forward to install and configure PDF iFilter for SharePoint
2010. Apart from updating the registry settings required to update GUID
for .pdf, remaining steps are similar.


Follow steps below to install and configure PDF iFilter on SharePoint
Server 2010 or Search Server Express 2010.


  1. Install PDF iFilter 9.0 (64 bit) from http://www.adobe.com/support/downloads/detail.jsp?ftpID=4025
  2. Download PDF icon file from pdf16.gif
    and copy at C:\Program Files\Common Files\Microsoft Shared\Web Server
    Extensions\14\TEMPLATE\IMAGES\

  3. Add the following entry in docIcon.xml file, which can be found at:
    C:\Program Files\Common Files\Microsoft Shared\Web Server
    Extensions\14\TEMPLATE\XML

    <Mapping Key="pdf" Value="pdf16.gif" />

  4. Add pdf file type on the Manage File Type page under Search Service
    Application.
  5. Open registry by executing regedit on the Start
    --> Run.

  6. Navigate to the following location:

    \\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office
    Server\14.0\Search\Setup\ContentIndexCommon\Filters\Extension

  7. Right-click Extension, a menu will appear.

  8. Click New--> Key to create a new key for .pdf.
    See screen shot below.

Click here to visit the original link.

How to : Use Visual Studio TODO Comments

There are many type of comments available in Visual Studio, but have you ever seen the TODO comment?

abstract:

You have many tasks to remember, and you want to track them in Visual
Studio with TODO comments. These comments can help get you more
organized about your projects. You want to get the interface set up and
gain a way to list your to-do items in a central place. Here we look at
ways you can use TODO comments in your C# programs.

Using TODO

TODO
comments allow you to tell Visual Studio to maintain a central list of
tasks, which it reads from many different places in your code. The Task
List is a panel or floating window in Visual Studio that will display
all the TODO comments in your project. To open the list, go to View menu
-> Task List.


Some example TODO comments

You probably have a lot of code
that needs a lot of work. If you don't, then you need to write code that
needs a lot of work. Here are some examples of TODO lines that
Visual Studio 2008 will notice and put into its special Task Pane.

<i>//todo: fix dialog windows
//TODO: work on SQLCE guide
// Todo new screenshot</i>

Description of example. This
will appear in your tasks pane as a separate task. Note that you have
some flexibility with these tokens. The strings "todo", "TODO", and
"TODO" all work equally well—Visual Studio's parser gives you a little
bit of freedom.

More comments

Here we make a more general
point about comments in the C# programming language. Comments are used
only at the source level of your program, not the compiled version of
the program. The TODO comments noted here are parsed by Visual Studio in
the IDE. You can find more about how comments relate to C# programs
here.


Click here to read  the original article on TODO Comment