Tuesday, September 18, 2012

Change Animated favicon to Blogger blog

Change Animated favicon to Blogger blog

Change favicon of bloggerNetOopsblog protected image
Changing the favicon of your blog is a simple trick.By default blogger puts the blogger orange color logo to favicon.This can change to your blog logo.
Favicon appears next to the URL or title in the browser.If you have a logo of your blog then you can simply upload to blogger.Else there are many sites providing free favicon generator.See Netoops blog favicon on the top your browser.
Follow the instructions below.





  • Go to Design->Page Elements
  • You can see a small bar with blogger icon and a link EDIT click it.
NetOopsblog protected image
  •  Then select your blog's logo by clicking Browse and click on Save.
NetOopsblog protected image

Insert Animated Favicon

You can also insert Animated gif favicon.
  • Go to Favicon Generator
  • Upload your blog's logo and give scrolling text then click Generate favicon
NetOopsblog protected image

 It will generate your animated favicon,right click on the icon shows there and Save it.Then upload to root of website or upload to free image uploading sites like tinypic you will get the link to image from there.
  • Go to Design->Edit HTML
  • Copy the following inside <head>
<link href='PLACE YOUR FAVICON LINK HERE' rel='icon' type='image/gif'/>
  • Then click save.
If any problem with this please inform via comment.Feel free to ask.

Add Page Peel effect with jQuery & CSS to Blogger

Add Page Peel effect with jQuery & CSS to Blogger

page peel for bloggerNetOopsblog protected image
You may saw this awesome trick used by many professional and other Websites/Blogs.This Page peel is used to Show ads ,this page peel attract Blog visitors and they may have the tendency to click on ad and your earnings increases.Also this page peel can be used to increase your Subscribers.Here I am going to show you how to add a page peel trick to Blogger blog.





Step 1: Add jQuery plugin (if your blog have a jquery plugin,ignore this step)

  • Copy the below code inside <head>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js' type='text/javascript'/>

Add page peel effect to blogger blog 

Step 2 : 
  • Go to Design->Edit HTML
  • Copy and paste the below code above </head>
