Showing posts with label Computer. Show all posts
Showing posts with label Computer. Show all posts

Thursday, 2 August 2012

Learn Python with Codecademy

If you have been following my posts, you know I was busy learning python and showing off the new skills. I have already posted a lot about learning python and tools. You might also remember Codecademy that I have shared previously for beginner programmer. Codecademy now has a section to learn python. Python is an easy first language and quit powerful. Now you can learn all the basics of python in Codecademy.


Codecademy is an interactive online programming environment to learn for beginner programmer. Codecademy has lesson set and explanation as well as online compiler to set you up for learning program without extra stuff. So far, they have different units of course on the following section:


  • Python Syntax
  • Strings and Console Output 
  • Conditionals and Control Flow 
  • Functions 

More units are coming soon. Don't fear the word unit. There are at most two lessons in them and all are fairy easy. Codecademy is completely free. You can also sign up if you wish to track your progress along the way. So, what are you waiting for? Learn the basics of python with codeacademy now and start coding like pro :)

I have used Codecademy when I first started learning programming and I personally have like it. Leave your thoughts and experience in the comment section below. If your done with basics if python you might also be interested in reading my other python post such as Best tools to learn and code python with, Learn program by solving problems, Make python prime detector to improve your skills.

Tuesday, 31 July 2012

Project Euler Problem 1 solved with python 3

check mar, chek button, project euler, checking problem, check python problem, check python project euler problem, solve python problem, solve python project euler problem
I have been showing off my excitement of learning python with last few blog post in my blog talking about the best tools to learn python with and so on. One of my recent post was about the Project Euler and I didn't forget to mention how good of an tool to learn and use python practically. As you can see I am a beginner as well, so without farther bragging I will start solving these problems one by one. Continue reading for more stuff.


First of all if you are complete beginner and still confused about what loops like for and whiles or how if statement works go head to my post teaching everything in python for beginner that you need before solving Project Euler problems.

Since there is no point if you just copy paste my solution, I will discuss about some strategy and thought process that will help you solve it yourself first.

Problem 1If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23. Find the sum of all the multiples of 3 or 5 below 1000.
Here's how I solved it. First figured out how to find the multiples of a number, then sum it. As revise I also had to eliminated the repeated multiples of both 3 and 5.

Here's my code:


m = list(range(0,1000,3))  # putting all the multiples of 3 in list m
n = list(range(0,1000,5))  # multiples of 5 in list n
l = list(range(0,1000,15)) # multiples of both 3 and 5 (3*5) = 15 in list l
print((sum(m+n))-(sum(l))) # printing sum of m+n and (-) the sum of l

I hope you found it useful or learn something new. I am going to solve more problems in Euler with either python or C++ in the future. You can come back here in the future for more articles like this.

Thursday, 26 July 2012

How to reduce brightness and contrast of your desktop

Even thought the light changes throughout the day, the brightness of the screen remains the same making it uncomfortable to use it for long time. You can use softwares like Flux that controls the light of your screen throughout the day but there may be another way out which is more controllable and faster to use. Here is how you reduce your brightness and contrast of your desktop , windows.


How to control brightness and contrast of your desktop


Normally all the monitor today has option to directly control the contrast and brightness. If you are using laptop you can do that with Fn button. For desktop, check near your monitors power button for anything that says contrast of brightness. It might also be inside a menu. Once you get there you will have option to increase or decrease the contrast and brightness of your screen. The brightness is represented by a sun logo and contrast is a half black half white circle. Only downside to this is that, you have to press the button everything you want to adjust the brightness. But you can always look for software that attempts to adjust contrast and brightness automatically such as Flux as I have mentioned before.

Wednesday, 18 July 2012

Learn The Absolute Basics Of Python In 15 Minute

I am on my quest to learn python. I am trying to learn it with problem solving which I talked about in my last post. First two things that are coming in handy to solve small problem are python while loop and for statement. I will explain (my interruption) of these functions as well as lists, prints, input, string, float, integer, variable and white-spaces. The purpose of this post is to help an absolute beginner to python as a peer help from another beginner to get you started and learn the rest by yourself. I am using python 3.

Understanding Print in python


Print is anything that your program outputs. Learn the basics which will be enough to get you started and you can continue from this with Google afterward. For python 3, this is how you output a line. 

print("This line will be print")

Understanding string in python


