Linux - Installation PHP Development Tools (PDT) Eclipse

Eclipse PDT All In Ones / Eclipse PHP Package

Video


PDT/Installation

JavaScript - Print Objects


JavaScript (sometimes abbreviated as JS) is a scripting language commonly implemented as part of a web browser in order to create enhanced user interfaces and dynamic websites.

JavaScript is a prototype-based scripting language that is dynamic, weakly typed and has first-class functions. It uses syntax influenced by the language C. JavaScript copies many names and naming conventions from Java, but the two languages are otherwise unrelated and have very different semantics. The key design principles within JavaScript are taken from the Self and Scheme programming languages. It is a multi-paradigm language, supporting object-oriented, imperative, and functional programming styles.

JavaScript's use in applications outside web pages — for example in PDF documents, site-specific browsers, and desktop widgets—is also significant. Newer and faster JavaScript VMs and frameworks built upon them (notably Node.js) have also increased the popularity of JavaScript for server-side web applications.

JavaScript was formalized in the ECMAScript language standard and is primarily used in the form of client-side JavaScript (as part of a web browser). This enables programmatic access to computational objects within a host environment.


// object
var userObj= {
    username: 'username',
    password: 'password'
}

// print
alert(userObj.toSource());

// or
for(attr in userObj){
    alert(attr+ '= '+ userObj[attr]);
}

console.log(userObj);




Backtrack 5 - Ubuntu Software Center

Lets you choose from thousands of free applications available for Ubuntu.

Install
apt-get install software-center

Backtrack 5 - Ubuntu Software Center

Video


With Ubuntu Software Centre, you can pick the apps you want so you won’t have anything on your computer you don’t need. And with thousands of apps to choose from, you’ll be spoilt for choice.

Each application comes with ratings and reviews to make it easier for you to decide which apps you want to install.