Saturday, 24 February 2018

Java Course for Beginner Article 1.

Java Course for Beginner Article 1.

What goes in a source file? 

A source code file (with the .java extension) holds one class definition. The class represents a piece of your program, although a very tiny application might need just a single class. The class must go within a pair of curly braces.

public class Dog {

}

class

What goes in a class?

A class has one or more methods. In the Dog class, the bark method will hold instructions for how the Dog should bark. Your methods must be declared inside a class (in other words, within the curly braces of the class).

public class Dog {

void bark () {

     }
}

Method


What Goes Into a method?

Within the curly braces of a method, write your instructions for how that method should be performed. Method code is basically a set of statements, and for now, you can think of a method kind of like a function or procedure.

public class Dog {
void bark () {
statement1;
statement2;
}
}

Statement


Anatomy of a class 

When the JVM starts running, it looks for the class you give it on the command line. Then it starts looking for a specially-Written method that looks exactly like:
public static void main (String() args  (
II your code goes here
Next, the JVM runs everything between the curly braces { }of your main method. every java application has to have at least one class. and at least one main method (not one main per class; just one main per application).



Sunday, 18 February 2018

Basics of Linear Functions

Basics of Linear Functions

Basics of Linear Functions



Hi, I’m Arman. Welcome to Mathematics lesson.In this lesson, we’re gonna learn the basics of Linear Functions, which are really common in Algebra.We’re gonna jump right in because there’s a lot to cover in this article, but before we do, if you aren’t already familiar with topics like graphing and functions, I recommend to read a basic article about them before continuing on.Okay, so the best way to learn about linear functions is to start with one of the most basic linear function of all: y = x That’s such a simple equation, that you might be kind of puzzled by it at first.But remember, the ‘y’ variable is simply the output of the function and the ‘x’ variable is the input.So all this equation is telling us is that the input is exactly the same as the output.If x is 1, then y is also 1,and if x is 2, then y is also 2.No matter what value you put into the function, you get the exact same value out.That might seem kinda pointless, but if we graph that function on the coordinate plane, you’ll see that it forms a diagonal line that passes through the origin and splits quadrants 1 and 3 exactly in half.Notice that for any point along the line, the x coordinate and the Y coordinate are the same.So  Y = x is a very simple linear function.Oh… and remember, we could use either the variable y or the function notation f(x) interchangeably,but we’re going to use ‘y’ in this video to keep it simple.Now that we’ve got that basic case covered,let’s look at a slightly more complicated and much more versatile linear function: y = mxThis looks similar to the equation y = x,but now the input variable x is being multiplied by a new variable called m.And by choosing different values for m,we can make as many different linear functions as we want.In fact, if we choose m = 1, that would give us y = 1xwhich is just the same function as y = x because multiplying by 1 doesn’t change the input value x.But what if we picked a different value for m, like m = 2.That would give us the equation y = 2xand if we make a function table for that equation and then graph it on the coordinate plane,we get a line that looks like this.For every input value of x, the output y is doubled.Despite their differences, the lines y = 2x and y = 1x have something in common.They both pass through the origin point of the coordinate plane (0,0)because no matter what value we pick for  M if the value x is 0, the output y will also be 0since anything multiplied by 0 is 0.Okay, what about if we let m = 3 instead.That would give us this function table and this line as our graph.For every input value of x, the output y is tripled, but it still passes through (0,0).Do you notice how each time we pick a bigger number for M, our line is getting steeper?Imagine that the line represents the side of a mountain or hill that you’re climbing.y = 1x would be a steep climb, but y = 2x is steeper and y = 3x is even steeper than that!In math, the steepness of these lines is called their “slope”.As we choose bigger and bigger values for M, the slope of the line increases.Did you say slopes? I love the slopes man!Ah you should have seen the massive air I just caught off the pipe.It was beautiful!I was doin’ this hard-way, front-side 180



oh man… …so awesome!!!Oh… what’s that…?The slopes are callin’ me, I gotta go shred some more powder!That sounds pretty impressive, but getting back to mathematical slope…If we decided to let m = 10, that would result in a really steep line like this.And if m = 100, the line’s slope is so steep that it almost looks vertical and is hard to tell apart from the y-axis of the coordinate plane.But we could never get a truly vertical line with this equation because there’s no biggest number.The best we can do is keep picking bigger and bigger numbers for mand say that the slope is “approaching infinity” as we do that.And that’s fine, because a vertical line doesn’t qualify as a function anyway.So at the y-axis, we seem to have hit a limit.But what if we want to make lines that are less steep that y = 1x?To do that, we’re gonna need to choose some values for m that are less than 1.Let’s start by letting m equal one-half (or 0.5 in decimal form.)If we make a function table for y = 1/2 x, and graph the results,this is what our line would look like.Yep, that is less steep.Let’s take it one step further and let m = 1/4 (or 0.25).The function table and graph for that equation would look like this.That slope is even less.As we choose smaller values for m, our slope is decreasing.And if we keep on picking smaller and smaller values for m, like m = 1/10or m = 1/100, you can see that our line is looking more and more like a completely flat line and it’s getting harder to tell the difference between it and the horizontal x-axis.Now you might be wondering, can we make like that’s perfectly horizontal?Yes! Unlike the case when our line was getting steeper and steeper but we couldn’t ever get it to be a perfectly vertical line, we CAN make our line perfectly horizontal simply by choosing m = 0.Doing that gives us the function y = 0,(which is just about the most boring function you could think of).But it’s helpful to see because it shows us that a perfectly horizontal line has NO steepness or a slope of zero.It would be just like walking along perfectly flat ground.Okay, so in our linear function y = MX, the variable m is the slope of the function.If we start with m = 0, and then gradually increase the value of m, our line’s slope gets steeper and steeper.It approaches a vertical line, but it never quite gets there because we can’t ever really get to infinity…there’s always a number that’s just a little bit bigger.As you can see, the function y = mx can make a LOT of different lines.But wait… there’s more!Don’t forget about negative numbers.What would happen if instead of picking m = 1, we pick m = NEGATIVE 1?If we make a function table and graph for that case,we end up with a line that splits quadrants 2 and 4 exactly in half.It has a slope that’s similar in magnitude to y = 1x,but as you move from left-to-right, it’s going downhill instead of uphill.The slope is negative 1.Basically, all of the negative values of m give us lines that are just mirror images of the lines we get from positive values of m.This is m = 1, this is m = -1This is m = 2, this is m = -2This is m = 1/2, this is m = -1/2…see the pattern?All of these possible lines have a positive slope,and all of these possible lines have a negative slope.And when we consider ALL possible values of m, you can see that the equation y = mx can describe ANY linear function that passes through the origin of the graph at (0,0).But, what if we don’t want to be limited to lines that pass through the origin of the coordinate plane?


No problem!All we have to do is add something to this very simple linear equation.And I mean literally ADD something.We’re just going to add a variable called ‘b’ to the end of our equation which will give us y = mx + b.To see what effect this new added variable has,let’s set our m value back to 1 and keep it there while we just try out different values for b.And we’ll also leave the graph of y = 1x on the coordinate plane as a reference to see how it compares to our new lines that have ‘b’ values.Let’s keep things simple and start with b = 1.That gives us the equation: y = 1x + 1And if we make a function table and graph it, this is the line we get.Notice that it’s parallel to the reference line.That makes sense because in both equations (y = 1x and y = 1x + 1)m = 1 so the slope is the same for both lines.What’s different is that the value we chose for b (positive 1)shifted the entire line up on the coordinates plane by 1 unit.Now the line doesn’t pass through zero on the y-axis.It passes through positive 1 instead.Okay, what will happen if we choose b = positive 2?That gives us the equation y = 1x + 2 and its graph looks like this.It’s been shifted up 2 units and now passes through the y-axis at positive 2.And if we pick b = 3, it would shift the line to intercept the y-axis at y = 3.The bigger the value for b, the farther the line is shifted up.But, what goes up must come down!Can you think of a way to do that? …to get the reference line to shift DOWN instead?Yep, let’s try using negative numbers for b.(Remember, adding a negative is the same as subtracting.)If we choose b = -1 we get y = 1x + (-1),which is the same as y = 1x - 1.And sure enough, that shifts the line down so it crosses the y-axis at -1.And if we choose b = -2, it would shift the line down so that it crosses the y-axis at -2.So do you see what the variable b does?It determines exactly where the line will intercept the y-axis.It does that because whenever x = 0 (which happens only at the y-axis) the ‘mx’ term will be zero and we’ll be left with the only b.So when x = 0, y will just equal b.Because of that, b is the called the “y-intercept”.And as we saw earlier, m is called the “slope” of the line.And that’s why the equation y = mx + b is called the “slope-intercept form” of a line.The two parameters ‘m’ and ‘b’ determine the line’s slope and its y-intercept.And with this simple linear equation,you can describe ANY possible linear function on the coordinate plane.But you might be wondering if that’s really true.I mean… don’t we also need to be able to shift the line side to side?Nope, and here’s why.



Let’s say you want to make this line that appears to be shifted to the left of the y-axis.Well, if we zoom out just a little bit,you’ll see that we could get the exact same line byshifting our parallel reference line UP on the y-axis instead.This works because the lines are diagonal and they continue on forever in either direction,so moving them up and down is equivalent to moving them left and right.You can graph any 2D linear function with just two parameter:the multiplied variable ‘m’ to rotate the line,and the added variable ‘b’ to shift the line.And that’s why the equation y = mx + b is so important.It’s really all you need.But of course, there’s always ways to make things more complicatedand you’ll probably encounter linear equations in a lot of different forms.But as long as the equations are truly linear functions,you can simplify them into this y = mx + b format.Okay… but how do you tell if you have a linear function if it’s in a different form?Well, to be a linear function, equations can only contain first order variables.That means that the x and the y terms in the equationcan’t be squared or cubed or raised to any powers other than 1.So these are all examples of linear equations,but these are NOT.And to see how you can re-arrange any linear equation into the form y = mx + b,let’s try to do that to the first equation on this list: x - 4 = 2(y - 3)We’re gonna use what we learned in previous videos about combining like termsand re-arranging equations to get this into the y = mx + b formso we can easily tell what the slope and y-intercept would be.Let’s see…



 we want to get y all by itself, so first we divide both sides by 2.On the right side, the twos cancel and on the left side we have to distribute the division so we get ‘x over 2’ minus ‘4 over 2’, which is the same as ‘one-half x’ minus 2.The next step to get y by itself is to add 3 to both sides.On the right, the -3 and +3 canceland on the left, we have -2 plus 3 which is positive 1,so the equation becomes 1/2x + 1 = y OR y = 1/2x + 1Now it’s in y = mx + b form so we know that the slope is one-half,and the y-intercept is positive one.Alright, so that’s the basics of linear equations.It’s really cool knowing that you can graph any possible linear function on the coordinate planewith the simple equation y = mx + b.

Thank for Reading for more stay connected to us and leave your comment in a comment section follow us on google plus..

Sunday, 4 February 2018

Basics of Object-Oriented Programming

1.1 Object-Oriented Programming


Object-oriented-programming
Object-oriented programming
Object-oriented programming (OOP) is a programming technique in which programs are written on the basis of an object. An object is a collection of data and functions. Objects may represent a person's things are placed in the Real world.In OOP, data and all possible functions on data and grouped together.Object-oriented programs are easier to learn and modify.

                   
 Object-oriented programming is a powerful technique to develop software.It is used to analyze and design the application in term of objects.it's deals with data and the procedures that process the data as a single object.

          Some of the object-oriented languages that have been developed are:

C++
Smalltalk
Eiffel
CLOS
Jave

1.1.2 Features of Object-Oriented Programming 

Following are some future of object-oriented programming:

1. Objects:

OPP provides the facility of programming based on object.object is an entity that consists of data and functions.

2. Classes:

Classes are designs for creating objects.OOP provides the facility to design classes for creating different objects. All properties and functions of an object are specified in classes.

3.Real-word Modeling:

OPP is based on Real-world modeling. As in the real world, things have properties and working capabilities.Similarity objects have data and functions.Data represent properties and function represent working of objects.

4.Reusability:

OPP provides ways of reusing the data and code.Inheritance is a technique that a programmer to use the code of existing program to create new programs.

5.Information Hiding:

Oop allow the programmer to hide important data from the user.It is performed by encapsulation.

6.Polymorphism:

Polymorphism is an ability of an object to behave in multiple ways.

1.2.Objects:

An object represents an entity in the real world such as a person, thing or concept etc.An object is identified by its name.An object consists of the following two things:

-Properties: 

Properties are the characteristics of an object.

Functions:

Functions are the actions that can be performed by an object.

Example:

Some Examples of Objects of different types are as follows:


update soon so stay connect us....

Saturday, 3 February 2018

how to make money online in 2018

how to make money online in 2018


In this article I share with you how to make money online in 2018. How I've been using this very simple system to create residual income online and have been able to create a full time online with it within a few short months.
how-to-make-money-online-in-2018
how to make money online in 2018

Hey what  s up it is a Paul farmer from paulgfarmer.com and you  re probably here because you look in for a way to make money online in 2018 now you want to create a residual income online and I  m gonna actually show you how to make 10k a month so what I  m gonna be doing is showing you a simple system a simple system that you can plug into no matter if you  re brand-new never made any money ever online or if you 're a seasoned veteran it does not matter where you  re at on that spectrum this system will absolutely work for you I  m gonna be sharing some proof with you I  m gonna be showing you what the system looks like and I  m gonna show you some support resources that we provide for you so this absolutely can be a success okay so let  s go ahead and get right to it all right so right now we are on my Facebook wall and I just actually made a post this simple system maybe 10k this month so 10k plus this month actually and the day it  s not over this is January 31st 2018 so I  m actually going to show you how I went about doing that so you can go and do it yourself really exciting right so what I  m talking about it  s a simple system a system that basically does the heavy lifting for you so really there  s no setting up stuff like you don  t have to go and set up a bunch of stuff you don  t have to go and and be like a web program you don  t have to be a real techy person this works for for any body as long as they are willing to take the simple steps and do what is required to get there I should let you know that you know if you hear something in the background is this my cat he  s a little bit excited I am a real guy my background is I came from being a physical education teacher I was a personal trainer and I found my way online basically when I lost my teaching job I was laid off from my teaching job and my goal was just replace my income and that  s how I came on long online that  s just it in a nutshell I  have had a lot of different experiences good and bad and I  m just very excited to share this opportunity with you because I know what it can do for you all right so what I  m going to do is I  m going to jump over here and the name of the opportunity is power lead system and what power lead system does is it provides tools and training so what it does is it basically provides tools and training for business owners whether they are online business owners multi-level marketing business owners offline business owners it does not matter they provide tools and training and those people can use and there are a lot of those people looking for a way to get what  s called leads and sales they want to make more sales make more income make more profit okay and that  s what this can do so I  m just gonna jump right into it and with in power lead system you  re gonna see something like this there are different product levels everybody  s gonna start at what  s called gold if you want to be a customer of the program and use the tools and the education the training the marketing training teaches you how to go and make an income online all with it with in-house then you  re gonna start with gold everyone starts with gold as a customer now if you want to earn and and this is optional by the way you can just be a customer and and use the products use the training and and use it for your business what ever that business may be and help you generate more leads and sales so that  s 30 dollars a month okay now if you want to be an affiliate which I am I  m gonna affiliate if you want to be an affiliate then you  re gonna pay an extra twenty three ninety seven a month that  s gonna be a total of fifty three ninety seven and that  s gonna allow you to earn from this very amazing very leveraged compensation plan so really earning income online is actually very simple and it just involves you plugging into a system a system that does the telling and the selling for you like I said at the beginning you don  t have to create pages you don  t have that you have to do any of that stuff it  s all set up for you you have one job and that is to get people to see your offer and I  m gonna talk about how to do that it  s actually very very very simple to do all right so this is power lead system a few things you should take note of if you want to use the affiliate program if you want to earn good income you know that that could become good income then you want to purchase all of these products so basically your back-office this whereI  m at right now it  s gonna be all green it won  t be any red all right so we have gold which is $30 a month plus 2397 been affiliate then we have fruit that  smonthly that  s your residual income Weepie so think of it like this you have residual bills every month you have a cable bill every month you have autility bill every month you you might have rent or mortgage or or a cardinalor something like that you have some kind of residual bill that comes in every month your cell phone now what we  re doing here is we  re paying ourselves right we  re gonna create residual income that comes in every month for ourselves instead of having to pay every single month this bill this bill this bill would it be great if you could just take the income you  re earning from this and replace those bills right so you  re not paying out of pocket anymore would not that be great if you had some extra income you can do that well you can absolutely can I  m going to show you proof of how this works okay so first thing you want to do become Gold member then become an affiliate okay so the 53 97 a month that  s your out-of-pocket expense for your business that  s it if you were to go offline and try to start a business offline well just look just take my word for it it  s gonna be way way way way more complicated and yours been way way way way more money okay 53 97 a month is a drop in the bucket it  s nothing okay next you  re gonna want to get free odd secret this is a training that teaches you how to use traffic get free traffic and not gonna go too much into that but it  s a strong training it  s only 147 one-time these two right here these two are only one-time payments this will pay you $100 per sale so whenever you share this with someone and they purchase it you get $100 and this one is 497 one-time every time someone purchase it you get $400 now I  m not gonna do a full compensation plan here I can tell you this is very leveraged because at the gold level not only do you get residual income which comes in every month you get 50% matching bonuses from anyone that you bring in to the program anyone you bring in and they get started at gold and they go make sales - you  re gonna make 50% of what they make so if they go out and they make $1000 for the month you just made five hundred and you did not do anything what if you have a few of these people doing this I mean this could really add up really quick and that does not even cover all the bonuses everything you get within this compensation plan again I  m not gonna go in deep because what I  m gonna do is give you a little card you click on it and go watch the compensation plan video and I go more in-depth than that in that video okay so let  s get to the results because I know that  s what people want to see just real quick before I get their training let  s talk about training okay because power lead system is a training platform it  s it  s a marketing tools and training platform alright soon e of the things you  re gonna get when you get started as a gold member is this it was free leads 2017 and what that does is that teaches you how to use social media Facebook LinkedIn Twitter Instagram you name it any social media and go to attract people to you and get endless free leads endless leads okay you not to pay for these weeds they come to you and you can connect with them he teaches you how to do everything and if you were to buy this product outside a power elite system you go Google it you could search for it it  s it  s like four hundred dollars okay so you  re not paying $400 you  re paying fifty three ninety seven for it it  is because it  s basically free if you really think about it and road map to riches okay this is another free training that you get with power lead system and in this you  re gonna learn about the company the company  s been in existence for many years started in 2013 and its software component actually started in the 90s okay back in the 90s so this program is a solid program it  is been around a very good amount of time and it  s this is a great read this will teach you how having a twenty dollar residual income product just a twenty dollar residual just the gold level can start adding up and create a ten thousand dollar residual income for you when you follow the plan okay it  s very simple plan now power VIP club now what this is is this as extra pages extra training just a lot of value right there you get access to that as well now when you purchase the upgraded packages you  re also gonna get this social profit Academy which teaches you how to do Facebook PPC how to sell t-shirts how to do ecommerce all kinds of stuff you  re gonna get this this one here is the diamond level okay now this is what you  re gonna get here so that  s atraining there as well and then over here we have all the trainings that power lead system does all kinds of stuff system videos training weekly training because there  s weekly training live training that  s done in 



            



this program every Wednesday and Thursday there  s weekly training there  s actually training just about every day of the week that they provide so there  s just a ton of value here this is not just you know I  m throwing air at you or any thing like that there  s real value here that you can use to help you make more money okay so let  s look at some results now okay so I  m gonna go to my Commission  s earned and just kind of show you what  s going on here alright so this is today this is where I  m at for this week about four hundred ninety dollars so the week is just beginning and I  m almost to a five hundred dollar a week that  s to me I think that  s pretty incredible especially since I haven  t done a whole lot this week okay I  m gonna show you the last few weeks alright so basically here is a three thousand four hundred seventy dollars remember this is weekly this is paid every Wednesday 22 18 fifty now these vary because I can  t control who  s going to upgrade to the different products okay I can  t control that all I can do is follow some simple steps and things fall into place so they do rank they  renotal ways the same this one is 1600 450 this one is two thousand eighty five dollars and this one is four hundred ninety dollars now if you add all of those up this is for the month of January that is over ten thousand dollars in one month it  s actually ten thousand sixty eight dollars where I sit now the day is not over the way this system works let me just show you what  s going on in my email real quick so what happens here when you when you get sales okay when sales come in when your team makes sales you get this notification from power lead system remember I said it was called priceless possibilities that  s their software platform okay and you get this email these emails come in pretty much throughout the day once you get going and you  re just gonna start seeing these now I have 544 entries and I could track this back to September early September that  s where I really started taking this program seriously and every single day you  re gonna see these sales coming in so there  s Gold  s there  s diamond there  s fast start now fast start that means you made four hundred dollars now for me this is for my team okay I did not make this my team made this so I got a bonus of $50 just because they made it I got bonus of 25 just because they made it okay if it was to me it would be $400 if they did not have that product it would pass up to me and I  ll make the 400 I make the 100 okay so this can add up really really quick again it  s not a compensation plan video please check the card above and watch that compensation video so you really understand it alright so as you can see like if I just go through the dates all I want you to do is look at these dates okay so right there this is today this is the 31st of January we got one two three four five six seven eight eight okay that  s eight so far today well actually that was this was yesterday so I  m sorry one two three four today yesterday was one two three four five six seven okay and then we just keep going through okay there  s the 29th there  s 28th 27th there  s the 26th there  s the 25th there  s a 24th there  s the 23rd and what you  ll see is every single day just about every single day there are multiple sales coming into this thing it  s really quite incredible okay so how am I going about getting these sales I know that  s that  s a question you probably have let  s listen analyze it  s just a little bit okay so what I  m doing is I  m using what  is called a funnel I  m using a system a simple system that again I said is setup for you so these are the components of the system first component is what  s called a capture page a capture page is where you go and you you put some kind of information that that somebody  s gonna want to see right that they  re gonna get curious about they want more information about and they  re gonna put their information in that  s what  s called a lead you just captured a lead okay so now we have the capture page which is gonna lead to what  s called a sales page and here  s the sales page I use now the sales page job is basically to do the telling and selling do the educating of the prod to the service of the benefits all that fun stuff that  s what it does I  m not going out I  m not explaining all this stuff my system is doing this now I did not create this system these pages were created for me I did not create them I  m using done-for-you pages all ready to go out the box okay you just have to put them together and we provide you with a step-by-step guide it shows you exactly what to do to put these together and it does not take long at all to do this all right so you  re just gonna go through it has a nice video has a five-minute 44 second video and then as you scroll through you can learn more about the program okay and how it works here  s the compensation plan how that works so you definitely take a look at that if you want to learn more about this if you want to see this page and analyze this page you can just go to the link right below this video and it will take you right into it you can see how it works okay so from this page what happens is now the person that put their information is in is now going to start getting emails for the next month or just gonna come out automatically these emails are already written for you you do not have to go write them they are done they are ready to go right out the gate and now the fall up process begins because a lot of time people don  t buy the very first time they see something usually they have to see it seven to 12 times before they make a decision so that  s the importance of the follow-up series the emails that go out all right so that a nutshell is how it works and what you want to do is you want to get eyeballs you want to get people to see your offer so how do we go about doing that well for for to begin with one of the ways I showed you already okay it  s right here endless free leads 2017 now there  s a lot of different ways to go about getting people to see your offer and we actually teach you exactly how to do this exactly how to do this whether you want to do what  s called paid advertising because remember you  rerunning a biz this so paid advertising that  s the fastest way to get people to see your offer but we also show you how to do it for free and that free in this leads was another way but we have a group a Facebook group set up is called freedom takers where we provide you step by step training okay so if you go to the file section in the group you get step-by-step training on what to do how to get eyeballs how to get people to see your offer okay so that  s all back here in the Files section okay also let me just show you this we have what  s called a fast start guide okay so let me just pull this up real quick and on this fast start guide this has been set up to help you get up and running as fast as possible okay so the first step is gonna be to set up your funnel which is actually very very simple to do I  ll show you exactly how to do it on this video after that we want to get what  s called traffic we want to get people to see our offer so they can get accustomed to it so they can learn about it and make a decision if they want to do it or not they want to use the tools they just want to be a customer if they want to bean affiliate like I am you know and earn from from the program they can do that and then we talked about the importance of following up ok so all this is laid out for you I have also included other videos too that go a little more in-depth and some other things as well but this is the basics this is what you need to do to start earning good money online to start creating full time income it really is this simple ok maybe it seems like it  s a little challenging to you right now but trust me if I can do this you can do it ok when I started online I knew nothing absolutely nothing and literally we are creating tons of shortcuts for you I mean this is this is literally this is exactly what to do to earn a full time income online this is exactly what - the easiest way you could go and try to create your own products you could go and and try to create your own pages there  s all kinds of different things you can do to earn but this is just a very very simple simple way to do it all right so I do want to show one more thing and that is for our Platinum members okay for our Platinum members we do have a group a private group and in this group we have we just did a two-week master mind where we show you step-by-step exactly what to do everyday okay a blueprint and this is for our Platinum members we have other resources as well you don  t get elsewhere in this group so as a bonus when you decide to that you really do want to make this thing happen you really do want to make a full-time income you really are serious about doing that and you decide to purchase all the products position yourself to make the most money then you get access to our platinum group where we provide you with exactly what you need to do on a daily basis exactly what you need to do okay so it  s very exciting definitely want that and finally I forgot to show you this group here is where we share our results okay so it  s not just me getting results I want you to see this okay it is everybody like there  s all kinds of people posting it here all the time and as I scroll you can see there  s all kinds of people posting you here that are showing how they are getting results okay that  s a diamond it  s a hundred dollars for that person okay right here we have a gold member $20 and $20 $20 okay so people are posting all kinds of things in here showing results $20 and you are free to come into this group if you just want to check this out and see what we  re about see if this is a fit for you go to Facebook type in freedom takers click join the group and we will get you approved into the group and you can just hang out and see for yourself what it  s all about okay so that  s what I got for you today I appreciate you being here go ahead and click that link check out the funnel I just showed you and learn all about it if you have any questions feel free to reach out to me and I  ll see you on the next one

how to make money online fast and easy

how to make money online fast and easy


Are you searching for how to make money online fast and easy? In this article, I go over 8 active income sources, and 8 ways to make money online using passive income, including my proof and recommendations. From Freelance jobs to automated online courses, earning income online has never been as easy as it is now in the digital age.

how-to-make-money-online-fast-and-easy
     how to make money online fast and easy
hey guys I have two main goals with this article the first one is to educate and motivate you to learn how to make money online and the second is to beat improvement pills article on the same topic and hopefully by accomplishing the first goal by educating and motivating you and adding immense value through out this video it will lead me to my second goal because for some reason I am reallycompetitive anyways the first time this video will be about active income andactive income is basically exchanging your own time for money and the last half of this article will be about passive income online which basically means thatit requires a little bit of initial startup time and resources but very verylittle upkeep once you set it up and at the very end of this video I  m going togive you my 3 recommendations for a beginner what I would have told myself along time ago if I was starting to try to earn money online so feel free to sitback and learn you can even minimize this video if you  d like anyways here we go so if you  ve never heard of Amazon MTurk before what it stands for is Amazon Mechanical Turk it  s basically a marketplace hosted by Amazon to dothings that robots can  t do that they have to have humans to do and they out source it to you guys they outsource it to people with extra time who want toearn a little extra money there are all kinds of tasks on this website any where from searching data to data entry to transcribing which transcribing means watching and listening to a video or audio file and then typing it and youcan actually make fifteen to thirty dollars an hour if you know how to dothis correctly and if you know more than one language you can actually make moneyon this website by translating stuff now I  ve personally done this and I earnedaround forty to fifty dollars and I didn  t put much work into it but my friend he worked a full time job and he actually did this on the side and he didit for a couple months and actually earned more than I think it was likethree hundred fifty dollars each month so they are real they do payout you justhave to put the time into it another way to make money online is by eBay now youcan combine eBay Craigslist you can even go to the dollar store Facebookmarketplace and basically what you do is you become an entrepreneur buying lowand selling high you know you go to your local dollar store and you find thislittle trinket oh that looks cool I want to win it cost on eBay you lookit up on eBay and you can sell it for 20 more dollars it  s maybe it  s a supersoaker water gun you buy it at the dollar store for three dollars you sellit on eBay for twenty three boom twenty dollars right there it probablydoesn  t even take you an hour worth of your time anyways there are all kinds ofmarketplaces out there and if you learn how to leverage them what sells best towhere you can make a ton of money flipping stuff number three is surveysnow surveys are kind of a pain in the buttespecially because I start getting some spam in the mail but you can  t make aton of money on this there  s places out there like swag bucks which I  ll talkabout later inbox dollars my points there  s all kinds of places you sign upto you take daily surveys and you make money that  s not going to be asubstantial amount like thousands of dollars a month but if you have agrocery bill or rent or some other type of expense that you need to get takencare of that month and you have some extra time it  s a great way to fill thatgap now on to swag bucks swag bucks is pretty cool because you can literallyget paid by searching stuff so I did this probably a couple years ago andI  ve been doing it every now and then when my free time and you can earn a lotof extra money doing this basically instead of going to Google you use swagbucks custom search engine which you can set it to Google and you search stufflike how to tie a tie and then every once in a while they  ll give you areward for using their search engines now there are tons of other ways to earnmoney on swag bucks you can actually shop if you  re going to shop on Amazonand you shop through them they will actually pay you a percentage of moneyfor doing that you can watch videos that they have basically like watchingadvertisements other companies you can play games answer surveys there  s allkinds of ways to make money on this and they do pay I have been paid by thiscompany usually they just pay you buy gift cards which isn  t that bad afterswag bucks is instagram shoutouts our instagram shoutouts is really cool butit does take a little bit of time to build up because you have to have aninitial following that  s really cool because initially if you want to get awhole bunch of followers you can go through follow 100 people and thenunfollow that 100 people and you  ll usually have a net gain of like 10 to 50new followers if you do that over time maybe a thousand times in one month or acouple months eventually you  ll start to gain followers and if you need to youcan actually buy them but after you have that initial following you can actuallysell shoutouts if you haven  t followed me on instagram yet follow me atpractical underscore psych there  s some awesome updates on there that I can  tshare on YouTube that I share on my Instagram anyways when I get to around200,000 maybe even half a million I can start askingpeople to pay me so that I can shot them out I have a friend who does this he hasaround 2 million Instagram followers you might think holy moley that  s a lot offollowers to get I don  t think I can ever do that well he said the same thingaround 2 years ago and now he makes around 5 to 6 thousand dollars a monthjust by doing shoutouts he  s easily made his money back the next way to makemoney online is by freelance jobs now one of the best marketplaces forfreelance work is up work and this is actually what I use for all kinds ofother stuff so if you  re a video editor if you  re a graphic designereven if you just want to like literally play a video game or test a websitepeople will pay you to do this also if you  re ever in need of a virtualassistant up work is a great place to go personally I use of work to hireoccasional article writers video editors and even they do some graphic designwork that I don  t feel comfortable doing myself but you can sign up to up work asa freelancer which means when someone post a job you can do it boom they  re 60bucks in your pocket for designing a background or boom there  s $100 in yourpocket for editing a six minute video now another usually cheaper marketplaceis fiber the fiber is really cool because there  s a lot more people that do it usually because this stuff is cheaper and you can make money byselling your services so you can do SEO work you can do video editing graphicdesign even website feedback if you  re comfortable doing that well you can sellyour own services but there  s another way to make money with Fiverr that notvery many people know about if they do know about it they  re usually raking ina ton of cash and that is to buy services from Fiverr for $5 $10 and then sell them to businesses who don  t know how to get the same services that cheap for maybe $100 $200 I  ve literally seen some guy go to a company and say heyI  ll make you a logo for $500 and then he takes that and he goes and pays fiveor $10 he gets a great logo and he just made like over $400 profit for aweekend  s worth of work it  s crazy once you learn how to do this you can scaleit and make all kinds of money now let  s talk a little bit about passive incomenow if you don  t know anything about passive income I highly encourage you tobuy my ebook in the link below it  s called passive income tutorial and itgoes through all kinds of mistakes that I  ve made in the past and what I  ve donein the past that has made me successful in fact one month I actually earned $15,000 a couple months later I actually didn  t do any work for a solid month Iliterally read books all month I didn  t do anything online and I earned $4,000if you watch all the way through this video there will be a video in the inscreen showing that proof and the reason I did that was as a testimonial to say Iknow how to make passive income online and you can buy this ebook if you wantto learn how because there are a ton of people out there who say they can make money online but the only way that they make money online is by selling otherpeople the dream that they can make money online - any ways the first way youcan make passive income online is by selling photos so there are all kinds ofwebsites out there that will pay you a percentage of how much money they earnfrom selling your photo so stuff like SmugMug Pro Shutterstock iStockphoto ifyou  ve ever tried to buy a photo you  ll realize wow that was a hundred dollarsfor one photo well that  s because Shutterstock pays apercentage of that money to the person that took that photo and you can do thesame you can take one photo and then sell it on shutterstock and who knowssomeone might buy that every day and you  ll get 50 bucks that  s 50 bucks aday that you don  t have to do any more work and that  s the glory of passive income the second way that I  ve learned to make passive income online is through Click bank now Click bank is a market place basically of other people  s products andthe cool thing about this is is that you get to sell someone else  s product it  s basically affiliate marketing and I  ll talk a little bit about that in thefuture on Click bank personally there are only two products that I highly encourage someone to buy because I have bought them before and they  re super easy to sell the first one is K money mastery and the second one is video break through Academy and video break through Academy it was actually created by one of my youtuber friends anyways what you do is you make a whole bunch of content and then you lead people to your affiliate link and then whenever someone clicks on that affiliate link you get a percentage ofthe sale for example video break through Academy every time I sell one of those I get half of whatever someone pays for the product so if they pay $300 for thatI will earn $150 some people make over 60,000 80,000 there are even some people who earn over half a million dollars online through selling other people  sproduct the third coolest way to make passive income online is through Amazon affiliates now the way that Amazonaffiliates work is that you put a link in your description of your YouTube channel or your blog or some other website that you have and what happensis whenever someone clicks on that link boom they get a cookie on their browser which means any product they buy on Amazon for the next 24 hours you get apercentage of and one example of this is that on my youtube channel I sell ebooks I create book reviews and then I sell books in the affiliate link in the description and someone actually clicked onto one of those links and then wentand bought a thousand dollar camera now I personally did not sell that thousand dollar camera but what happened was Amazon wanted to reward me for directing the person to Amazon and they actually gave me like 50 bucks for that sale I wasn  t even selling a camera and that was something that is really cool that alot of people can do and usually the more clicks you can get on your Amazon affiliate links the more money you will earn even if it  s not selling your product now one guy I know who has earned a ton on this and has all kindsof experience his name is Luke Lincoln and he is a website that literally sells just wireless routers and he is documented that he has earned over fortythousand dollars in one month from Amazon affiliate earnings now I mentioned earlier that I actually have an e-book and that  s a whole another waythat you can make passive income is by selling Kindle e-books now Kindlee-books are really easy to create and some people think that it  s just reallyhard to make them so they don  t get into them but I bought and went through the Kmoney mastery course which I  ll link in the description below and it teaches youhow to create a Kindle eBook how to market your Kindle eBook how to dolittle tips and tricks on the Kindle Store so that it does well and sellingand I did that before I created my passive income tutorial ebook and it did amazingly well I  ve earned like six or seven hundred dollars in the firstcouple months the trick with making money on Kindle is not that you have onebook that makes you a thousand dollars a month it  s having 100 books that makesyou a dollar a day so that adds up and over time your investments start toreturn on themselves and you have a hundred ebooks maybe making between oneand two sales a day earning you one hundred to two hundred dollars a day andthat adds up over time so if you  re interested in that I highly recommend going and checking out K money mastery and you can do something that improvement pill recommended which is to buy the product and then go through the course learn everything and then if you need to for some reason you need that money back you can ask for a refund because there is a 30-day refund on that product you can get that money back and then you can start creating your Kindle courses and then when you start earning your money back you know it  s a respectthing it  s a moral thing you should buy the product again so that the guy getshis money the next way to make passive income online is by selling digitalfiles now one of the best sites that I found to do this is self Icom andusually they take a commission of whatever you sell it  s like two to five percent I think but you can create a small little course or you can have website templates or you can have your own WordPress themes and sell it on this website drive traffic to that and then eventually I  ll make money another wayto make money by selling stuff is signing up for you to me and teaching acourse now I  ve heard by some specific people that udemy kind of sucks becausethey  ll gyp you out of money because it  ll take your $300 course and then putit on sale for $10 so that they can get more users on their website and that  skind of blackhat kind of ripping off creators but what I recommend doing is going to teachable calm teachable for me personally I think it  s way better thanyou to me and it  s actually what I  m going to be making my own personalcourses on I  m almost finished with a habbit course and I  m working on someideas on social skills money management and the psychology of your thought thosecourses if for some reason you  re interested in this course and you wantto coupon on them whenever they come out I guarantee you you will have a couponyou will get a better price than everyone else if you go to practical picomm and put your little email in that newsletter thing that whenever I launched that course I will launch it with a coupon code so that you  ll get ita cheaper version so onto a membership website and this is essentially what Iwas going to do with practical Pi I was going to say all right everyone $30 amonth you can sign up to my membership site you  ll get all kinds of information that I  ve learned have regurgitated from books everything I  ve learned frombusiness psychology relationships but those kind of membership sites take alot of up keep and I didn  t want to do that on my own so I outsource it toteachable and whenever I launch my course that  s what I  m going to use thisteachable instead of my own membership website so that I don  t have to dealwith the coding and the back-end stuff and the last way that I  m goingmentioned how you can make money online is by building a youtube channel nowwhen you build a YouTube channel you can make a lot of money with ad revenue butit takes a ton of views you can actually make way more money if you sell stuff inthe description you might get 10,000 views and that might earn you $20 but ifyou get 10,000 views and 10% of those people buy a $300 course of yours that  sgoing to earn way more money than the video ever will so when you build aYouTube channel you have got to be passionate and I cannot stress thisenough because there are tons of people who get into YouTube and will make acouple videos and then fall out because they  re not passionate about it and theyjust give up and for me I want to tell you guys personally it took 98 videosfor my channel to hit that big golden star and to go boom YouTube likes thischannel it  s going to start promoting it one of my videos got into recommended Ilearned and after creating 98 videos I got really good at how to create titleshow to make your thumbnails and how to make sure that the viewer was engaged Ilearned how to do all of that through 98 videos now for some reason if you wantto skip making 97 videos and you want to have all of that experience on your ownyou can actually go and check out the video breakthrough Academy it  s actuallycreated by one of my friends I  ve went through the course and I was like man Iwish I could have learned this stuff back when I was starting my youtubechannel so that I didn  t have to learn it all myself actually going through hiscourse I learned even more and it was really helpful so if for some reason youguys want to check that out I  ll put a link to that in the description belowit  s called video breakthrough Academy there  s some amazing value and there hegoes over how to make more money on YouTube videos he goes over how to docollaborations correctly he goes over how to record a video how to script thevideo a whole bunch of little tips and tricks for engagement and anyways thatis one of the best tools that I would suggest so that you can learn how tomake money online quicker so we  ve went over about 8 active income tips which isin Turks eBay surveys swag bucks Instagram shoutouts freelance workfreelance work on Fiverr and then actually selling fiber products to hirebusinesses and then we also went over eight passive income strategies and thatis to sell photos online utilize Clickbank and affiliate sales Amazon affiliate sales selling Kindle e-books selling digital files on sulfide usingudemy are teachable to create an mine course creating your own membership website and building a YouTube channel so now I  m going to give you my three recommendations for any beginners who want to learn how to make money onlinethe first is to buy the K money mastery program ask for a refund and then buy it again later after you  ve made your money back you can learn as much as you wantbut premium stuff will always contain value and sometimes just paying thatinitial cost of buying the K money mastery program will motivate you towork harder and become successful so that you can actually earn your money back it  s a great course that would be my first recommendation for a beginner who wanted to learn to make money online as it  s been said in the past you  ve gotto spend money to make money and this course really doesn  t cost that much forhow much you  re going to be getting out of it my second recommendation is tosign up for fiber and offer whatever skills you have now there are a ton oftutorials on this and if for some reason you don  t have a skill you can startwatching youtube videos learn Photoshop learn After Effects learn how to code awebsite learn how to create a beautiful user interface whatever you can do to offer the world value and then sell that value on Fiverr and you make most of your money on Fiverr not by selling a 5 dollar product but by the upsellsselling more expensive upgrades and my last recommendation for beginners is tobuy my ebook in the link below now of course I will be earning money on thisbut hopefully I ve added enough value in the e-book that you will earn way moremoney back the first third of the e-book is actually going through my mistakesand what kind of mistakes you guys can skip in the future so that you can makemoney online quicker basically it  ll help you jump-start your online income career if that  s what you want to do I hope you guys enjoy this video I hopeyou got insane value out of it if you did share this video with your friendsclick the like button and subscribe if you want more

Friday, 2 February 2018

HOW SUCCESSFUL PEOPLE THINK - Motivational

HOW SUCCESSFUL PEOPLE THINK - Motivational 


HOW SUCCESSFUL PEOPLE THINK 
I was a big dreamer you know, and Somy job was to clean these 7 floors between Friday, and Sunday.Every time I would go to the 7th floor was the CEO; s offices I would bust in like I was the CEO, I'm dreaming like I'm the CEO now and who would have ever thought I; 've been blessed and here I  am the CEO of my own company.well I think that the number one thing is you have to have a very clear visiona very clear goal of where you want to gobecause only then you will get thereuh you can have the best airplaneor the best ship in the world, but if the captain doesn  ;t know where to go he will just drift aroundif the pilot does not know where to go he will just drift around with his planeso it  ;s uh I think the key thing is that we know where were goingand that your very passionate about that you see it always in front of you, the goal.To thrive in whatever you do please understand your terrain know what your target is don; tguess it is as clued up as the next man because of that; s, that; s, that; s your petrol that; s your fuel to get you moving.If you don; t know where you're going, what your targets are, you're never going to get there period.The other thing that; s important is you got to shoot for the top you got to go, and really have big goals and think big because then your going to get big then your going to go and achieve big things that are the most important thing and, you don; t achieve big things by accident.I have to tell each and every one of you that it doesn't; t matter how-how old you are how young you are, your age, you can achieve anything that you set your mind too and I always say if I can do it anyone can do it.If you think that you gonna go, and accomplish something really special, and be the best in anything in the worldand you think you can do it without workingyou make a big mistakebecause no matter what I did if it wasn  ;t in bodybuilding or in acting or if it isn  ;t in the political arenait always took a lot a lot of workand you got to put out, and you got to you know, sometimes its going to take a lot of sacrificesand notice If your not willing to work hard forget about it.I truly believe we are all equal as human beings, if we are obsessed with something, and we truly pursue our passion with everything we haveregardless of any, anything elseif you are obsessedwork hard put in the time you will succeed, and that is a philosophy that I carry, my coaches carryand to see Lebron James who is like a mega superstar over here, and a phenomenal, phenomenal athleteshare that belief is inspiring right back to me, and shows that we are thinking correctyou know this is, this is hard work, this is an obsession, nothing can beat hard work.This here is the reality, do you mean that the competition is not the reality?Listen, the work is behind the scenes.Competition is the easy part.Behind the Scenes is where all the work is done and everything is done to get to that one race that you need to run.I always question myself in the best of times, even when I was well number one for many many weeks, and month in a row.at certain times during the year I said " what can I improve?", " what do I need to change?" because if you don; t do anything or you just do the same thing over, and over again you stay the same and staying the same means going backward, because the other guys, are working harder, and improving so I always need to find ways to improve my game as well.Very often watch a lot of young people sort of meander around without any idea about why they're doing what they're doing.I mean to want and to be ambitious and to want to be successful is not enough.