FREE!!! 10$ Discount Coupon For Hostgator: GETDISCTEN

AutoBlog Samurai Pro v2.2 (Full Version) - Free Download

This Brand New Breakthrough Software Technology Integrates Seamlessly With Blogger and Wordpress To Generate Multiple Automated and Reliable Income Streams.

SENukeX v2.2.22 - Best SEO Tool 2011 (Full Version)

SEnukeX is one of the most advanced link building tools ever developed in the internet marketing field. It is the version 2 of the hugely popular senuke tool.

ESET NOD32 Antivirus and Smart Security 5.0.93.0 Final

ESET NOD32 Antivirus provides reliable, advanced protection against threats endangering your PC. Viruses, worms, Trojans and other trouble now can not do any harm to information valuable to you.

Free Web Hosting with Control Panel (cPanel)

The one and only free web hosting company that has proof for "99% uptime guarantee is offering a unique feature that no one else can give - free web hosting account with cPanel control panel.

Opera Mini Mod 4.21 Beta 13 (20453) English + Handler Versions

Opera Mini 4 delivers a fast, impressively advanced user-friendly experience with this upgrade to its mobile phone browser.

Showing posts with label Tutorial. Show all posts
Showing posts with label Tutorial. Show all posts

05 December, 2011

PHP Image Processing Tutorial

PHP Image Processing Tutorial

English | 1280x720 | H264 | 15fps 519kbps | AAC 96kbps | 511MB
Genre: eLearning

PHP Image Resize Function Tutorial jpg gif png Size On the Fly Master PHP Image Processing with Adam Khoury in this Video Textbook Series.

Sceenshot:
PHP Image Processing Tutorial

Download (FileSonic):

http://www.filesonic.com/file/4069490115/PHP.Image.Processing.part1.rar
http://www.filesonic.com/file/4069491485/PHP.Image.Processing.part2.rar
http://www.filesonic.com/file/4069482995/PHP.Image.Processing.part3.rar


Mirror 1 (Filejungle):

http://www.filejungle.com/f/Y6N3AF/PHP.Image.Processing.part1.rar
http://www.filejungle.com/f/QFY4Pt/PHP.Image.Processing.part2.rar
http://www.filejungle.com/f/swtmVG/PHP.Image.Processing.part3.rar


Mirror 2 (Uploadstation):

http://www.uploadstation.com/file/3Un2CuD/PHP.Image.Processing.part1.rar
http://www.uploadstation.com/file/Qcdm3ky/PHP.Image.Processing.part2.rar
http://www.uploadstation.com/file/gN83XfH/PHP.Image.Processing.part3.rar    

27 November, 2011

[Tutorial] How to add Label Cloud to Blogger


Here is the code and setup information to use the Label Cloud in New Blogger.

First you obviously have to have a blog on New Blogger, and you MUST be using the layouts templates, (this isn't available for classic templates, or FTP published blogs ) and you must have some posts labeled already. (There needs to be at least ONE label with more than ONE entry or the scripts hit a bug - so have at least one label with more than one entry before starting).

Make sure you backup your template before making any changes!
Log into Blogger and go to your layouts section. On the 'Page Elements' setup page
make sure you have a label widget already installed where you want it (it can be moved around
later).

Then go to the Edit HTML settings and leave the widgets NOT exapanded.
It will make things easier to deal with.
Now the code comes in 3 parts. A section for the stylesheet, a configurations section, and then the actual widget itself.

The first part to put in is the stylesheet section. The following code needs to be copied
and inserted into your stylesheet, which in the layouts is marked out by the <b:skin> tags.
Easiest thing to do is find the closing skin tag


]]></b:skin>


and place the code right BEFORE that.
Here it is, copy and paste without modification right now. I'll explain what can be tweaked
later.

/* Label Cloud Styles*/
#labelCloud {text-align:center;font-family:arial,sans-serif;}
#labelCloud .label-cloud li{display:inline;background-image:none !important;padding:0 5px;margin:0;vertical-align:baseline !important;border:0 !important;}
#labelCloud ul{list-style-type:none;margin:0 auto;padding:0;}
#labelCloud a img{border:0;display:inline;margin:0 0 0 3px;padding:0}
#labelCloud a{text-decoration:none}
#labelCloud a:hover{text-decoration:underline}
#labelCloud li a{}
#labelCloud .label-cloud {}
#labelCloud .label-count {padding-left:0.2em;font-size:9px;color:#000}
#labelCloud .label-cloud li:before{content:"" !important}

