Monday 27 July 2015

Try My Code: An alternative to Tryit Editor v2.3.


Try My Code is an offline HTML try-it script, that shows the output of your HTML code(For those who are on a development server or Learning.


Features:

  • WYSIWYG -You Can See Instantly What You Did .
  • Lightweight  -This File Is Only 200kb .
  • Portable -No Installation Required .
  • Syntax highlighting -Displays Text, Especially Source Code, In Different Colors .
  • Browser Support : Any Browser Except Internet Explorer or Similar .
  • Lock Me: Can Lock Option Panel .
  • Reset : Everything Get Back as Before .

 

Download


PHP: Simpe Upload Form and Function.

Hey there!, Here is an image upload form coded in PHP and HTML..

1st. Create a file named form.php and put this into it..

<!DOCTYPE html>
<html>
<body>
<form action="upload.php" method="post" enctype="multipart/form-data">
<input type="file" name="filetoUpload" id="filetoUpload">
<input type="submit" value="Upload Image" name="submit">
</form>
</body>
</html>

After that, Create a File named upload.php and put this into it..
 <?php
$targetdir = "uploads/";
$target_file = $targetdir . basename($_FILES["filetoUpload"]["name"]);
$uploadOk = 1;
$imageFileType = pathinfo($target_file,PATHINFO_EXTENSION);
//Check if image file is actual image or false
if(isset($_POST["submit"])) {
    $check = getimagesize($_FILES["filetoUpload"]["tmp_name"]);
    if($check !== false) {
        echo "File is an image - " . $check['mime'] . ".";
        $uploadOk = 1;
    } else {
        echo "File is not an image.";
        $uploadOk = 0;
    }
}
//If file exists
if (file_exists($target_file)) {
    echo "Sorry, file already exists.";
     $uploadOk = 0;
}
//File size
if ($_FILES['filetoUpload']['size'] > 500000) {
    echo "File too large.";
    $uploadOk = 0;
}
// Allow only image
if($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg" && $imageFileType != "gif" ) {
    echo "Sorry, only JPG , PNG, JPEG and GIF files are allowed.";
    $uploadOk = 0;
}
//Check if $uploadOk is set to 0 by an error
if ($uploadOk == 0) {
    echo "Sorry, file not uploaded.";
//if everything is ok, try to upload
} else {
    if (move_uploaded_file($_FILES['filetoUpload']['tmp_name'], $target_file)) {
        echo "The file ". basename( $_FILES['filetoUpload']['name']). " has been uploaded.";
        } else {
            echo "Sorry, there was an error uploading your file.";
        }
}
?>
NOTE: Create a folder named "uploads".


Now there you have an upload form that validates and image, and is secure too... Have a great day!

How to enable htaccess on XAMPP.

By Default, a normal htaccess with 'Rewrite Base /' in your .htaccess file in xampp wont work..

So to fix that remove '<IfModule mod_rewrite.c>' and 'Rewrite Base /' from the htaccess configuration and save.
This works for me, hope u find it useful..

How to Route Entire Ubuntu Systems

Hello there, ever since i became an Ubuntu user i've had a great experience..



I use the Internet behind a proxy server so i could only use the applications that enables custom proxy configurations etc.

To do this, you'll need.
1. The IP and PORT of the Proxy Server.
2. Unity Desktop or Gnome


Now, Navigate to System Settings
 Click on Network - Network Proxy then click on the Drop-Down and select Manual.
Then Fill in those Proxy types and click Apply System Wide..

Thats all.. :)

How To Have a Dump Of Your Blog Posts & Comments (For Blogger/Blogspot Users)

The Blogger / Blogspot platform from Google had

been very dependable by its users for a very long

time now, unlike WordPress which uses Hosting to

run their platform, Blogger is cheaper to control

and does not require hosting, so we hardly ever

get issues concerning our blogs, still we have to

accept the fact that anything can happen to your

blog anytime without your notice.



So many bloggers have lost their blogs in different

ways, some were due to their own mistakes,

others, were for unknown errors that can best be

explained by Google.

Meanwhile, as an inspiring professional Blogger,

there are certain IMPORTANT Activities and Check

ups you need to be doing periodically, Backing Up

your entire blog is one of them, in this post, I'm

sharing with us how we can do it, so you can

- Save a Complete copy of your entire blog posts

and Comments in your hard drive

- Upload the posts to a new blogger blog, or add

the posts to a Pre-existing one, it's really Simple.



Login to your Blogger Dashboard

*Settings >> Other >> Find - Import

Blog - Export blog - Delete blog



To save all the copy of your blog posts

with comments Click Export blog

To upload the entire Blogger to a New

one after saving to your hard drive,

click Import blog

You've worked hard writing and publishing

