Thursday, September 30, 2010

Sortables, Draggables and Droppables

Have you ever thought of having a web page elements that can be sorted, dragged and dropped? Well, thanks to Interface for giving a free plugin for this functionalities. What is Interface then? From Interface website, it is composed of rich interface components utilizing the use of the jQuery - a javascript library. With this collections of components, building web applications and interfaces is as easy as writing javascript with jQuery. Interface has two licenses : MIT license and the GPL, which means that you can use it for both commercial and non-commercial usage all for free as long as you keep the copyright notice in each of Interface's javascript source file.


Wednesday, September 29, 2010

Sviluppo Applicazioni Iphone

IRL Solutions - Sviluppo Applicazioni Iphone is a European based company, specializing a range of apple iphone and ipad applications (sviluppo applicazioni iphonesviluppo applicazioni ipad) Application Development iPhone and Application Development iPad. You can rely on them on application development iPhone and iPad (sviluppo applicazioni iphone e ipad). As their website says - "Apple gives you 70 percent of earnings, besides notable advertising commissions as ensured by the company."


Wednesday, September 22, 2010

Free Website Templates at WEBSITE PLANET

Hi everyone! I'm sorry if I haven't post any topic in my blog lately. It's because I've been very busy on my other site. This new site is all about Free Website Templates. For now, I jhad just made a few web templates for you to download for free. But don't you worry, I will be updating the site from time to time and making a new website templates. So, want to see the site?


Tuesday, September 14, 2010

PHP Customized Tweeting for Twitter.com

Here is a php script which will let tweet on twitter.com providing your username, password and the message you want to tweet! Since this is a function, you can customize the code anyway you want to.


<?php

function tweet($message, $username, $password)
{
    $context = stream_context_create(array(
        'http' => array(
        'method'  => 'POST',
        'header'  => sprintf("Authorization: Basic %s\r\n", base64_encode($username.':'.$password)).
                   "Content-type: application/x-www-form-urlencoded\r\n",
        'content' => http_build_query(array('status' => $message)),
        'timeout' => 5,
    ),
    ));
    $ret = file_get_contents('http://twitter.com/statuses/update.xml', false, $context);
    return false !== $ret;
}

?>


Here is a simple code on using the tweeting function.


<?php

tweet('Php code tweeting!', 'username', 'password');

?>