This next section is the configuration section for the Cloud. It also goes in the head of the template, but outside of the stylesheet part. Easiest thing to do again is to find the closing stylesheet tag

]]></b:skin>

But this time place the code right AFTER that line, but BEFORE the </head> tag. Here it is.

<script type='text/javascript'>// Label Cloud User Variables
var cloudMin = 1;
var maxFontSize = 20;
var maxColor = [0,0,255];
var minFontSize = 10;
var minColor = [0,0,0];
var lcShowCount = false;
All of these settings can be changed but I'll explain them in a moment. The defaults will work for now.


Now the widget itself. Scroll down and find the label widget in your sidebar. It should look
something like this.


<b:widget id='Label1' locked='false' title='Labels' type='Label'/>


Copy the following code (from beginning widget tag to ending widget tag) and replace
the line above with it.

<b:widget id='Label1' locked='false' title='Label Cloud' type='Label'>
<b:includable id='main'>
  <b:if cond='data:title'>
    <h2><data:title/></h2>
  </b:if>

  <div class='widget-content'>
  <div id='labelCloud'/>
<script type='text/javascript'>

// Don't change anything past this point -----------------
// Cloud function s() ripped from del.icio.us
function s(a,b,i,x){
      if(a&gt;b){
          var m=(a-b)/Math.log(x),v=a-Math.floor(Math.log(i)*m)
             }
      else{
          var m=(b-a)/Math.log(x),v=Math.floor(Math.log(i)*m+a)
          }
      return v
   }

var c=[];
var labelCount = new Array();
var ts = new Object;
<b:loop values='data:labels' var='label'>
var theName = &quot;<data:label.name/>&quot;;
ts[theName] = <data:label.count/>;
</b:loop>

for (t in ts){
     if (!labelCount[ts[t]]){
           labelCount[ts[t]] = new Array(ts[t])
           }
        }
var ta=cloudMin-1;
tz = labelCount.length - cloudMin;
lc2 = document.getElementById('labelCloud');
ul = document.createElement('ul');
ul.className = 'label-cloud';
for(var t in ts){
    if(ts[t] &lt; cloudMin){
       continue;
       }
    for (var i=0;3 &gt; i;i++) {
             c[i]=s(minColor[i],maxColor[i],ts[t]-ta,tz)
              }    
         var fs = s(minFontSize,maxFontSize,ts[t]-ta,tz);
         li = document.createElement('li');
         li.style.fontSize = fs+'px';
         li.style.lineHeight = '1';
         a = document.createElement('a');
         a.title = ts[t]+' Posts in '+t;
         a.style.color = 'rgb('+c[0]+','+c[1]+','+c[2]+')';
         a.href = '/search/label/'+encodeURIComponent(t);
         if (lcShowCount){
             span = document.createElement('span');
             span.innerHTML = '('+ts[t]+') ';
             span.className = 'label-count';
             a.appendChild(document.createTextNode(t));
             li.appendChild(a);
             li.appendChild(span);
             }
          else {
             a.appendChild(document.createTextNode(t));
             li.appendChild(a);
             }
         ul.appendChild(li);
         abnk = document.createTextNode(' ');
         ul.appendChild(abnk);
    }
  lc2.appendChild(ul);  
</script>

<noscript>
    <ul>
    <b:loop values='data:labels' var='label'>
      <li>
        <b:if cond='data:blog.url == data:label.url'>
          <data:label.name/>
        <b:else/>
          <a expr:href='data:label.url'><data:label.name/></a>
        </b:if>
        (<data:label.count/>)
      </li>
    </b:loop>
    </ul>
</noscript>
    <b:include name='quickedit'/>
  </div>

</b:includable>
</b:widget>

Now if all has gone well, and you have posts already labeled, then if you preview the blog you should see some form of the Cloud appearing. If it doesn't appear, then something went wrong. You should probably back out and try it again from the start.

Update : I've found 2 things to check for first if the label cloud isn't showing.  First make sure that at least one of your labels has more than one entry. A bug in the script causes it to fail when all the labels have only one entry.(As soon as any label has more than one entry, then it should be ok from then on) Also, make sure that none of your labels contain quote marks " .  Apostrophes or single ticks ' are ok. ------

Most likely the cloud with it's default settings won't be what you ultimately want. But all
the colors and sizes are configurable to match your tastes. If the cloud is appearing in preview
then you can go about changing some of the variables so they suit.


The settings in the Variables section will be where you make most of your adjustments. Here I'll explain what each setting does.

