VideoHive

Posts by webarto

18 posts
  • Bought between 1 and 9 items
  • Europe
  • Exclusive Author
  • Has been a member for 2-3 years
  • Referred between 1 and 9 users
  • Sold between 1 000 and 5 000 dollars
webarto says

\\

18 posts
  • Bought between 1 and 9 items
  • Europe
  • Exclusive Author
  • Has been a member for 2-3 years
  • Referred between 1 and 9 users
  • Sold between 1 000 and 5 000 dollars
webarto says

Can I ask a rookie question – what’s the difference between adsense and adwords?

In AdSense you are Publisher, in AdWords you are Advertiser.

18 posts
  • Bought between 1 and 9 items
  • Europe
  • Exclusive Author
  • Has been a member for 2-3 years
  • Referred between 1 and 9 users
  • Sold between 1 000 and 5 000 dollars
webarto says

You still have 1 bug left :P Good luck.

18 posts
  • Bought between 1 and 9 items
  • Europe
  • Exclusive Author
  • Has been a member for 2-3 years
  • Referred between 1 and 9 users
  • Sold between 1 000 and 5 000 dollars
webarto says

You can modify WP almost however you like, but it is definitely not the best for all purposes (there is no universal solution), porting to custom made platform shouldn’t be too expensive.

18 posts
  • Bought between 1 and 9 items
  • Europe
  • Exclusive Author
  • Has been a member for 2-3 years
  • Referred between 1 and 9 users
  • Sold between 1 000 and 5 000 dollars
webarto says

I want to create some modules for an opensource LMS script written in PHP , this new modules are both enhancements of existing features and new customizations. Details will be made available. Developers with good knowledge of PHP , kindly reply

Good enough? http://bit.ly/zend-certified-engineer

18 posts
  • Bought between 1 and 9 items
  • Europe
  • Exclusive Author
  • Has been a member for 2-3 years
  • Referred between 1 and 9 users
  • Sold between 1 000 and 5 000 dollars
webarto says

Sure I’ll do it, send me the…. Oh, you just used up your $20. Sorry.

Elitism detected. Oh wait, you actually have the badge.

18 posts
  • Bought between 1 and 9 items
  • Europe
  • Exclusive Author
  • Has been a member for 2-3 years
  • Referred between 1 and 9 users
  • Sold between 1 000 and 5 000 dollars
webarto says

Style inputs in header (http://pokit.org/get/2bb1cfa395d17558f6abd2e4953582fe.png), good theme but feels unfinished.

18 posts
  • Bought between 1 and 9 items
  • Europe
  • Exclusive Author
  • Has been a member for 2-3 years
  • Referred between 1 and 9 users
  • Sold between 1 000 and 5 000 dollars
webarto says

Probably a stupid question but what does a programming language have to do with a network of websites?

This network of websites is built with that programming language, so, everything you see and click.

18 posts
  • Bought between 1 and 9 items
  • Europe
  • Exclusive Author
  • Has been a member for 2-3 years
  • Referred between 1 and 9 users
  • Sold between 1 000 and 5 000 dollars
webarto says

@aaranmcguire, RoR is object oriented, just like PHP frameworks (at least some of them), you can count classes/modules for PHP frameworks in marketplace on fingers of one hand, not to mention Ruby.

@mudi, nothing that everyone already knows :)

18 posts
  • Bought between 1 and 9 items
  • Europe
  • Exclusive Author
  • Has been a member for 2-3 years
  • Referred between 1 and 9 users
  • Sold between 1 000 and 5 000 dollars
webarto says

API should return item ID not item name, either way, you have to have array/table with item ID, item name, and marketplace it belongs to. I think that API shouldn’t return that data, overall, it is very bad.

If anyone finds it useful (without database)

$json = file_get_contents('http://codecanyon.net/api/edge/username/key/recent-sales.json');
$json = json_decode($json, true);

$marketplaces = array(
    'PHP Mobile Device Detect' => 'codecanyon',
    'Google Did You Mean PHP Class' => 'codecanyon',
);

foreach($json['recent-sales'] as $key => $value)
{
    $value['marketplace'] = $marketplaces[$value['item']];
    echo "{$value['item']} ({$value['marketplace']})", '<br />';
}
PHP Mobile Device Detect (codecanyon)
Google Did You Mean PHP Class (codecanyon)
PHP Mobile Device Detect (codecanyon)
Google Did You Mean PHP Class (codecanyon)
PHP Mobile Device Detect (codecanyon)
by
by
by
by
by