HelloHelloSharp - Another Journal Thread - Consistent $100 A Day By 1/1/2013

wow your earnings are high,you will surely hit $200/day by 2013,i wish you good luck
 
Interesting thread, goodluck on your journey OP. i'd like to ask how many YT vids do you upload in a day? Do you use softwares or bots? Sharecash or fileice?
 
I have a question too; Do you make blogs or websites? If blogs.. wordpress or blogger? Also.. how do you make those scripts? xD
As for "make a video showing them how you download and install" do you make softwares that you will install? and after the video is done , do you re-upload the same videos X times for quantity?
 
Wow, your EPC is simply awesome. How did you got such high EPC?

Good luck with your journal!
 
That yt download method is gold. The trick is find a decently high earning on adsend or blamads that allows incentives. When you do the video do a complete walkthrough of your downloading the file and getting the password and everything else. What I've found works good is hiding the password in anotherpay per download. As long as people believe you have what they need and that you will show them how to get it they will do anything.
 
That's a bad-ass panel you made there. You scrape the information of your videos directly from youtube or what?

Just a question, when people download from mediafire, they download the file, they read the readme.txt
then, do you send them to a blog or a simple landingpage with a content locker on it? and after unlocking the password
will appear on the page?

I always have difficulties with this part, sending from the text file to a website where they need to do a survey.
 
panel.png

Hi there. You have great results. From which network or soft this screenshot is? I'm looking something similar.
Thanks and Good Luck.

Martin
 
hey hellohellosharp

your panels for youtube look super neat and just what I need to keep track of my accounts/videos

how/where do you program them?

thankS!
 
I don't think you make that amount only from youtube videos , from what I saw those only brought you 131 $ , so the main method you use is SEO , right ? :)
 
Sorry for the late reply everyone...BHW was having DB errors when I tried to post

this is badass, you shared that Articlesbase method right ?

Yeah I shared that, although I don't use it anymore.

awesome man...... i read a lot about this kind of method and it was a success... i think its time to do the same...

Yeah go for it :)

wow your earnings are high,you will surely hit $200/day by 2013,i wish you good luck

Thank you

Interesting thread, goodluck on your journey OP. i'd like to ask how many YT vids do you upload in a day? Do you use softwares or bots? Sharecash or fileice?

About 2-3 a week. I would never use FileIce or Sharecash haha.

I have a question too; Do you make blogs or websites? If blogs.. wordpress or blogger? Also.. how do you make those scripts? xD
As for "make a video showing them how you download and install" do you make softwares that you will install? and after the video is done , do you re-upload the same videos X times for quantity?

I just make websites usually. And no I don;t duplicate videos. I make my scripts in PHP (the best programming language). :)

Florida?;4287980 said:
Great journal!
Subscribed and fingers are crossed!
Best of luck!

Thanks

Wow, your EPC is simply awesome. How did you got such high EPC?

Good luck with your journal!

My own good LP + Good offer LP = High EPC

That yt download method is gold. The trick is find a decently high earning on adsend or blamads that allows incentives. When you do the video do a complete walkthrough of your downloading the file and getting the password and everything else. What I've found works good is hiding the password in anotherpay per download. As long as people believe you have what they need and that you will show them how to get it they will do anything.

Thanks for the tips

That's a bad-ass panel you made there. You scrape the information of your videos directly from youtube or what?

Just a question, when people download from mediafire, they download the file, they read the readme.txt
then, do you send them to a blog or a simple landingpage with a content locker on it? and after unlocking the password
will appear on the page?

I always have difficulties with this part, sending from the text file to a website where they need to do a survey.

Hi there. You have great results. From which network or soft this screenshot is? I'm looking something similar.
Thanks and Good Luck.

Martin

hey hellohellosharp

your panels for youtube look super neat and just what I need to keep track of my accounts/videos

how/where do you program them?

thankS!

Well I didn't realize how many people were going to be interested in my Panel lol.

It's all programmed with PHP and Mysql databases.

The videos get added to a table with a views, rates, etc column. The Update button just used the API PHP for each video and scrapes all the info and plugs it into the database. Feel free to ask more Q's if you are still confused.

Great method good keep gng...

Thanks.

I don't think you make that amount only from youtube videos , from what I saw those only brought you 131 $ , so the main method you use is SEO , right ? :)

Good to hear from you Seb :) Yes and no...the table only shows direct income from those videos...but the adscend earnings are completely from social media. Its hard to explain without giving away my full method and niche.


Day 4
day4.png


Total Earnings: $116.01

Status: Target Reached
 
>>The videos get added to a table with a views, rates, etc column. The Update button just used the API PHP for each video and scrapes all the info and plugs it into the database. Feel free to ask more Q's if you are still confused.