var cloudMin= 1;

This setting you can use to limit the number of labels shown (for example if you have a lot of labels). Leave the setting at 1 to show ALL labels.  If you enter in a higher number, then only labels that have at least that number of entries will appear in the cloud.

var maxFontSize = 20;
var maxColor = [0,0,255];
var minFontSize = 10;
var minColor = [0,0,0];
var lcShowCount = false;
The lines for:

maxFontSize
maxColor
do what you may think they do. The first one sets the size (in pixels) of the label with the
most amount entries. The maxColor sets the color of that entry (in RGB format). Similiar with
the next two

minFontSize
minColor

Just these are for the label with the least amount of entries. Again the size is in pixels,
the color is in RGB format. Any labels between the two will get their color/sizes based on
how many labels they are, and where their entry count falls, giving the much desired cloud
effect.

From my experimenting, there are many factors that make up a pleasant looking cloud. From
color/size choice, to the number of actual labels, to how well dispersed the entries are amoung
the labels. 3 Labels don't make a good cloud as there isn't much to work with. You just have
to experiment around to see what looks good with your setup.

IMPORTANT, when change the color settings, Keep them in the format supplied. In between the [] and the numbers separated by commas. The default colors are BLUE for the max and BLACK for the min.

You can select any valid RGB color combination. If you don't know what RGB colors are, don't
worry. It's just a way of defining a color. You can use many charts on the Internet to
get the correct RGB value for the color you want to try. Here's one that is fairly good.

RGB Color Code Chart

Remember, if you get the 3 sets of numbers to enter them in correctly. Inside the [ ] separated by
commas.

Also experiment with different font sizes. Again it depends on how many entries, how dispersed
they are, and how much room for the cloud is available as to what looks good.

The last variable there is

lcShowCount

This can either be false (default) or true. All this does is turn off/on the post count displayed
next to the label. Usually in a 'traditional' cloud the count isn't used. But if you go to a
'flat' listing then it's sometimes useful to turn it on.

Now to the CSS section. Most people won't need to tweak these much, and it's not necessary to
understand what all those entries are for. Most are just to make sure that other styling
elements from the rest of your page don't inherit in and ruin the cloud. But there are a few
that you may want to change to suit.
The first line

#labelCloud {text-align:center;font-family:arial,sans-serif;}

You could change the fonts used in the cloud here if you wanted.
Also, the text-align statement can also be changed. I have it set to center by default but you
could use

text-align:justify;
text-align:right;
text-align:left;
If those suit better.

The next line

#labelCloud  .label-cloud li{display:inline;background-image:none !important;padding:0 5px;margin:0;vertical-align:baseline !important;border:0 !important;}
Well don't worry about most of it unless you are a hardcore CSS'er. The only one of real
importance is the first entry

display:inline;

You can change that to

display:block;