String is a string of words. That's all you need to remember. From above you can say the line that was printed is a string but numbers such as 2, 2.5 are not strings and you can't do math combining two different things.

Understanding float in python


Float are numbers with decimal points next to it. Ex. 2.005, 3.25

Understanding int in python


Int stands for integer - numbers without decimals. Ex. 2 , 3

Understanding Input in python


Input is asking the user to input something. If you run the code from below it will ask you the question and allow you to input something in the program. Remember even if the user input is a float or integer it will convert it into string.

input("How old are you?")

To convert the input string to float or integer in order to apply math on it, you can do the following:

float(input("How old are you?")

You can use brackets as shown with different function on top of it to work and convert.

Understanding variables in python


Variables are variables you set for anything. An example will be x = 1 . But when you read it on program you say x is assigned for 1. An example of print function that is used to store the input given by user is:

x = float(input("How old are you?")

Now you can use the variable on anything while programming which is storing the age that was input by the user. Here's an use shown below to print the age afterwards.

print(x)

Understanding list in pythong


List contains element. List are made the following way


listname = [1, 1, 2, 3, 5]

You can store and call elements from inside a list. You can also make a empty list to store any input or from function later in the program.

Understanding why space after  ':'


White-spaces are used in python to separate or add in the function. If we create a new function and statement then everything from white-space will be included under that condition after ':' . Four spaces separate a section. You will see  more about how it works with while and for statement.

Understanding while statement in python


Look at the code below:


n = 0
while n < 10:
n = n+1
print(n)


We can write it in pure English like this:

[ N has value 0. As long as n is less then do this: add 1 to n and make it a new n and then print the new n. ] Since 1 is still not more than 10 it will continue doing this for 10 times and then stop when the condition meet. Another way to think about this is while this condition doesn't meet do something repeatedly until it does.


Understanding for Statement in python


Let's look at this pieces of code:

mylist = [1, 2, 3, 4]
for everynumber in mylist:
    print(everynumber+1)


The first line is a list name mylist containing the numbers inside. The second line reads for everynumber (you can name this anything), which is a variable to represent every single number in the list followed by in mylist. After that is the ':' to get whitespace and inside the for function. Then we printed out everynumber+1 which is adding one to every single number from mylist. The program should output  2, 3, 4, 5.

The next step


You can do so many things with only these in python. I recommend trying all the things you can do so far with this code before you move on. First get more understanding of these functions and syntax i you need and then learn the math symbols in python (some are different). With that try to make program that will solve some math equation. One of the best tool is Project Euler and you can solve first few problems without any further knowledge. These problems are difficult, so it will take longer to solve but it will certainly boost up your learning strategy. You might consider subscribing because many future articles on python are coming and I will also post solution to Project Euler with clue at the beginning if you need further help. Feel free to ask any question on the comment below or go to http://stackoverflow.com to get help from real programmer if Google can't aid you well enough. Happy programming :)

Tuesday, 17 July 2012

Share Screen Instantly Without Any Download

Forget about those old screen sharing system where you have to download a software, sign up, confirm the codes. Now you can do the job in few second and no there is no need of installing anything, signing up or confirmation codes. All you have to do is go to site and share the link with whom you want to share and you still have better control and security over you screen sharing.


This is called Screen Leap. Fast and easy screen sharing without download on any device. Go to the site and click share your screen now. You will be needing java to work (you probably have it already). Just follow the instruction on the screen and start your screen sharing. You will be given a link to share the screen. You will have a popup option to be able to stop and pause the screen share and also see the status about who and how many people are watching. This tool will save your time and will not waste space to make everything more productive.

Learn Programming By Solving Problems

The quest of learning a new programming language is hard and takes a long period of time. We normally start out learning a programming language by learning all it's syntax and practice with it and later go into algorithms and actual problem solving. I am a beginer as well and trying to learn python as the first language and I don't think learning all the synstax before going into solving an actual problem is worth the effort. Project Euler is a place where you can find the problems you need to solve as you learn a new programming language.


More about Project Euler


Project Euler is free and contains hundreds of free problems. These problems are not solvable with your regular pen and paper or calculator. You will be needing help from programming language. You can use any language you want. Some of the problems are extremely difficult but solvable. And this project is very popular so you wouldn't have any problem finding help for it. It will also improve your mathematical and analytical skills as well as programming language with project Euler. Some problem needs deep thinking and planning, so don't panic at the first time.


Learn programming by solving problems


Programming is useful to solving an problem.  Why not start with problem and solve it as you learn. My advice is to choose a simple programming language and learn some basic print functions and few more which shouldn't take more than an hour or so. Then go to the Project Euler and start solving the problem. Just Google search for anything new that you can't solve the problem without and learn it and use it to make your program work. This way you actually learn and understand the procedure and functions more deeply and see real example . This is also equally rewarding. Learning syntax and function gets boring when it is hard to find an good use to it just like our math class in school. With project Euler you also self motivate and find new points for learning the programming language. I choose python because you can do things little faster with it. If you are new to programming python is the best choice for you because of it's simplicity and effecienct manner with it's powerful work.

Read: Best tools to learn python with

Hope you got something out of this post and took a step forward in learning the programming language better. Have fun with Project Euler and subscribe for more articles on this topic as well as various other tips on online tricks. Happy programming.

Create a simple factor generator and prime detector with python


python programming, python how to, python tutorial, python how to generate factors and detect prime numbers
Python is a very efficient program and let's you do a lot of things with a very small coding unlike stuff like C++. I am a beginner in python and learning all the little things. With the beginner function I learned I was able to create a simple algorithm (big word!) to generate factors of a number and detect if it is prime from user input number.


Before going into any explanation (my interreption) here is the code:

n = int(input("what number you want to check? \n:"))
j = (list(range(1, n, 1)))
whylist = []
for numbers in j:
if n%numbers == 0:
whylist.append(numbers)
print("The factors are: ", whylist)

if len(whylist) == 1:
print("So, this is a prime number!")
input()

Read: Best tools to learn python with


Understanding the python factor generator


So save it with yourname.py and double click it to see if it is working. From line one, it asks a user input of a number that is converted into integer which is stored in the variable n. The method used to find factors are by dividing each number by all numbers from 1 to itself and check if the reminder is 0. If remainder is 0 that means it's a factor. To get a list of number from 1 to the given input (n) we created the second line naming the list j. Then we created another list to store the factors itself.

Next we used a for function. For the forth line the basically says: 'for' every 'numbers' in list 'j' followed by ':' to specify what to do next for the 'for'. Next line reads if n(user input) equals to 0 then (:) add the 'numbers' to the 'whylist'. The next line just prints the number out with a string.

Now detecting prime is easy with count function which will count how many elements are in the list (whylist). If the only thing found in whylist is 1 it's a prime number. We used another if statement saying if the lenth(element number) of whylist is 1, then print 'this is a prime number'. We added a input() at the end to push the program for any other input till the program ends.

I hope this post helped you with what you were looking for or helped you learn something new. If you have question leave them below and I will try my best to assist you. You might consider subscribing to this blog because future python tutorial with simple explanation like this one are on my post idea list. Have a great day.

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, 2 July 2012

Best tools to learn and code python with

best learning tool for python programing
Python is one of the most easiest yet powerful and efficient programming language out there. I am not a programmer but I started learning this and pretty excited about it. Learning python is easy, but if you have the right tools and teacher. I can recommend you a good teaching website for basics and to get the right tool. Continue reading for more information.

Best place to learn python


If you are a student like me, I think you can learn some basics of python and start coding to make your own script to solve your own problems. But that's for another post, today it's about best teaching place and the right tool. The best teaching site for python learning and specially up to date python learning is from "How to think like a computer Scientist". If your new, learn python 3 - the latest one. This wil guide you through the explanation and basics of everything. After you finish this, you will be able to start doing some basic scripting to do stuff.

Best tool to write python on


Now for the best tool to learn. By tool I mean the software or python copmpiler. The website recomends a python compiler that is called "PyScripter" which is still my fevorite. And of course these are free and open source project. Up to date software with every built in function for python programming.

Another tool for python learner


For learners it is also important to have a immediate compiler. This gives you the result immediately and other builds on lines o programming. Unless you want to write print every single time, you should have a immediate compiler with you to learn the basics. The software I am using is called "IDLE (python GUI)" . You can do more things with it other than just immediate action but I prefer doing the other stuff on PyScripter.

I am just a learner. If you have found a better tool or learning center, feel free to share it in the comments below. Any question or thoughts are welcome there as well :)

Free fast code editor

best and fast code editor
If you are a blogger messing with CSS and HTML all day long or you are a typical computer user who is trying to learn some coding, you can use this nice little softwarre for your productivity. Fancy software take hours to load and simple programms doesn't hae enough functionality to guide you through. But I think just a good replacement to your old defult Notepad will do a great job with helping you edit any code fast and easy You can use this as a simple text editor as well as a replacement for Notepad.

This software is called Notepad++. If you haven't heard about it yet, just go ahead and download it. For whatever purpose you have any typical computer user will find this software helpful. This software has nice Syntax highlighter that are very helpful for writing and editing code. Within many of the features here are some of my favorites:


  • Syntax highlighter and folding
  • Multi-tabs / view
  • Multi-language
  • Zoom 
  • Auto complitation
  • Bookmarks
  • Document mapping



You can read more about this software and features on their official site. Just click on the download button and get the software on your computer right now. 

Saturday, 30 June 2012

Best customization tool for Windows


best windows skin customization tool rainmeter
We never like the standard model even if it is the best. We want a customized and different version to express ourselves and uniqueness. Windows allows us to to get cool wallpapers and customize color of explorer but you would be surprised to know how much you can do with window with some little software. I will just introduce to you a cool tool to customize windows skin very easily and get nice looking windows app to make your computer life easier.

The name of the software is Rainmeter and it only supports windows. The link to this download is below. Install it after the download and don't worry too much if it takes little longer.




Tha't pretty much it. You can now download and install some of the coolest destop customization online. Customizing the customized stuff you will get is easy as well! You can just click on each app and edit it as you wish.

If your downloading this for the first time follow the Rainmeter101 and you will be good to go. If you want to know what you will be offered. Go ahead and check out the deviantART section for this and be amazed! (pro tips: you can serch for specific stuff such as notes or search to get skin related to them) And yes, once you install the software you will have to download the stuff and install them by double click or by directly on specific file location. I am loving it so far, give us your feedback if you have used this.

Monday, 25 June 2012

Create free flash website without coding

create free flash website without coding Flash was a great tool and it still is for many things. The new features of CSS3 and HTML5 are making flash look bad but still you can do amazing stuff with flash that is impossible to do so with CSS and HTML. But today we are going to stick with simple task of making a good looking flash website. You won't be able to upload to to blogger but if your using manual tools for website, this will be a great tutorial.


Create free flash website without coding

For this we will use a free software that is specialize mainly on making flash website. It is called Project ROME made by Adobe and it is completely free to download. Actually if you don't want downoad you can use ROME from online platform as well.


I can write two whole blog post about the cool features of this software but I rather not. Let's get to the website creating.

It is certainly boring to read a long blog post on creating a website and it's definately a hard work for me as well. Since I am lazy and you have a short attention span, I found a awesome video tutorial with everything you need fro youtube which is 100% better substitute to my written blog. The video is by http://www.tinkernut.com/ and good luck creating your cool flash website.

Tuesday, 12 June 2012

Be more productive with RescueTime

software to become more productive
We do various things on our computer. Especially if you are a techy person or blogger, you practically live inside the computer. There is still so much left to do on computer and real life. On internet you flow through links and never know what is coming next resulting a struggle on time maintenance. It is much easier to know what you should limit and what is the main 'time waster' during your internet time and computer usage. This can help you improve more and be more productive over time. There is a very nice program available for free of charge which might just be right for you.


The name of the program is Rescuetime. It's a very nice simple little program that stays in your computer in a computer and shows result of productiveness and usages of your time on dashboard. You will be needing to sign up for this process since you and only you will be able to access your information on your online dashboard. There is of course a paying version with real time update and option to block places on limited basis but I think for starter you can get most of the benefits from the free version of this awesome software. Rescuetime software can be used for both personal and team needs. I am currently using a free version of this software, where I get 30 minute delay for real time update, Summary and average of my time usage, allow me to set a goal, Efficiency summery by time of the day and weekdays with nice graph, another nice graph update next to it counting productivity by day as well as graph information on overview, activities and all category. You can get more detailed information on each by clicking on it. How is that for a update on productiveness?

rescutime a softwar to become more productive, the rescutime dasmoard

I am very satisfied with this nice piece of software. You practically have to do nothing on the software after installation to get the updates and benefit from it's features. I actually found out about this awesome program after I have watched a famous bloggers video on Youtube, you might already know VlogBrothers- Hank. You can check out the video as well, if you want to be more productive in life. Hank and his brother does a ton loads of work, I think they know how to master the way of time ;)



And not surprisingly by the program Rescutime I now know how much I have to limit my 'watching YouTube time' :( So what's your time waster?

Friday, 4 May 2012

Xfire recording tutorial for PC gaming

Hi there fellow gamers. If you have been trying to install Xfire to record your game in HD and having trouble recording it, your at the right spot. But if you are not go check out this post first to know what this all about. So here is the tutorial on how to record your video game or rather set up that you need to do before you start recording.


1. Open Xfire, log in, let it check all the games, if need permission give permission. Now click on the tools an and choose option


2. Now Click on video and get your video setting right and video direction. You can just make everything same as mine, if you are confused about which is what.

3. Click on the link that says key binding on the left to set up your keyboard hot keys for your video record. Click on the video option as highlighted in the picture and type in any combination you want as your hot keys.
That's all you have to do, just make sure you don't exit the program (if you cross it out it is still open unless you exit) and whenever you start a game, just press the hot-keys you just set up and you will see it recording and once your done press the button again. Minimize or close the game and you will see the video is all ready for you! If you still need help, tell us int the comment below. Happy gaming.

Best free screen recorder for PC gaming

Ok, so I am a game addict. I play all sorts of games. And I definitely like to show off my epic moment or get some extra fame. As I am a big fan of multilayer FPS game and most of them I play on PC, it seems pretty difficult to record the screen nicely. It's not a problem if the game screen is not maximized but if you have tried your usual screen recorder such as Cam-studio or Camtasia you will see wither messed up colors, lag or no visuals at all. I have been frustrated about this a while since I was trying to show off my 'skill' to one of my friend -having hard time recording anything. I found two solution but the one you will see here is the best one that actually records HD and made especially for games and simple and easy to use. 

The program I have used is Xfire, you might be familiar with this since some MMORPG and famous game require you to have this. Beside connecting with your gamer friend it has a very awesome build in facility that records the dimension of your full screen of the game and records in HD. And best thing about this program is that it is completely free. But it does requires a registration to use it. Go ahead to http://beta.xfire.com/ and download it right now. It is fairly easy to use, just follow the instruction to set everything up. And if you need help with how to record the video still, you can go check out this post explaining in detail but fast. If this helped or you need help be sure to comment below and happy gaming :)

Wednesday, 11 April 2012

Best software for writers - OmnWriter

To write a book you need to set up your perfect environment to characterize your characters to the best of your ability to create your best book. OmnWriter is one of that software which understands the writer, at least some of it. This text editor is solely created for this purpose. As they say it brings writers heaven. I have been using this software for pretty long time to attempt my first novel. I think you might also find this useful.
best free software for writer

Features of Omnwriter

Completely free
Simple and elegant text editor
Includes related-background
                               -loop music
                               -font
                               -Text area
Fade out effect of distrusting options while writing
Very simple to use



And here's the site's video explaining the product  
And here's my simple go through on how to install OmnWriter

Saturday, 7 April 2012

F.lux autometic light adjucement

automatic light change fo computer to reduce eye problem related to computer using he software flux or f.luxMany of us use computer for pretty long time. Even though the light changes through out the day, the computer screen maintain same light. To make you feel good looking at computer screen for long time and possibly solve some related problem by using F.lux. This program changes your light of the screen according to the time of the day. It's often good to use this type of software to reduce the effect of computers on your eye. It's very easy to install and use it and it's available for all major operating system -Windows/Linux/Apple. 


Click on the link to go to the site and download and install the software and use our video for more instructions below.


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:

Saturday, 31 March 2012

Email address without password, no more spam!

Remember the time when you created a ton of different email address to fake and confirm your email address to save yourself from spam? If not you are an internet noob. But there are something better and cooler things online what makes your smart works looks like a noob. Get pro with access to unlimited free email addresses from Mailinator without any password. You can access any email address. As it said by the website the features are


"
  • Use any inbox you like
  • No Sign-up
  • Inboxes are created when email arrives for them
  • Make up email addresses on the fly
  • Make-up address, give it to others, come here and check inbox!
  • RSS/Atom feeds for every Inbox
  • Give out a Mailinator address any time you need an email address but don't want to get spammed!'
                                                                              "
So check out this epically cool new type of email address to save yourself from spam flood! Just use any email address from them on the go and check whenever you need to later from the site.

Visit The Site