Monday, 17 February 2014

Java/php, etc. online IDE

http://ideone.com/
https://codenvy.com



And a list of other projects:
http://stackoverflow.com/questions/7072943/are-there-any-browser-based-ides-to-code-java-programs

Wednesday, 5 February 2014

Getting started with FUSE ESB.

http://rawlingsj.blogspot.co.uk/2013/11/getting-started-with-fuse.html

sftp/ssh/scp Linux connect command

SFTP


With Password:

sftp -vv -oPort=22 username@192.168.10.10 -oPassworAuthentication=yes
and type in the password


With private key:

sftp -vv -oIdentityFile=/opt/rh/fuse/jboss-fuse-6.0.0.redhat-024/private_keys/id_rsa_key -oPort=22 username@192.168.10.10



After that standard command line applies like cd, ls, etc.

SSH


login to a box via ssh: ssh -p 8101 user_name@localhost


SCP

// Copy from local to remote locations
scp -i private_key_file ~/Desktop/google.ca.cer user_name@host_name:/home/remote_user/google.ca.cer