Tag Cloud

Blogumulus by Roy Tanck and Amanda Fazani

Adding background or header image to blogger or blogspot is easy.
Just follow the following steps.

  1. You can upload the image file to free host site like http://photobucket.com/
  2. Get the Direct Link of uploaded image to add
  3. Log in to Blogger
  4. Go to Template then Edit HTML
  5. Insert or Change image link URL wherever you want to add

in my case

#header-inner {border:1px solid #5d5d5e; background-position:center; margin:15px auto 0; background-image: url("http://i768.photobucket.com/albums/xx325/doyoung777/1.jpg"); background-position: left; width: 939px; min-height: 421px;_ height: 421px; background-repeat: no-repeat;}

I just got to know today that you can change the color themes of your MS Office 2007.
There are 3 color themes.

  • Blue (default)

  • Black

  • Silver

Here's how you do it.
  • Open up any Office 2007 application.
  • Click on the Office Button.

  • Click on the option button. The option box will be open.


  • Click on the Popular tab(기본설정) and you'll see the color scheme selector.
  • Change your color scheme for Office 2007 and then click OK.
  • The selected color will be applied to Office 2007 (word, excel, powerpoint, outlook).

1. Setting Environment Variables




- Add the path to related Intel IPP files to the existing list, for example:
Select LIB and then type in the directory for the Intel IPP stub libraries (default isC:\Program Files\Intel\IPP\5.3\ia32\stublib),
Select INCLUDE and then type in the directory for the Intel IPP header files(default is C:\Program Files\Intel\IPP\5.3\ia32\include),
Select PATH and then type in the directory for the Intel IPP binaries (default isC:\Program Files\Intel\IPP\5.3\ia32\bin).
2. Configuring Microsoft Visual Studio Environment



- Select Tools > Options > Projects > VC++ Directories
select Include Files, and then type in the directory for the Intel IPP include files (for example, default is:C:\Program Files\Intel\IPP\5.3\ia32\include),
select Library Files, and then type in the directory for the Intel IPP library files (for example, default is: C:\ProgramFiles\Intel\IPP\5.3\ia32\stublib orC:\Program\Files\Intel\IPP\5.3\ia32\lib),
select Executable Files and then type in the directory for the Intel IPP executable files (for example, default is:C:\Program Files\Intel\IPP\5.3\ia32\bin),



- Select Project > Properties > Linker > Input
in the Additional Dependencies line add the libraries you wish to link to (for example, ipps.lib or ippsmerged.lib)
3. Testing Simple Example Program
#include
#include
int main()
{
const int SIZE = 256;
Ipp8u pSrc[SIZE], pDst[SIZE];
int i;
for(i=0;i"<"size;i++)
pSrc[i] = (Ipp8u)i;
ippsCopy_8u(pSrc,pDst, SIZE);
printf("pDst[%d] = %d\n", SIZE-1, pDst[SIZE-1]);
return 0;
}