Showing posts with label Tutorials. Show all posts
Showing posts with label Tutorials. Show all posts

Tuesday, 17 July 2012

Use permalink for better blogger blog SEO

Blogger recently added a new part to the new blogger interface called 'Permalink'. With this tool you can create you own link for your article very much like WordPress. This is very useful to SEO since you have controll over both post title and link differently. This allows you to keep you viewers happy with catchy titles even when you have the right URl for your blog.


To use blogger permalink option you must have the new blogger interface. This option will be available under post setting when composing your blog post. It should appear normally - as it did for me. Click on the text 'Permalink' to get more option and click 'custom url'. Here write your desired url for the blog post your writing. You can't use space. Use '-' or '_'instead of space and click done. That's all you have to do to get this working. You can only use this on new blog posts for obvious reasons. If you can use the right keyword in your post URL you will have more traffic and visibility in Google search. Use it wisely, and happy blogging :)

Friday, 13 July 2012

Five simple Photoshop trick

Photoshop is an amazing photo editing tool but we don't have time to figure out every combinations of the function that are available. I have listed some of the basic fast and effective way to create and edit pictures or simple graphics for your blog or website without wasting too much time on tutorials. Hope you will find them useful.

1. Create a custom shadow




Duplicate your top layer, select bottom layer add high guissian blur (filter>blur>guissain blur) til you get your shadow look. Now now bring down the layer and use Edit>Transform>Wrap after resizing it to fit your need to give a more realistic look.





2. Create glossy reflection


For any object select it and create a new layer over it and add a nice little eclipse(tool) with white filled. From right corner change optical to 30 or close to it to match your image to create a nice glossy light reflection effect. For text be sure to use Layer>Smart Object>Convert to smart object before doing anything to get the same effect.


3. Use curve, level and blur






Bring life to your image using curve and level to fix lighting of the image. Click on he small black and white button below layer section to get the option. You should also use blur effect to focus on the main object and improve the smoothness. You can learn how to from here.





4. Add custom effects



Using built in effect will faster your work. Just duplicate your layer and go to Filter > Artistic and choose any. From the window, customize and choose from all the built in effect and smoothness to add it to your picture. Once your done, use erase tool to fix where you want your effect to work or not. With little bit of creativity you can do lot more using this tool and fast.



5. Add reflection 


Reflection are easy way to make a text or object look cooler. Duplicate object rotate it 180 degree and erase using soft erase tool. Afterwards change it's opticity and add additional effect to make reflection realistic.

Tuesday, 3 July 2012

How to be the smart student with Python

If you are a school student and currently learning or thinking about learning python, you should know how to hack your life with it. As a learner, I am trying to engulf the basics and I hope to offer you guys something better in the future when I actually learn something. For now I will show you some simple technique you can use to make your math life easier. You can make a simple program to solve complex equation that you know you have to do it in class repeatedly with python and use it whenever you need to solve or check a problem.

For the cool kids, this is not a cheat at all. If you can make a program about the equation, you will most likely know more about that equation than a regular students. This is because you have to break the equation down in step and understand it's method to solve it in steps. You will learn both programming and math at the same time.

Be warned, because I am not a real programmer and I am just a beginner in the python world. So consider my 'stupidity' in such. But anyway we need two tools for our project today. First is basics learning tool and another is software and compiler. Just read two to three chapter from the tutorial site and you will be able to make simple math program easily. If your math notation and formulas goes out of simple math, you can always Google it for how to use it. For math programming I recommend having a pen and paper next to you as well.




We will do an example of python program. To make a program we need a problem to solve. The problem is our math equation. Let's do a hard one first! We will solve the quadratic equation, which is:

And you should know there are two solution to this equation because of plus and minus. I am yet to figure our how to use that on python directly but I will use what I know so far. So let's make the equation simpler to get two result separately.

 
What we are gonna solve  from is ax² +bx+c

Ok, now let's go to the PyScripter>New Python module and delete everything. We need input for a b and c. But when we input something it becomes an 'string' (sentence/word) which we will use 'float'(number with decimal) to use it on computation. Anything after '=' meas to set a variable for that section and for us to remember the user input. Let's write first three line of our program.



a = float(input("Enter a: "))
b = float(input("Enter b: "))
c = float(input("Enter c: "))



Here we set some variable to remember the input and whatever inside " " will show in the pop up box. Run this with the little green play button fro the top and it should ask you for input.

Now to solve the problem and output them with print command. But since we broke down the equation into 2 parts, we will have to add two more variable and solve them separately. What we do next is:


x_1 = (((-b)-(((b**2)-(4*a*c))**.5))/2*a)
x_2 = (((-b)+(((b**2)-(4*a*c))**.5))/2*a)


And now to print them on the output:



print("X1 = ", x_1)
print("x2 = ", x_2)


Now if you run the program, it should definitely give you the right answer. But we don't want to load the editor to get the math solved. So, we will make it as command promt program. The only other thing you need to add now is pause command, so it will pause for the answer.

import os
os.system("pause")


Don't run! But save the program somewhere (.py) . Here's how your finished product look like:



