Showing posts with label Environment. Show all posts
Showing posts with label Environment. Show all posts

Saturday, July 2, 2011

Setting Up An Android App Build Environment With Eclipse, Android SDK, PhoneGap (Ubuntu 11.04)

Eclipse and the prerequisites for the Android SDK and PhoneGap can be installed as follows:

sudo apt-get install openjdk-6-jdk eclipse ruby rubygems ruby-dev libnokogiri-ruby git ant libxml2 libxml2-dev libxslt1-dev

If you are on a 64bit system, you also need to install the following two packages:

sudo apt-get install lib32stdc

View the Original article

Sunday, May 29, 2011

HowTo: Use OpenBSD In the Corporate Environment

OpenBSD has a reputation for high security and difficult operating systems for new user. But, some orginsations are using OpenBSD for everything including firewall, servers and desktop computers. This is quite impressive, from the article:

So our paid job is hacking on and deploying, maintaining, supporting... OpenBSD installations. We are also required to hack on things that can be merged back into OpenBSD itself and when it's not possible, then we change what we did so that it can be. Of course some developments are very specific to what we do and have no place in the project's CVS tree.

So, amongst other services, we set up and maintain several 100% OpenBSD-based infrastructures (going from the entry site firewall to the secretary's workstation) and this is what I'm going to talk about here.

As a side note, it is important to know that we are working exclusively for Fortune 500 companies (each operating in totally different and unrelated sectors).

Read more: A Puffy in the corporate aquarium.

Featured Articles: 20 Linux System Monitoring Tools Every SysAdmin Should Know 20 Linux Server Hardening Security Tips My 10 UNIX Command Line Mistakes The Novice Guide To Buying A Linux Laptop

View the Original article

Monday, March 28, 2011

Setting up an Android app build environment with Eclipse, Android SDK, PhoneGap (Debian squeeze)

 

This tutorial describes how you can set up a development environment for building Android applications on a Debian squeeze desktop with Eclipse, Android SDK, and PhoneGap. Device tested describe how to build Android apps from the command line with the PhoneGap and the GUI with Eclipse and PhoneGap and how in an Android emulator and a real Android. PhoneGap, you can use your Android applications with Web technologies such as HTML, to develop CSS and JavaScript (e.g. with JavaScript libraries such as jQuery/Keds) and it is these Web apps in native Android apps (in fact, PhoneGap supports multiple platforms such as such as AndroidiPhone), Palm, Windows Mobile, Symbian, so that you can use the same sources to create apps for multiple platforms).

 

 

Read more on HowtoForge set as a favorite of this email-ThisComments (0)

View the Original article

Tuesday, January 25, 2011

Setting Up An Android App Build Environment With Eclipse, Android SDK, PhoneGap (Ubuntu 10.10)

This tutorial describes how you can set up an development environment for building Android apps on an Ubuntu 10.10 desktop using Eclipse, the Android SDK, and PhoneGap. I will describe how to build Android apps from the command line with PhoneGap and from the GUI with Eclipse and PhoneGap and how to test them in an Android emulator and on a real Android device. PhoneGap allows you to develop your Android applications using web technologies such as HTML, CSS, and JavaScript (e.g. with JavaScript libraries such as jQuery/jQTouch), and it will turn these web apps into native Android apps (in fact, PhoneGap supports multiple platforms such as Android, iPhone, Palm, Windows Mobile, Symbian, so you can use the same sources to create apps for multiple platforms).

I do not issue any guarantee that this will work for you!

 

1 Preliminary Note

I will not explain how to develop an Android app using HTML, CSS, and JavaScript. You can find lots of tutorials about this on the Internet, e.g. this one:

Tutorial: A simple Twitter client with JQTouch

In fact, I'm using a slightly modified version of the Twitter client described in the link to build a Twitter app in this tutorial.

 

2 Installing Eclipse And Prerequisites For The Android SDK/PhoneGap

First open a terminal (Applications > Accessories > Terminal):



View the Original article