lol yep I'm still confused. This is way over my head. Any way I could get my hands on the script to run on my computer here?
Understand if not possible, but in my experience if you don't ask you don't get :)

Would love to talk to you - skype id : danthenmani
 
wow ur panel looks neat & organized. where can i download a script like that? ive been testing youtube since the 1st week of this month. im looking to test more methods. im bookmarking ur thread to read later.
 
hy dude, did you used just Youtube for this? How did you push your views, likes, and comment? did you use comment rater method (also commented the similar niche video with yours)? Did you using exchange sites like vagex, u2bviews, etc?

Your earnings is my dream man :o
Still work for it now!

Bookmarked!
 
I have some questions: How do you find the software that people want? And Why do people do your offer to get the password
when there are many videos show the direct link(don't need to do offer)???
 
Your journal is inspiring a lot of people including me... $200/day should be right around the corner
 
Okay guys...while I don't have time to give full PHP lessons....here is the script I used with my panel to get the video info.

It uses the YouTube API.

PHP:
$videoid="d_56kyib-Ls"; //This is just an example video I am using

$feedURL = 'http://gdata.youtube.com/feeds/api/videos/' . $videoid;
$entry = @simplexml_load_file($feedURL);
    $video = parseVideoEntry($entry);    $rates=$video->numrates;    $views=$video->viewCount;    $favorites=$video->favoriteCount;    $rating=$video->rating;    $comments=$video->commentsCount;    $author=$video->author;
 function parseVideoEntry($entry) {            $obj= new stdClass;            // get <yt:stats> node for viewer statistics      $yt = $entry->children('http://gdata.youtube.com/schemas/2007');            $attrs = $yt->statistics->attributes();      $obj->viewCount = $attrs['viewCount'];       $obj->favoriteCount = $attrs['favoriteCount'];       $obj->author=$entry->author->name;      // get <gd:rating> node for video ratings      $gd = $entry->children('http://schemas.google.com/g/2005');       if ($gd->rating) {         $attrs = $gd->rating->attributes();        $obj->rating = $attrs['average'];        $obj->numrates = $attrs['numRaters'];              } else {        $obj->rating = 0;$obj->numrates=0;              }               // get <gd:comments> node for video comments      $gd = $entry->children('http://schemas.google.com/g/2005');      if ($gd->comments->feedLink) {         $attrs = $gd->comments->feedLink->attributes();        $obj->commentsCount = $attrs['countHint'];       }      else      $obj->commentsCount = 0;                        // return object to caller        return $obj;          }

EDIT: Okay BHW fails at handling code :hmmmm2: Copy and paste the code below instead.

Code:
$videoid="d_56kyib-Ls"; //This is just an example video I am using

$feedURL = 'http://gdata.youtube.com/feeds/api/videos/' . $videoid;

$entry = @simplexml_load_file($feedURL);
    $video = parseVideoEntry($entry);
	$rates=$video->numrates;
	$views=$video->viewCount;
	$favorites=$video->favoriteCount;
	$rating=$video->rating;
	$comments=$video->commentsCount;
	$author=$video->author;



function parseVideoEntry($entry) {      
      $obj= new stdClass;
      
      // get <yt:stats> node for viewer statistics
      $yt = $entry->children('http://gdata.youtube.com/schemas/2007');
      
      $attrs = $yt->statistics->attributes();
      $obj->viewCount = $attrs['viewCount']; 
      $obj->favoriteCount = $attrs['favoriteCount']; 
      $obj->author=$entry->author->name;
      // get <gd:rating> node for video ratings
      $gd = $entry->children('http://schemas.google.com/g/2005'); 
      if ($gd->rating) { 
        $attrs = $gd->rating->attributes();
        $obj->rating = $attrs['average'];
        $obj->numrates = $attrs['numRaters'];
        
      } else {
        $obj->rating = 0;
$obj->numrates=0;        
      }
      
         // get <gd:comments> node for video comments
      $gd = $entry->children('http://schemas.google.com/g/2005');
      if ($gd->comments->feedLink) { 
        $attrs = $gd->comments->feedLink->attributes();
        $obj->commentsCount = $attrs['countHint']; 
      }
      else
      $obj->commentsCount = 0;
        
      
      // get feed URL for video responses
         
      // get feed URL for related videos
    
      // return object to caller  
      return $obj;      
    }

After this, just do whatever you want with the variables. For me, I had them put into a mysql table with my videos. Calculating Earnings and clicks takes a bit more programming knowledge.

Let me know if this is helpful
 
Last edited:
Day 5

Sorry everyone I have been busy with studies for school. I'll go back and look at posts + answer q's later.

day5.png


Total Earnings: $72.92
Status: Target Not Reached
 
Back
Top