If you have saved it, it's done! Now go ahead and double click it to see your program running as .exe and solve your math aster. I you want to solve repeatedly you can use some loop function with it as well or use it right from the editor. if you run it with double click, you should see something like this:



For another example, I created the program for Pythagorean theorem about right triangle. Which is a² + b² = c² . So here is the programm, I don't think it needs explanation, just look the program and it's fairly simple to engulf.



a = int(input("enter side a, write 0 for unknown"))
b = int(input("enter side b, write 0 for unknown"))
c = int(input("enter c, write 0 for unknown"))

d = (((c**2)-(b**2))**.5)
if a == 0:
    print("a = ", float(d))

if b == 0:
    print("b= ", float(((c**2)-(a**2))**.5))

if c == 0:
    print("c= ", float(((a**2)+(b**2))**5))

import os
os.system("pause")



Don't use the last part of the code if you want to use it right from the editor. You can learn more about math functions by searching on google :P And use this hack for your boring everyday repeated math and be more productive and feel smart!


Monday, 25 June 2012

How to delete a blogger blog

You probably have too many tryout and test blogs on blogger. Well, I once had 52! Now it's one. Focusing on one single blog is better for your blogging health as well as your fitness. Beside you probably had wasted enough time choosing a blog name. Either for neatness and not wasting a blog space you should try deleting your old once. If you are reading this on the blog, since you have a very bad attention spam you will never look at this writing. So I will stop wasting my time and get to the point.


How to delete a blogger blog

You will like the image instruction better than text. So here you go..
1. Go to blogger.com and click on the blog you want to delete
2. Now click on Settings>Other and on the top right you will see delete blog option. Click on it, confirm if needed and your done deleting your blog.

That was easy!

Saturday, 7 April 2012

How to create a favicon for your blog or website

how to make favicon for your blog or websiteFavicon is the unique icon you see when visiting a site  to the left corner of the address bar for most browser. It works somewhat like a badge or icon for your site or blog. Either you have  blog or website it is very easy to set up a favicon for your site. Follow the instructions below to know how.




For blogger users:
Blogger has a very simple way to get favicon, all you need it a square image.
Go to Layout>Favicon and upload your picture and save
If you don't know how to get your picture square, follow the steps below

For any other users

  • Click on the link below to go to the tool
Favicon maker- Create a favicon from any image
  • Upload your picture there, and click create icon
  • Then click download the icon and upload it to wherever you want.
  • Right click on the image and click view image
  • Copy the URL
  • Now replace favicon.ico to the link you just copied and use it on the code below
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
  
  • Insert the code into your section of your website
All done! The favicon might not appear imminently. It can take up to three days.

Thursday, 5 April 2012

Free 3d eBook cover page creator

free 3d ebook coverpage creator generator maker free online ebook coverpage in 3dCreating a 3d eBook coverage is a important step to attract your readers online. Giving it a 3d look seems to be the best. But this method comes with either waste of money and time. This post will show you a simple solution for your e-book if you wish to use small scale images. But still it's so far one of the best free 3d eBook cover creator or generator online. One of the best feature of this is that you can choose the position by rotating the book and it also creates a nice shadow effect. Check out the video for instructions and link is below.


Link : http://3d-pack.com
Video:

Thursday, 29 March 2012

Blogger new easy Nofollow

Under all this new blogger updates, one of the cool update I think is easier system of nofollow link. You can learn more about nofollow links from one of my previous post and a post about how to find nofollow links to use it for your benefit.
If you are trying to get better page rank, making links nofollow helps to prevent linking to too many or resticted sites from your blog. You don't have to mess with HTML anymore in ordered to make a nofollow link. All you have to do is to lick Link option on the top in your composer and check Add 'rel=nofollow' attribute option to make the link no follow as it is shown in the picture.

Saturday, 10 March 2012

Google Plus Keyboard Shortcuts

google plus shortcut shortucts google shortcuts website short cuts shortcutGoogle plus is a pretty cool place and it is most likely gonna be the next big social networking site. We have posted many tricks and tutorial on Google plus already which you can check out here. Now today I will share some cool Google plus keyboard shortcuts which can save your time clicking stuff. Not all the shortcuts are here but I think these will be useful.



J = To move to the next stream posted by your circle


k = To move to the previous stream posted by your circle


Space = Scroll Down


Shift + Space = Scroll Up


Enter while selected a stream = Comment box


Keep using this shortcuts and we will share with you more Google plus tricks and shortcuts in the future.

Friday, 9 March 2012

Get custom google plus URL

get custom or short url of google plus page or google plus profileGoogle plus plays a big role in SEO and it's the latest social media which is about to burst. We have written several tutorials on Google plus so far. You can check them out. 




Now I will show you a cool site where you can create a customize short link for your Google plus page or profile. Using this you can very easily share your link without having to wait for customize Google plus page URL. And best of all it is free. So, let's show you how you can get your customize/ and short Google plus link with very simple steps.

1. Go to gplus.to
2. Choose your name that will show up with the link
3. On the right, paste your Google plus ID
4. Click "add" and you will get your link
5. Copy the link and share it with the world!


Oh, and don't forget to visit through our custom Google plus link and follow to get updates on our future post. http://www.gplus.to/TripsOnTricks