unique stuff for your audience, this hard work

Saturday 18 July 2015

OS: Installing Kali Linux without a Disk/Pen-Drive.

---Get these first.

--- Kali Linux iso (64bit or 32bit) 
(NOTE: Use the image for your systems architecture, otherwise things wont go smoothly)
Link: http://kali.org
--- UNetBooting software.
Link: http://unetbootin.sourceforge.net
--- EasyBCD by NeoSmart
Link: http://neosmart.net/EasyBC

A 30GB Partition(Unallocated). 
---------------------------------------------------------

Step 1: Open UnetBooting in Windows, Click on Diskimage, then select the Kali .iso file.

Step 2: Choose Type as Hard Disk, Choose your drive, C:/ then click OK.

Step 3: When the process is done, Reboot the system. And when it boots up, click on UnetBooting, wait for it to say Press ESC etc, quickly press ESC and choose Kali Live USB Security Persistent, and wait for it to boot into the Desktop.

Step 4: Click on Applications at the Top, and goto System Tools - Install Kali Linux.

Step 5: Go through the process correctly, until when u get to Network, i mean connecting to a wireless network..

NOTE: You must connect to a wireless network, and it must have internet access. If u dont have this, quit this installation.

Step 6: If you see "Guided Partition in Largest storage" or something related to that, click on it, and confirm that, that is the partition u created earlier by reading the information u saw.
Then click Next, and do what the installer says..

Step 7: Install the system, and when u get to "use a network mirror" click YES.

Step 8: It will now try to install GRUB bootloader,


NOTE: Please, know your Kali Linux partition name/id before continuing. Type in your partition id eg "/dev/sda5" then continue.

Step 9: Everything is being finalized and when the installer is done.. Exit the live system, and boot into Windows.

Step 10: Open EasyBCD, click on Add New Entry, click on Linux tab, and select GRUB2, then select Automatic. Then add the Entry..

--Reboot the system, select the Neosmart Linux or whatever u named it. and VIOLA!! you will see GRUB bootloader, just select Kali Linux and you're in.




NOTE: This Tutorial has been tested on Windows 8 Pro, Windows 7.... But Windows 8 (EFI) It wont work.

How To Create A Partition in Windows.

Today i will introduce to you a tool i love, MiniTool Partition Magic..

I recommend this tool for partition handling.. alriight.. lets get to it!






We are going to create a New Partition with it, its very easy.



1st: Open the software..




2nd: Click on the partition you want to resize, and click on Move/Resize Partition.





Now Move the Bar/Arrow to the amount of space you want, then click OK.




Thats, all.. It might ask u to reboot..


NOTE: Becareful, dont delete your data.

How To Turn Your Photo Into Cartoon.

Hello, here's a text based tutorial on how to cartoonize your photo with Photoshop CS6.

NOTE: It can also be done on CS4.

First of all before you start you should have at least a good quality picture and Photoshop.

Step 1: Open the Photo in Photoshop, then navigate to "Layers" and double click on it.

Step 2: Create a New Layer, then name it "Sketch"..




Step 3: Click on Brush tool Or press "B" on your keyboard, set the brush size to 3% and hardness to 100%

Step 4: Click on the layer "Sketch" then click on the Pen Tool or Press "P" on your keyboard, and take the pen tool to trace around the image or an object in the image.. 

NOTE: Using the PEN Tool will be hard for new users, :P I had the same problem, but after some time i got used to it..

Step 5: After you're done tracing, RIGHT click on your mouse and select Stroke Path, then select Brush in the drop-down, and click OK.


NOTE: If you get to a point whereby you cant trace round, hold down ALT and click on the LITTLE POINT.

NOTICE: Repeat Step 5 till the image and/or/with an object is fully traced.

Step 6: Create A New Layer, name is Color, Set the blending mode of the layer  "Color" to Multiply.

 

Step 7: Use the Eye tool (Press E) to select the image/objects color, then Press B(Brush) and set the size to what u think is good enough to add a fill. Then goto Layers click on Color layer, then use the brush tool to add a fill to the color layer,









NOTE: Make sure you Click On the EYE icon on the main photo, (That is to disable it.)

Do Step 7 till the cartoon is fully formed, at first it'll loook weird but keep trying.. 





If you have any problem, kindly drop a comment. Thanks.

Friday 17 July 2015

How to Increase Your Blog Traffic Using Some Great Tools – A Complete Guideline to Boost Blog Traffic

In recent times every person wants to own a blog, the rapid creation on blogs on daily bases is making it difficult for every person to get a huge traffic to their blogs, the competition has grown so high, trust me, it’s going to be a lot more difficult in the nearest future. That’s why Tonmoy Parves all the way from has come over here to teach us about some tools that are very essential to those who wish to make a lot out of their blogs, let’s leave the rest to Tonmoy Parves. Take the ride bro.

