Synchronizing Google Tools with Kontact

Hello :)

Introduction
Using online tools has many advantages. One of the most important of them is the information is accessible from anywhere and at any time.
One need that was occurred after using this tools is Synchronizing information with other applications and devices. such as Synchronizing contacts between Mobile, Web and PC.

* The following guide is tested on Kubuntu 9.10 with KDE 4.3.3 environment.

Synchronizing Google Tools with Kontact
Step 1
Installing akonadi-kde-resource-googledata package. The package is available in Ubuntu 9.10 and Debian repositories.

sudo aptitude install akonadi-kde-resource-googledata

Step 2
After installing akonadi-kde-resource-googledata package, you need to add Google resources to Akonadi. Open Akonadi Console:

akonadiconsole

Click Add on Agents tab. Add a `Akonadi Google Calendar Resource` for Google Calendar and add `Akonadi Google Contacts Resource` for Google Contacts.

Add Google Resources to Akonadi Console

Add Google Resources to Akonadi Console

Enter your username without `@gmail.com` in the next window.

Enter your username

Enter your username

Step 3
After adding a resources open Kontact application :

kontact

Add Contacts
Go to Contact section and add `Akonadi Google Resource` to address books:

Add `Akonadi Google Resource` to Address Books

Add `Akonadi Google Resource` to Address Books

Add Calendar
Go to Calendar section and add `Akonadi Google Resource` to calendars:

Add `Akonadi Google Resource` to calendars

Add `Akonadi Google Resource` to calendars

done :P

P.S.
Ubuntu 9.10 release party held in Tehran, Iran.

Have a good time :)

Processing your request, Please wait....
  • Share/Bookmark

Add “Send files to email” item to right click menu on Dolphin and Konqueror

Hey :)

One of the useful features when you are using email clients, is “adding attachment(s)” item in right click menu.

Send files to email

Send files to email

This feature does not exist in default KDE 4.x version but adding this item is really piece of cake:

First, go to the service directory:

cd ~/.kde/share/kde4/services

Create file `email.desktop`:

touch email.desktop

Add below configuration commands.

for KMail

[Desktop Entry]
Type=Service
Icon=dolphin
ServiceTypes=KonqPopupMenu/Plugin,all/allfiles

Actions=Send_to_KMail
X-KDE-menu=Email
X-KDE-Priority=TopLevel

[Desktop Action Send_to_KMail]
Name=Send file(s) with KMail
Exec=kmail --attach %U
Icon=kmail

for Thunderbird

[Desktop Entry]
Type=Service
Icon=dolphin
ServiceTypes=KonqPopupMenu/Plugin,all/allfiles

Actions=Send_to_Thunderbird
X-KDE-menu=Email
X-KDE-Priority=TopLevel
Encoding=UTF-8
ServiceTypes=all/all

[Desktop Action Send_to_Thunderbird]
Name=Send file(s) with Thunderbird
Exec=thunderbird -P guest -compose "attachment=file://%U"
Icon=thunderbird

Now save the file and reopen the Dolphin file manager.
done!

Good luck

Processing your request, Please wait....
  • Share/Bookmark

Ubuntu 9.10 Karmic Koala Release Party In Tehran

Hello :P

Ubuntu 9.10 Karmic Koala Release Party will be held in Tehran, Iran soon:

Ubuntu 9.10 Karmic Koala Release Party

Ubuntu 9.10 Karmic Koala Release Party

Date: Thursday, Nov 12, 2009 from 9 to 14
Location: Forum Conference martyr Ghandi, Opposite St. Hoveyze, above the intersection martyr Ghoddosi (Castle), Shariati St. – Tehran, Iran

More information

P.S.
Above is designed by Sedigheh Ahmadi.

I hope to see you in Party :D

Processing your request, Please wait....
  • Share/Bookmark

How to extract embedded images from .xls, .ods or .odt

icon_openoffice
Hi :)

It’s simple. Just 4 steps:

  1. Save a copy of the file as ODS (OpenOffice.org Spreadsheet).
  2. Change the filetype of the copy to ZIP (for example rename File.xls to File.zip).
  3. Open the ZIP.
  4. In the directory called Pictures will be the images, just as in the original.
Processing your request, Please wait....
  • Share/Bookmark

How to posting to Identi.ca from the CLI

terminal - cli
Hi :)

Identi.ca is an open source social networking and micro-blogging service.
I like Ideni.ca. It’s good service.

I use CLI (command line) everyday. I like to dented from it. It’s simple.
Just install cURL:
$ sudo apt-get install curl

And type:
$ curl -u username:password -d status="message" http://identi.ca/api/statuses/update.xml

You will receive a response containing the XML coding for your post which acts as a confirmation that your post was submitted.

Also you can create a shell file for this
Open a new text document and add the following, save it as identica.sh (or anything ending in sh):
#!/bin/bash
curl -u username:password -d status=″$1" http://identi.ca/api/statuses/update.xml

Make sure you change the chmod to 777 using the following command.
$ chmod 777 /path/to/file/

When you located the file (or add a bash prompt) it makes it simplier to identi.ca the rules. For example you can type the following to command to link to the file.
$ ./path/to/idetica.sh "Message"

Processing your request, Please wait....
  • Share/Bookmark