To get the 'Flat' (each entry on it's own separate line) listing of the weighted entries. Usually if that is set to block you would probably want to change the sort frequency from alphabetical to frequency.  

You do that by editing the widget from the Page Elements tab in Blogger.

And the last bit I'll mention is the line

#labelCloud .label-count

If you set the lcShowCount variable to true to show the post counts, you could change the
color/size of those numbered entries with that line. 

23 November, 2011

How to install Open VPN on Android Phone + Required FIles


 This Tutorial contains all information and files needed except one (just use google for that) for installing, Configuring and Running Open VPN on Android Phones.

Open vpn for android.

Requirements:
1.   "Rooted" Android Phone.
2.   Root explorer
3.   Openvpn installer
4.   Openvpn settings
5.   Terminal Emulator
6.   Busybox
7.   VPN Config Files
8.   tun.ko (This file is device and kernel specific. You cannot use a tun.ko that is NOT compiled for your device. just google for it and get your mobile kernel)

Steps:
1. Root your phone with the superuser.

2. Install openvpn installer and the binaries..

Installing Process:
Run openvpn installer using file explorer

Click install >choose /system/xbin/ > choose /system/xbin/bb
Check this directory if installation successfull: /system/xbin/openvpn

3. Install busybox 
Open the application and click install.
Wait and check directory: /system/xbin/busybox or /system/bin/busybox { it(busybox) should be there}

4. Configure openvpn settings
Go to option > advance >
Check load tun kernel module
Set path to openvpn binary: /system/xbin/openvpn
Go to tun module setting > load module using > insmod
Set path to tun module: /system/lib/modules/tun.ko

5. Open terminal emulator
and type this
$su
#mount -o remount,rw -t yaffs2 /dev/block/mtdblock2 /system
#chmod 700 /system/xbin/openvpn
#mkdir /system/xbin/bb
If The busybox is in the / system / bin /busybox
#busybox ln -s /system/bin/busybox /system/xbin/bb/ifconfig
#busybox ln -s /system/bin/busybox /system/xbin/bb/route

If The busybox is in the / system / xbin /busybox
#busybox ln -s /system/xbin/busybox /system/xbin/bb/ifconfig
#busybox ln -s /system/xbin/busybox /system/xbin/bb/route

#reboot
**if an error occurred after issuing such command please check if busybox is in this directory: /system/bin/busybox and if openvpn is in this directory: /system/xbin/openvpn

6. On your sdcard create a folder named "openvpn" w/o the quotes and Put all your config files there.

7. Now Run openvpn and connect with the visible settings.

Download Required Files Below:

Superuser.rar
Terminal_Emulator_v1.0.21.rar
Root_Explorer_v2.10.rar 

OpenVPN-Settings-0.4.7.rar 


11 November, 2011

[Tutorial] How to hack windows xp administrator password

Hack windows administrator password


This is one of the best method to Hack Windows XP Administrator Password. For hacking admin you must have log in as guest or limited account. This methodod hacking sdmin is very easy, You don’t need any software or live cd. All hacking is done manual.To hack XP admin password follow these steps. Please backup your files which we are going to use here.

Method:

1.Go to C:/windows/system32

2.Copy cmd.exe and paste it on desktop

3.Rename cmd.exe to sethc.exe

4.Copy the new sethc.exe to system 32,when windows asks for overwriting the file,then click yes

5.Now press shift key 5 times you will get cmd prompt close that

6.Now Log out from your guest account and at the login screen,press shift key 5 times.

7.You will get commmand prompt there Now type “ NET USER ADMINISTRATOR mypassword” where “mypassword” can be any password and Administrator is name of admin account ,then press enter.

8.You will see “ The Command completed successfully” and then exit the command prompt.
Thats done…You have hacked administrator password

Please backup your cmd.exe and sethc.exe if you are trying this on your own computer.This works because of sethc.exe process Vulnerability in Windows XP. This method of hacking XP admin password can be used in your college lab where you have limited or guest access to computers.

08 November, 2011

[Tutorial] How to get PR4-6 backlinks in minutes

In this short tutorial, I’ll tell you how I get high PR (4-6) backlinks using Tumblr.

OKAY lets go...

Create a new account on tumblr.com (I recommend using mail.com emails for that as you can create as many emails as you want).
Make sure you use your keyword as your URL when signing up. It won’t let you use spaces but you can add hyphens instead.
So if your keyword is “Brooklyn gold training” then you’d put “Brooklyn-golf-training” in the URL field.
Now verify your email.

After verifying your email, login to your tumblr account.


On tumblr dashboard, click on “text” to create a new text post.
Your new post doesn’t have to be anything fancy. Just put up your keyword in title and body and you’re good.

Now click on “untitled” or whatever it is at the upper right corner of the page.




Then click on “customize appearance”




Then on “theme” :




And skip all those paid themes and scroll down to some free one.
Then click on “save + close” :



Now you see we have that “settings” link, click that. This one:



(If you don’t customize your theme, you won’t see that settings page there, so its important to customize your theme).


In the URL section, check the box saying “Use a custom domain name”. And then put in your money site URL (for which you want the backlinks). Make sure you don’t use any “http” or slashes whatsoever… Just a simple URL like example.com or Brooklyngolftraining.com.







Click on “save preferences”.



The next step is to find some high PR tumblr pages. You can easily do that by scraping Google using this footprint:

site:tumblr.com “liked this”
inurl:.tumblr.com "liked this"
(Whichever works well for you).
Once you have scraped some decent amount of pages, run a PR check using scrapebox or any other tools you have at your disposal. You can use SEOquake for this. Sort them by page rank (in decending order).
And you’ll see there are many high PR (4-6) pages. Now all you have to do is, visit that high PR tumblr page and click on that heart symbol at the top right of the page. Like this:



Make sure you’re logged in when visiting that tumblr page or you won’t see the heart symbol .

Now refresh the page (may need to do it a couple times) and see, your link is there right back to your site without any redirects whatsoever. The only drawback is, you can’t use your right anchor text with this method but hey, those are free PR6 backlinks.
That’s it, good luck

Twitter Delicious Facebook Digg Stumbleupon Favorites More