<style type='text/css'>
img { behavior: url(iepngfix.htc) }
#pageflip {
position: absolute;
right: 0; top: 0;
float: right;
}
#pageflip img {
width: 50px; height: 52px;
z-index: 99;
position: absolute;
right: 0; top: 0;
-ms-interpolation-mode: bicubic;
}
#pageflip .back-img {
width: 50px; height: 50px;
overflow: hidden;
position: absolute;
right: 0; top: 0;z-index:98;
background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgzVATtx_4UNUT3PnqmpZk8NoWKFu1SCrHOhWZa2lOKRv9Nrt0tdlI2H4bogi0GBzwEi_gVYXIlxiY5uc54NzOiR9O2iTaTwWi0o6zXMI1rHtk_adO2XscSXznoy-aruXwYeETTPfnol1w/s200/rss+netoops+blog+page+peel.png) no-repeat right top #fff;
}
</style><a href='http://netoopsblog.blogspot.com'><img src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7RZg74DmL34XuPqo61DAqqvB1NxbF4E4WIv3WJvVBt6vQm-VxPJPJYELos934yeDUDZfTUtQDqzkHJzif60s5RYArOtk8n1wEy-rHU2G8ZNHHU1xk4lDir7R7UJ-tck1Te3R5S8qu7J4/s1600/1x1juice.png'/></a><script type='text/javascript'>
$(document).ready(function(){
//Page Flip on hover
$(&quot;#pageflip&quot;).hover(function() {
$(&quot;#pageflip img , .back-img&quot;).stop()
    .animate({
    width: &#39;307px&#39;,
    height: &#39;319px&#39;
    }, 500);
    } , function() {
    $(&quot;#pageflip img&quot;).stop()
    .animate({
    width: &#39;50px&#39;,
    height: &#39;52px&#39;
    }, 220);
$(&quot;.back-img&quot;).stop()
    .animate({
    width: &#39;50px&#39;,
    height: &#39;50px&#39;
    }, 200);
});
});
</script>
Step 3:
<div id='pageflip'>
<a href=' http://feeds.feedburner.com/NetOopsBlogTips '><img alt='netoops blog' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjDzQRSU6Z6PHaByEy8zkfDb9FPUyZzPh7733XtEE4jHiSEgL-bQFwdBqkhCTD3vbRCaIoenWrGBGgSPS4o6AT3iKcqv75pa981JonmvMde9LrjBJe8Qxd7CO29WtYQBqEM9MyH9shcHbQf/s1600/page_flip.png'/></a>
<div class='back-img'/>
</div>
Change can the RED highlighted text with url image url that you want,else leave it default(needn't change)
Change the BLUE highlighted text with your feed URL or place your advertisement
  •  Save the Template NetOopsblog protected image
You are done..! If any problem persists please do comment.

Remove Threaded Comments in Blogger Easily

Remove Threaded Comments in Blogger Easily

remove threaded comments bloggerNetOopsblog protected image
This is a simple article explaining How to remove Blogger 's New Threaded commenting system easily.There are some problems with it,Many users report that when a user click on post link,it takes control to the bottom of the page(to the comment section).Would you think that Threaded commenting system is not Good for Blog? Then you can remove it.
I am not going to say too much about Threaded commenting System,because i hope you know about it.
Follow the instructions below carefully.


Before Editing Template,you must Backup your template(How to Backup Template?)

  • Go to Design-> Edit HTML
  • Tick on Check box  Expanded Widget Templates
  • Find the code data:post.showThreadedComments easily using ctrl+F
  • You will found code snippet like this
<b:if cond='data:post.showThreadedComments'>
            <b:include data='post' name='threaded_comments'/>
          <b:else/>
            <b:include data='post' name='comments'/>
          </b:if>
        </b:if>
        <b:if cond='data:blog.pageType == &quot;item&quot;'>
          <b:if cond='data:post.showThreadedComments'>
            <b:include data='post' name='threaded_comments'/>
          <b:else/>
            <b:include data='post' name='comments'/>
          </b:if>
        </b:if>
  • Replace it carefully with the following code [Note: You will find the above code twice,replace it twice]
<b:include data='post' name='comments'/>
          </b:if>
               <b:if cond='data:blog.pageType == &quot;item&quot;'>
                     <b:include data='post' name='comments'/>
      
        </b:if>
  • Save it ,
No longer Threaded commenting appear on your blog.Normal commenting will back.
Cheers..!

Saturday, September 15, 2012

How to Remove Shutdown and Restart Buttons in Windows 7

How to Remove Shutdown and Restart Buttons in Windows 7


This is a mini tutorial which shows about the method to remove Shutdown Button and Restart Button from Windows 7. This is useful when you dont want that anyone will turnoff your Computer. I have used this Step and I shutdown using Task Manager..

Here are the Steps to Do so..
Step 1- Click on Start and search for gpedit.msc and hit enter .

Step 2- Navigate through User Configuration ->Administrative templates -> Start Menu and Task bar and double click on Remove and prevent access to the Shut down ,restart ,sleep and hibernate commands.


Step 3- Change the settings from not configured to enabled and click OK.


Step 4 – Thats it. Now your ShutDown , Restart , Sleep and Hibernate has been removed .
To get back the buttons follow Step 1, Step 2 and in Step 3 change the Option to Not Configured and click on Ok.
................................................................................
Enjoy...(Y)
And feel free to comment...

How to make your Own EXE file

How to make your Own EXE file

This is a tutorial where you can make your Own EXE Setup file of your Own. You can add as much number of Files you want and make an EXE File and send it to any friend so that he can extract and use the Application. You can create a Setup.exe and distibute Games, Software, Images and anything you want in a Single Executable file , rather than sending in Multiple File Formats.

Here is the Step by Step Tutorial of Making your own EXE file Easily.

1. Navigate to the “Start” menu and select “Run.” Type “iexpress” (without quotes) and click “OK.” The IExpress Wizard will appear.



2. Select the “Create new Self Extraction Directive file” radio button and click “Next.” The Package Purpose dialog opens.



3. Select the “Extract files and run an installation command” radio button to create a package that will install a program after it extracts its files, or select “Extract files only” to create a package that simply compresses its contents. Click “Next.” The “Package Title” dialog opens.



4. Type in a title of the package into the text box. This will display the title on every dialog box the user sees when she extracts files from your Setup file. Click “Next.” The Confirmation Prompt displays.



5. Select “No prompt” to skip confirming with the user that she wants to install your package, or select “Prompt user with:” and enter a message into the text box, such as “Are you sure?” Click “Next.”



6. Select “Do not display a license” to skip showing the user a license agreement she must agree to before installation, or select “Display a license” to show one and then click on “Browse” to find a text file that will display in a text window when the user installs the package. Click “Next.”



7. Click “Add” and navigate the dialog window that appears to the files you want to include in your package. Continue doing this until you have added all of the files you want to include and then click “Next.”



8. Select an installation program from the drop-down menu that appears if you selected to run an installation command and then click “Next.” Otherwise, skip this step.



9. Leave the default option selected in the “Show window” screen. Click “Next.”



10. Click the “Display message” option and type a message, such as “Extraction Complete!” to show the user when the package finishes installing her files. Click “Next.”



11. Type “Setup.exe” into the text box to name your package and select a location to save the file to, using the “Browse” button. Click “Next.”




12. Leave the default options selected in the “Configure restart” screen if you chose to use an installation command, then click “Next.” Otherwise, skip this step.

13. Select “Save Self Extraction Directive (SED) file,” which is a text file that contains a record of the package you are creating, or select “Don’t save” to not do this. Click “Next.”

14. Click “Next” on the “Create package” screen to create your Setup.exe file. Click “Finish” to close the IExpress Wizard.
Finally you are your Own EXE is done . Save it and send it to your Friends to Exteact the Files inside it.
................................................................................
Enjoy...(Y)
And feel free to comment...

How to Jailbreak A5 iDevices using Command line in Windows

How to Jailbreak A5 iDevices using Command line in Windows

A5 jailbreak Absinthe now officially released for windows but still some geek users likes to Jailbreak their devices using Command Line Interface (CLI) method. Even i Jailbroke my iPad 2 by this method yesterday midnight when Jailbreak for Windows is not released here i give you step by step instructions to jailbreak A5 devices using CLI Method. Jailbreaking using CLI method is easy but not as easy comparing with Absinthe for windows. Dev. Team recommend it only for advanced users but it’s not that much dangerous as you think.
iPhone 4s and Ipad 2 Jailbreak

Step 1:

Make sure your iDevice is backed up using iTunes & Passcode is deactivated

Step 2:

Download Absinthe CLI files (Cinject) from here

Step 3:

Connect your iDevice to your PC

Step 4:

Extract the downloaded zip file to any folder.
(I extracted it to my user folder C:\users\yourusername & renamed that folder to cinject for easy typing)

Step 5:

Launch Command line (CMD) on your windows machine.
Press Win key + R & type “CMD” & press enter

Step 6:

Now CD Command line to “cinject” folder
Type
CD C:\users\yourusername\cinject
And press enter

Step 7:

Now type cinject & press enter to make sure that “cinject” is in the selected folder and working

Step 8:
Your command line will look like this
C:\Users\Shyam\cinject>cinject
Usage: cinject [ options ]
Corona injector CLI v0.4.3
Copyright (C) 2011-2012 by iPhone Dev. Team
With exploit work by: @pod2g, @planetbeing, @saurik, @pimskeks, @p0sixninja, @Mu
scleNerd, and @xvolks

Options:

Configuration profiles:
-l           List current profiles
-i           Install profile
-r          [] Remove all profiles, or profiles matching pattern

AFC transfers:
-a         Alternative afc service to use (2 is available after jailbreak)
-u …    Upload file(s) via afc (add final “dir=dirname” to specify which afc directory)
-d []     Show list of files in afc directory
-X        Delete afc directory or file

ROP assistance:
-s          Compute slide
-e          Erase existing crash logs
-g          Get diagnostics

Backups and restores:

-B         Create backup
-R         Restore from backup
-L         List contents of an MBDB file
-M        Modify the ipsec.plist on device
-p         Modify the preferences.plist (requires -f too)
-f          File to use with -p
-H        Hide media files
-U        Unhide media files

Chained operations:
-j         Jailbreak device using given payloads directory (ADVANCED use only!)

Other:
-w        Watch syslog
-v         Debug verbosity level
-h         This help message

C:\Users\Shyam\cinject>
Step 9:
Now type the following command without quotes & press enter
cinject -i payloads/jailbreak.mobileconfig
This will install an profile in your iDevice.

Step 10:

Now  you will see dialog like this in your iDevice.
Now select “Install
Step 9

Now select “Install Now” and Install the Profile.

Step 11:
Now select next without entering any password.

now VPN profile for jailbreak will be installed & you can close settings & return to command line

Step 12:
Now enter the following command without quotes in CMD
cinject -j payloads
Your CMD will look like this
C:\Users\Shyam\cinject>cinject -j payloads

Finding slide…

Generating ROP…

ROP was generated

Uploaded corona/payload

Uploaded corona/payload-vars

Uploaded corona/racoon-exploit.conf

Uploaded corona/vnimage.clean

Uploaded corona/vnimage.overflow

Uploaded corona/vnimage.payload

Uploaded corona/corona.tgz

Uploaded corona/cleanup

Uploaded corona/com.apple.ipsec.plist

Uploaded corona/Cydia.tgz

Uploaded corona/filemover

Uploaded corona/filemover.plist

Uploaded corona/gzip

Uploaded corona/jailbreak

Uploaded corona/jailbreak.mobileconfig

Uploaded corona/jb.plist

Uploaded corona/racoon-exploit-bootstrap.conf

Uploaded corona/tar

Creating backup…

72 files backed up

Adding custom com.apple.ipsec.plist to backup

Restoring…

1 files restored

Now use “cinject -w” to start watching the syslog.

Then toggle VPN on and look for the “pod2g is in da house!” syslog message.
This actually takes an backup of your .plist files and modify some values and restore it plus inject some files for jailbreak.

Some users will stuck in backup those users “Erase All Content and Settings” setup like new iPad & after jailbreak restore backup with iTunes

Step 13:
Now enter following code in command line without quotes
cinject -w
Now your command line will look like matrix wallpaper, ignore everything.

Step 14:
At the end when it stops, Go to VPN Settings in your iDevice and toggle VPN ON and look for syslog message pod2g is in da house!. After that your iDevice will restart and  you will see cydia on screen. Launch Cydia and enjoy your Jailbroken iPhone 4S &and iPad 2.
Cydia on ipad2

For Advanced Users:

  • cinject -i payloads/jailbreak.mobileconfig
  • cinject -j payloads
  • cinject -w
  • toggle VPN on
................................................................................
Enjoy...(Y)
And feel free to comment...

How to Install Windows 7 on MacBook Pro Using Boot Camp

How to Install Windows 7 on MacBook Pro Using Boot Camp

Somewhat similar to the Using Boot Camp to install Vista on your Mac walkthrough, this tutorial will take you every step of the way through installing Microsoft Windows 7 on your Intel Mac (running 10.5 or later), using Boot Camp.
Note: if you’d rather not dual boot OS X and Windows 7, you can always install Windows 7 in a virtual environment using Parallels Desktop 6.0 for Mac.


To install Windows 7 on your Mac using Boot Camp you will need the following:

All firmware updates installed on your Mac (use Apple Button -> Software Update… to check)

A Windows 7 installation DVD

Your OS X Leopard or Snow Leopard installation DVD

Around 30GB of empty hard drive space on your Mac. You can probably get away allocating less than 30GB to Windows 7, but it will leave very little room to install anything in Windows.

An hour if all goes well, up to 5 hours if not

Though not absolutely required, it’s a VERY good idea to have a complete and up to date Time Machine backup of OS X – it really came in handy for me. Because part of the process involves partitioning your drive, there’s always the distinct chance something will go wrong and everything will be wiped out.

Patience, possibly a great deal of it. Having a book handy will also help kill time during the partitioning, installing etc).

Installing Windows 7 via Boot Camp

Here goes. First thing – close absolutely every open program you can. That includes those things running in the Apple Menu that you always forget about. Don’t worry about killing the Dock or Dashboard – having those running is fine.

Now open a Finder and navigate to Applications -> Utilities and double-click Boot Camp Assistant.

finder displaying the boot camp utility

Click Continue on the initial Introduction screen. Ignore the fact that it doesn’t mention Windows 7 as a possible OS to install.

Now you have to decide how much space you want to allocate to Windows 7. You might be able to get away with going as low as 10GB, but I would highly advise against it. You’ll have almost no space left over to install software, and your page file in Windows might cause frequent crashes. I opted for 20GB, which left me with just a bit over 16GB to use after installing Windows 7. To change the amount of space to dedicate to Windows 7, click the small divider between Mac OS X and Windows, and drag it to the left.



Once you’ve determined how much space you want to allocate to Windows 7, click the Partition button.



The partitioning itself doesn’t take particularly long. If you receive an error, proceed to step 10 of the “How to install Vista with Boot Camp” tutorial. It provides all the troubleshooting info you need to resolve partitioning issues. Once you’ve cleared up any problems, or if everything just goes smoothly, proceed with the next step in this tutorial.



Once completed you’ll notice a new BOOTCAMP drive on your desktop.



Now insert your Windows 7 DVD and click the Start Installation button.



Your Mac will restart, and Windows 7 will boot. You’ll be prompted with a window asking you which partition you want to install Windows on. Select the one with BOOTCAMP in the Name column. Selecting anything else may wipe out OS X or cause serious problems. Then select the Drive options (advanced) link.



With the BOOTCAMP volume still selected, click the Format link.



Click OK



And Windows 7 will begin to install. It’s a fairly boring process, so you may want to grab yourself a cup of coffee or your beverage of choice. But don’t go too far away, because when your system reboots, you’ll need to remove the Windows 7 DVD.



With the Windows 7 DVD removed, your Mac will automatically boot back into Windows 7, and the installation will complete. You’ll be prompted to select your language, keyboard layout etc.

The rest of the Windows 7 installation process is very straight forward. Once the installation has completed and your Mac has restarted again, you’ll be able to use Windows 7.

WiFi will work immediately (no drivers to install) so connect to the Internet. Windows 7 will then begin to download updates, including the proper video card driver. Let it do its thing.



Once completed, you’ll be prompted to reboot yet again. Do so.



Once Windows 7 boots back up again, you’ll notice the resolution is much better, and you can enable the advanced graphics features.



But if you check for sound, you’ll notice there are no sound drivers installed.



Insert your OS X Leopard (or Snow Leopard) DVD. When prompted, select Run setup.exe. Note: If you’re using Snow Leopard and a message pops up saying “Remote Install Mac OS X”, close that window and eject the CD. Put the CD in again and this time select “Open folder to view files”, navigate to the Bootcamp folder, and run setup.exe.



The Boot Camp installer will launch. Click Next to begin.



Select I accept the terms in the license agreement and then click Next again.



Make sure that Apple Software Update for Windows is checked, and click Install.



The Boot Camp installer will do its thing, and install all the required drivers.


Notifications will pop up with each driver that gets installed.


 
Once completed, click Finish.



And yet again you’ll be prompted to reboot. Remove your OS X Leopard DVD from the drive, and click Yes to restart.



At this point most of the hardware on your Mac should be working in Windows. However, some iMacs and MacBook Pro’s will have to update to the 3.1 version of Boot Camp for Windows.

That’s it, you’re done! When your Mac boots, hold down the Option key to select which Operating System you want to boot into.

do you want to boot into OS X or Windows I choose OS X
................................................................................
Enjoy...(Y)
And feel free to comment...

Twitter Delicious Facebook Digg Stumbleupon Favorites More

 
Design by Free WordPress Themes | Bloggerized by Lasantha - Premium Blogger Themes | Web Hosting Coupons