Pages

Tampilkan postingan dengan label should. Tampilkan semua postingan
Tampilkan postingan dengan label should. Tampilkan semua postingan

Selasa, 24 Mei 2016

Why Shutterstock Should Not Go Exclusive

Many independent contributors have been dying to join Shutterstock exclusivity if it offers one. But up until today, Shutterstock does not plan to do it simply because it will do more harms than goods. Hey, isnt this is an opportunity of a life time for Shutterstock to kill all its competitors once and for all? No.

First, we have to understand from the contributors point of view. There are basically two groups of contributors. Those that make thousands of dollars every month, and those who make pennies.

The Successful earn 50% from Shutterstock and 50% across all other agencies.
The Failure earn 95% from Shutterstock and 5% across all other agencies.

The above is however, a hard fact. If Shutterstock offers exclusivity, the Failure will immediately join the offer without doubt. The Successful, on the other side, will dangle between the fence because it is such a risk for them to change what is already successful.

In the end, Shutterstock will build up a lot of EXCLUSIVE, BUT LOW QUALITY images/vectors. This will not only harm Shutterstock, but the big contributors as well. The only winner here is the Failure which fail to produce quantity and quality.

To comprehend more, exclusivity means higher pricing, ranking, and royalty percentage for contributors. So, if the majority of the exclusive contributors are the Failures, you can imagine how poor Shutterstock will become. We cannot compare Shutterstock and IStockPhoto here because IStockPhoto has the first-mover-advantage in the industry. IStockPhoto captured and forged the Successful one when they have yet to become successful.

Unless Shutterstock can offer a very delicious and lucrative exclusive offer, then it might have a chance to totally win the heart of the Successful contributors, and at the same time, eliminates all its competitors once and for all.
Read More..

Kamis, 28 April 2016

10 Reasons Why You Should Sell Your Vector Arts Online For Graphic Designers Only

All graphics designers in this world should sell their artworks online. Below are 10 reasons of why every graphic designers in this world should try and sell their artworks online. If you are new to this, I strongly recommend you to read the FAQ here to understand how everything works.

1. You already have the knowledge to draw artworks, and it is a waste not to use your skills to gain more income for yourself. I started out as a web designers, earnings $3000 a month, and now just after 6 months into microstock industry, I have earn an extra $2000 a month (even without doing anything anymore).

2. You dont have to convince anyone. I understand that the frustration we have as a graphics designers. We feel frustrated when our clients dislike our works and request for changes. However, in this industry, you only need to pass through the agency reviewers (which is always easy). Even amateurs with some simple buttons design can manage to sell their artworks online. Take a look at an artwork I did 6 months ago. Believe it or not, I have manage to made over $300.00 in just 6 months time with it. And the sales is still coming in. For the record, I have only spent 3 hours with the below artwork. This simply means, my 3 hours of work is worth $300.00 and it is still counting.

stock vector : Badge Sticker Set Vector


3. No marketing needed from us. Yes, microstock agencies in this world are huge companies. They are companies that worth over $50 millions. Marketing and advertisement campaign are done by them. They are the hypermarket, and we are the producer of the products inside. Joining these agencies will allow you to concentrate on your work fully and need not worry about no one buying it.

4. Your vector artworks will be on sale forever. Once you have successfully uploaded your works into these stock agencies, you can then sleep well at night and check on your earning the next morning everyday. No business can be better than this for a graphic designers.

5. You dont need a funding to start. This is not a big business whereby you need a significant resources to start. As long as you have a computer, vector illustration softwares, and skills, you can already start generating income. Read this page to learn more on how to start selling your vector online.

6. You dont need a partner. In fact, all vector artists should do this alone simply because you dont need a partner to start. This is all individual work, and you dont want to waste your time in discussion.

7. You work for your hobby. There is no obligations, regulations, or any commitments you need to put into this. Microstock agencies do not force you to do anything. You do it whenever you feel like doing it. For your information, some vector artists produce 1 artwork everyday, while the other... 20 a day depending on the skills and quality of the work.

8. The biggest dilemma of being a graphic designer is to chase for the money. Clients sometimes drag our money to a very long extent and at worst, they never pay at the end of the day. After 6 months into microstock industries, I have to clap my hand and give praise to how efficient they pay my earnings. So far, I have not receive any late payment or delayed earnings at all.

9. The longer you are in the industry, the bigger you are. Buyers love to buy back from you if you can consistently produce good artworks. When your portfolio becomes bigger, your chances of selling is also higher.

10. And lastly, you can work from home :)

For a start, I would recommend you to join the below 6 microstock agencies and get yourself to register as a contributor to them.

Shutterstock
IStockPhoto 
Fotolia 
Dreamstime 
GraphicRiver

They have consistently create sales for my works and best of all, it is in an uptrend. 
I wish you good luck and may all the graphics designers in the world earn more.

Ohh, and before I forget, joining these stock agencies as a contributor is totally FREE.

Register as a contributor now :)
If you have any problem in the registration process, just ask me at this Facebook Discussion Board. I will try my best to help.


Read More..

Minggu, 24 April 2016

C Program should be able to search a value in the array using binary search algorithm

C# Program which takes n values in an array and then program should be able to search a value in the array using binary search algorithm

Program Statement:
Write a program which takes n values in an array and then program should be able to search a value in the array using binary search algorithm. Hint: You have to sort that array first because binary search can be applied only on sorted array

Solution:
 public class search
{
int n, num, s = 1, e, mid;
public void show()
{
Console.Write(" Enter length of array : ");
n = Convert.ToInt32(Console.ReadLine());
int[] array = new int[n];
Console.WriteLine(" Enter {0} numbers : ", n);
for (int i = 0; i < n; i++)
{
array[i] = Convert.ToInt32(Console.ReadLine());
}
for (int x = 0; x < n; x++)
{
for (int y = x + 1; y < n; y++)
{
if (array[x] > array[y])
{
int temp;
temp = array[y];
array[y] = array[x];
array[x] = temp;
}
}
}
Console.Write(" Enter number to search : ");
num = Convert.ToInt32(Console.ReadLine());
e = n;
mid = (s + e) / 2;
if (num == array[mid])
{ Console.Write(" Element {0} found! ", array[mid]); }
else if (num < array[mid])
{
for (int x = 0; x < mid; x++)
{
if (num == array[x])
{ Console.Write(" Element {0} found! ", array[x]); }
}
}
else if (num < array[mid])
{
for (int y = mid; y < n; y++)
{
if (num == array[y])
{ Console.Write(" Element {0} found! ", array[y]); }
}
}
else
Console.WriteLine(" Element not found! ");
}
}


Read More..