Remove third party application access to Google

Revoke access to third party app in Google account like gmail

I was not able to find it easily , ideally it would have been some link in My Account but some how i was not able to find.

After some search on internet i found this link

https://accounts.google.com/IssuedAuthSubTokens?hl=en&service=mail

Add Skype button on your webpage or blog

Go to Skype website at

http://www.skype.com/intl/en-us/tell-a-friend/get-a-skype-button/

Enter your Skype username

Choose the type of button you want to display on your webpage

If you want to have status also displayed on your blog then choose buttons accordingly

In the preview see the button

Copy the HTML code which is shown in the text box

 

Now paste that code in your blog / webpage where you want to show that button

If you want to add it to Blogger then

  • Click on Layout
  • Add Gadgets at the location where you want to insert LinkedIn button
  • Select HTML/Javascript gadget
  • Add the code you copied from above
  • Save

One more thing

If your Skype button status does not work then you need to do following in Skype Software running on your computer

Go to

Tools > Options > Privacy

Check the box which says

Allow my online status to be shown on the web

Add LinkedIn button on your blog webpage

Below steps explain how to add the LinkedIn badge button onto your blog or webpage

  • Login to LinkedIn
  • On the top right , just near your name
  • Click on Settings

Below in Profile

  • Select Edit your Public Profile

On this page

  • Create your profile badge
  • Copy the HTML code for the button which you want to display on your webpage / blog

 

If you want to add it to Blogger then

  • Click on Layout
  • Add Gadgets at the location where you want to insert LinkedIn button
  • Select HTML/Javascript gadget
  • Add the code you copied from above
  • Save

Sqoop2 Build and Installation

Build and setup a Sqoop2 installation steps are documented at https://cwiki.apache.org/SQOOP/sqoop2-manual-setup.html

If you want to use one click shell script to do above then you can copy the following code

Just save the code below in some shell script file say

sqoop2_setup.sh

chmod 777 sqoop2_setup.sh

Change the workspace_dir path below depending on where you want sqoop setup to take place.

 

 

#!/bin/sh

# Change the path for workspace directory below
# And run the script
# After its complete you can start sqoop2 by going to http://localhost:8080/sqoop/
# For more details see https://cwiki.apache.org/confluence/display/SQOOP/Sqoop2+Manual+Setup
workspace_dir=/home/hadoop/sqoop

cd $workspace_dir
svn co https://svn.apache.org/repos/asf/sqoop/branches/sqoop2
cd sqoop2
mvn install

cd ..
mkdir s2test
cd s2test

mkdir bin conf logs repository

cd ..
wget http://apache.mirrors.hoobly.com/tomcat/tomcat-7/v7.0.27/bin/apache-tomcat-7.0.27.tar.gz
tar zxvf apache-tomcat-7.0.27.tar.gz
rm apache-tomcat-7.0.27.tar.gz
mv apache-tomcat-7.0.27 s2test/server

# Working directory is s2test created earlier
echo "export JAVA_OPTS=-Dsqoop.config.dir=$workspace_dir/s2test/conf" >> s2test/server/bin/setenv.sh
chmod +x s2test/server/bin/setenv.sh

echo "# File s2test/conf/sqoop_bootstrap.properties
sqoop.config.provider=org.apache.sqoop.core.PropertiesConfigurationProvider" >> s2test/conf/sqoop_bootstrap.properties

echo "
# File s2test/conf/sqoop.properties
# Log4J system
org.apache.sqoop.log4j.appender.file=org.apache.log4j.RollingFileAppender
org.apache.sqoop.log4j.appender.file.File=$workspace_dir/s2test/logs/sqoop.log
org.apache.sqoop.log4j.appender.file.MaxFileSize=25MB
org.apache.sqoop.log4j.appender.file.MaxBackupIndex=5
org.apache.sqoop.log4j.appender.file.layout=org.apache.log4j.PatternLayout
org.apache.sqoop.log4j.appender.file.layout.ConversionPattern=%d{ISO8601} %-5p %c{2} [%l] %m%n

org.apache.sqoop.log4j.debug=true
org.apache.sqoop.log4j.rootCategory=WARN, file
org.apache.sqoop.log4j.category.org.apache.sqoop=DEBUG
org.apache.sqoop.log4j.category.org.apache.derby=INFO

# Repository
org.apache.sqoop.repository.provider=org.apache.sqoop.repository.JdbcRepositoryProvider
org.apache.sqoop.repository.jdbc.handler=org.apache.sqoop.repository.derby.DerbyRepositoryHandler
org.apache.sqoop.repository.jdbc.transaction.isolation=READ_COMMITTED
org.apache.sqoop.repository.jdbc.maximum.connections=10
org.apache.sqoop.repository.jdbc.url=jdbc:derby:$workspace_dir/s2test/repository/db;create=true
org.apache.sqoop.repository.jdbc.create.schema=true
org.apache.sqoop.repository.jdbc.driver=org.apache.derby.jdbc.EmbeddedDriver
org.apache.sqoop.repository.jdbc.user=sa
org.apache.sqoop.repository.jdbc.password=
org.apache.sqoop.repository.sysprop.derby.stream.error.file=$workspace_dir/s2test/logs/derbyrepo.log"  >> s2test/conf/sqoop.properties

cp $workspace_dir/sqoop2/server/target/sqoop.war $workspace_dir/s2test/server/webapps/
rm -rf $workspace_dir/s2test/server/webapps/sqoop2/

Sqoop2 Architecture and current status

Sqoop is a tool which is used to transfer data to/from RDBMS systems from/to Hadoop HDFS.

Sqoop is undergoing is a major architectural change with discussions going on for Sqoop2 feature proposals.

A very good overview about what any why changes are needed in Sqoop is documented in the proposal at Apache wiki below.

https://blogs.apache.org/sqoop/entry/apache_sqoop_highlights_of_sqoop

You can also go through the Sqoop2 presentation

Current Status

The design discussions are being tracked at Sqoop Jira 365

Summary and goals for Sqoop2 architecture has been documented at Apache Sqoop wiki

https://cwiki.apache.org/SQOOP/sqoop-2.html

Weekly meetings are being organized to discuss the progress of the work

https://cwiki.apache.org/SQOOP/sqoop2-weekly-meeting-minutes.html

The list of JIRAs against the task division is documented below

https://cwiki.apache.org/SQOOP/sqoop-2-jiras.html

If you want to build and setup sqoop2 install then you can also read following

http://jugnu-life.blogspot.in/2012/06/sqoop2-build-and-installation.html