We all know that, getting extra visitors for a beginner web site may be very troublesome and daily these competitors growing rather more shortly persons are becoming a member of in an enormous quantity and making an attempt to make internet primarily based enterprise. Due to this fact, it is rather troublesome for a beginner to rank a web site and getting decent quantity of site visitors.
There are lots of ways in which, you possibly can enhance your web site site visitors and from these, I’ve shared some technique you can comply with to make an opportunity to your web site visitor’s stage.
#This text primarily covers the next matters:
  • Methods to enhance web site visitors
  • Learn how to use Google webmaster and analytic
  • Greatest key phrase analysis instruments
  • Twitter advertising and marketing software for getting focused followers.

 Learn About Your Comparability

Make a listing with a few of properly ranked websites that associated to your web site area of interest, attempt to observe them that, what they’re doing with their web site and which sources they’re utilizing for getting visitors.
There are plenty of instruments on-line, you should utilize this type of instruments and successful to find out about them. Utilizing this instrument you’ll know visitors supply like, Direct, referrals, search, social, mail, show and others, you too can discover their predominant key phrases that, they’re utilizing for selling their web site, Similarweb.com  and Alexa.com is a greater instrument to find out about them.

Using these tools you’ll be able to simply monitor their visitors supply and which sources they linked their web site most time.
Google Analytics
We all know that, Google analytics is superb software for blogger, this instrument helps us to know our everyday guests, web page views, our site visitors supply, bounce fee, and many others.
Utilizing Google analytics we will discover out our errors and lifeless web sites for us that by no means working or much less working for us.

So, from the primary day make an inventory with your whole sources that you’re utilizing for hyperlink constructing like, social media, bookmarking web site, discussion board, directories and so on. after a month or extra hardworking on your web site then begin to evaluation your web site and evaluate your handbook itemizing supply with Google analytics visitors sources.
Now accumulate the lifeless sources or much less working supplies that are not supplying you with as your expectation. Now begin to work on these sources and analyze them utilizing Google, Why these not working.

Discover Your Key Phrases Using Google Webmaster

One other nice matter about getting visitors, Utilizing Google webmaster instrument, you’ll find your web site key phrases that, individuals utilize to seek out your web site or go to your web site by looking out. So, first suppose is, choose these key phrases that match your web site area of interest, if in case you have affiliate merchandise that you’re selling then it’s far more essential to pick the focused key phrases.
Within the checklist of your search question you’ll find some key phrases that don’t match your web site area of interest. You additionally work with these key phrases if you wish to working with these matters.
After amassing the focused key phrases then, begin to hyperlink constructing and selling your web site utilizing listed key phrases.
With that you’ll get extra advantages beneath…..
  • It is a smart way for getting extra natural site visitors and you already know natural site visitors enable you to rank an internet site shortly.
  • Natural visitors aid you making extra affiliate sells, there are folks out there searching on-line to decide on the best merchandise. So it’s a nice alternative for us.
  • once you evaluate any profitable weblog utilizing similarweb then you possibly can see their natural site visitors fee all the time increased and it’s above 50% or extra.
Utilizing Some Nice Web Optimization, Advertising And Marketing Software
Handbook hyperlink constructing at all times is rather more efficient than software program device, I counsel you to not use this sorts of instruments. However there are some useful gizmo that, provide help to discover your errors or errors not hyperlink constructing. Utilizing these instruments you are able to do your hyperlink constructing periods correctly.
Search Engine Optimization Software: Semrush is a superb instrument or web-site, and utilizing this instrument can evaluate your web site simply. This software lets you full your search engine marketing evaluation.
  • Competitor Key phrase Analysis
  • Competitor’s Backlink Evaluation
  • Proper merchandise to advertise
  • Enhance Your Natural Rankings
Strive now and evaluate your website’s number of observe backlink, Nofollow backlinks and Dofollow backlinks, anchor, take a look at hyperlink, number of referral ip, referral web site and many others.
Twitter Advertising Instrument: We all know twitter is a spot, the place loads of massive fishes can be found and this can be a finest alternative who wish to promote their enterprise utilizing twitter. For finishing your purpose you must have a transparent idea about twitter advertising technique and utilizing a fantastic instrument, your work will grow to be extra simpler.
I use very useful and fantastic software named tweetadder, with this software you will discover some worthwhile options and these options will allow you to make a robust communication together with your shopper and your focused followers. Try tweetadder now.
  • Auto following and Computerized unfollow
  • Computerized tweet in accordance with your schedule time.
  • Auto thanks message who observe you first time
  • Aid you to search out the actual time, when most of your followers are lively on twitter.
