The Lounge

Lack of project ideas.

Submitted by Lol234d, , Thread ID: 21482

Thread Closed

RE: Lack of project ideas.

#5
Code a 2D Game Engine in C++ (Should have: Audio, Input, Graphics, atleast. )

PHP -> Make a PHP library that offers tools to Scrape (Leech) web content. Like If I wanted to copy all content from a wordpress blog, I should just be able to it simple by:
[pre]
$blog = $library->get('blogurl');
$links = $blog->getLinks();
$links = $library->match( 'some pattern I want to match in links... possible a regex, idk' ); // Gives me all links that match my pattern
output($links);

foreach($links AS $link)
{
$page = $library->get($link);
$content = $page->getContentInsideTagWithClass('classname'); // Gets me content inside <div class="classname"></div> on the page.
output($content); // That's what I needed!
}
[/pre]
Do not let your difficulties fill you with anxiety, after all it is only in the darkest nights that stars shine more brightly. - Ali(a.s)

Developer( PHP, Python, C++, HTML+CSS, JS I am available for Hire. Message Me for details.


Users browsing this thread: 12 Guest(s)