A place where I keep a note of simple but useful technical tips and memorable posts....
Monday, June 21, 2010
How to Run WSO2 Carbon products as a Unix Daemon
This KB by Azeez explains it very well - http://wso2.org/library/2769
Monday, June 14, 2010
Notes on Cloud!
Did a little lazy work.. Below is some notes I directly copied from an IBM white paper (soucre is given below).
Source :
Dispelling the vapor around cloud computing Drivers, barriers and considerations for public andnprivate cloud adoption
IBM Smart Business
Thought Leadership White Paper
January 2010
Source :
Dispelling the vapor around cloud computing Drivers, barriers and considerations for public andnprivate cloud adoption
IBM Smart Business
Thought Leadership White Paper
January 2010
What is cloud computing?
Cloud delivery models:
Features:
Cloud based service management capabilities that are essential:
Main elements in cloud architecture:
Sunday, June 13, 2010
How-to-make-awesome-tag-cloud
Excellent guide with simple steps - http://blog.frivolousmotion.com/2007/05/how-to-make-awesome-tag-cloud.html
Friday, June 11, 2010
VMware player in Ubuntu9.10
VWware player is a graphical interface tool which lets you open vm images.
To intsall this in ubuntu;
1 - You need to download VMPlayer (VMware Player for 32-bit Linux) from vmware website.
2 - apt-get the pre-requisites
To intsall this in ubuntu;
1 - You need to download VMPlayer (VMware Player for 32-bit Linux) from vmware website.
2 - apt-get the pre-requisites
sudo apt-get install build-essential linux-headers-$(uname -r)
3 - Give executable rights to the .bundle file that you downloaded in step 1
chmod +x VMware-Pl*.bundle
4 - Run the installer
gksudo bash ./VMware-Player*.bundle
After its installed, you can access VMware Player from Applications > System Tools > VMware Player
Monday, June 7, 2010
SSH commands
To connect from your local machine:
source: http://www.techotopia.com/index.php/Configuring_Ubuntu_Linux_Remote_Access_using_SSH
ssh -l username ipaddresss
To copy a file to a directory on a remote system:
scp filename username@host:path
filename - the name of the file to be uploaded to the remote system,
username - the name of user account to be used to log into the remote system, host - the real IP address or hostname of the system,
path - the directory into which the file should be copied.
To copy from the remote system to the local system:
scp username@ehost:path/filename
source: http://www.techotopia.com/index.php/Configuring_Ubuntu_Linux_Remote_Access_using_SSH
Thursday, June 3, 2010
WASP
WASP is a powerful web application framework built on PHP 5. WASP strives to allow web developers to make great applications with more fun and less code, but in the familiar playground of PHP.
WASP was written from the ground up in pure Object Oriented PHP5. WASP fully utilizes all of the enhancements made to PHP in version 5.
WASP was written from the ground up in pure Object Oriented PHP5. WASP fully utilizes all of the enhancements made to PHP in version 5.
Subscribe to:
Posts (Atom)
-
1. Download Derby bin distribution from here . 2. Extract it. 3. Set DERBY_HOME and add it to the path. vi ~/.bashrc Add as below; e...
-
Came across the term "NoSQL" from one of the mail threads in WSO2 carbon-dev mailing list. What is NoSQL, I didn't know it. ...