Don’t Use Visitors Boot: By no means use visitors boot, newbies blogger thought that, site visitors is the important thing to success however they don’t find out about focused and natural site visitors as well as, they use site visitors boot like, linkcollider and so forth. Visitors boot simply make your bounce fee increased, and make dangerous affect on Google and your weblog site visitors.
Simply have a look at your natural site visitors bounce fee equivalent to Google, yahoo, Bing, you possibly can see all the time that natural site visitors bounce is low from others sources.
These site visitors will simply make some Impressions to your web site without clicking on adverts therefore you make no sells.
 Do Your Common Hyperlink Constructing: Do your common work in accordance to Google phrases and circumstances. And make a plan about your everyday mission, how a lot you’ll want to work. And we all know that this can be a frequent step for selling an internet site, like Search engine submission, Directories submission, Social media advertising, Bookmarking, Discussion board posting, Weblog commenting, and many others.
Why Full Your Web Site Design And Data: Beginning your mission, it’s best to full your web site design, with included most variety of information’s as doable as you’ll be able to.
If you begin your web site advertising or hyperlink constructing, folks will go to your web site. However without valuable Info, folks won’t return to your web site a second time, so you’ll lose your all laborious working. However, A Nicely knowledgeable web site with an excellent design can get individuals to bookmark your web site for subsequent time and you’ll enjoy your labour to every bit.
Final Phrases: Earning money from weblog’s now has grown to be an ardour and making extra sells is essential to make sturdy communication along with your viewers akin to, key phrases analysis, Realizing advertising technique, utilizing Google evaluation instruments and so on.

Friday 10 July 2015

How to watch live football match on your Android phone

I know that you have been wondering how you can do this. Do not worry about it anymore just follow the instructions below... First of all download sybla TV
AFTER that download mx player from Google play. Get a good internet connection, open your sybla TV When it opens it will show you something like this
AFTER that click on the match you want to watch and it will open.... 
Drop your comments below

How to identify a lazy blogger

Today blogging is seen as a business to some
persons. So many people started blogging as
a hobby and later turn a profession. In fact
blogging has become the most profitable
online venture. It is not strange to anyone
that bloggers make substantial amount of
online income just from blogging alone.
Many bloggers pay their bills from the money
they earn alone from blogging. Knowing
about this truth, now majority want to
become bloggers. They want to make money
just like the successful bloggers. But they
seem never to be getting it right. Now and
then they keep wondering what are they
doing wrong.
Photo credit: hi-click.me
There are so many wrong things a lazy
blogger does.
A lazy blogger lay back. He does not search
for information by himself rather he relies
solely on other bloggers for information.
You'll see a blogger asking a question which
can easily be found on google. I remember a
guy who called me one time ago and said he
wanted to make money online by using
adsense. He asked me to send him the link
to signup for adsense . Anyway I did sent him
the link. On a serious note, what happen to
google search? It just a matter of typing
adsense and you get what you want. There
are so many of these kind of bloggers, too
lazy to search for information by themselves.
A lazy blogger copy and paste. Many bloggers
do complain that google disapproved their
adsense application. When you check their
blogs you'll discover that all their content
were stolen from other bloggers. This is
common among the news and entertainment
niche. And I keep asking, do they not know
that duplicating someone else content violate
adsense policy? Many just apply without
reading about adsense policy. When they are
disapproved they start asking other bloggers
to help them find out why they weren't
approved.
Being lazy, a blogger won't be able to write
an original article how much more to edit an
existing one. He want everything done so
quick without considering what right and
wrong.
A lazy blogger want to make money so quick
without following the right part. Because of
that they engage in black hat activities just
to get their blog rank well in search engine.
Many of them are ready to spam to get
traffic without considering the
consequences. When their blog is banned
they start asking fellow bloggers why does
their blog not display in search engine.
Sooner or later, a lazy blogger quit blogging
because he can no longer cope with the ever
changing conditions in the blogosphere.
If you fall in this category, now is the time to
self-examine yourself and ask if truly
blogging is your thing. Blogging should
always start as a hobby before turning to a
profession.
Top bloggers of today didn't just make it in
just 6 months. Some of them take more than
a year. I know of a top blogger today that
make his first adsense earning of $100 after
2 years. Now he is a renowned pro-blogger. A
lazy blogger does not have patient. He
engages in invalid activities and kicked out
of adsense program.
No one knows it all, we keep learning
everyday. Learning is more rewarding when
you try to solve problems yourself by making
research. Do not always wait for others.
Learn to experiment. I will not call myself a
pro-blogger but I know I'm growing
everyday. When I've any problem concerning
blogging I search for the solution. By that
way I can now do so many things very well.
Being lazy as a blogger cannot and will never
take you to that stage where others will look
up to you as an inspiration.