Saturday, June 6, 2009

Twikini - lightest twitter client for Windows Mobile


I've been a twitter user for a while now. At first I only following updates and posting from my web browser at office's computer. Gradually I added the persons I follow and my followers increased as well. So, I need more time, periodically checking my twitter to posting update and replying post from my colleague.

Since I'm using Samsung BlackJack™ II with Windows Mobile Smartphone OS, I tried several application while comparing each of them, which one is suitable for me. Then, from one of twitter posting, I found out about Twikini, brand new twitter client. It says that this apps is the lightest twitter client for Windows Mobile. So, I download and try it.

And, apparently that statement is true. This Twikini is very light, the most I guess, comparing to other clients I've tried before. Beside BlackJack™ II, I also installed in my Treo™ 750 which based on Windows Mobile OS, too.

So, what've you waiting for? Go directly to http://www.trinketsoftware.com/Twikini and try it your own :)

GPSed - Tracking application for Windows Mobile

If your phone (iPhone, BlackBerry, Windows Mobile or J2ME) has internal GPS receiver, you could try this awesome application called Gpsed. For me, it had help me a lot, I could track back every path I've been pass through.

All you need to do is:
1. Go to their website
2. Register to get free account
3. Download the client for your phone
4. Setting up social networking you want to share to (facebook, twitter, myspace and blogger)
5. Start recording track

It will then run on background. And when you arrive at destination, you just finish the recording. You'll be asked if you want to upload the track to gpsed.com and to social networking site you've setup before. Then You'll get this (below) in your social networking site:

View my new track "kemayoran - manggala via tol" started in Indonesia, Daerah Khusus Ibukota Jakarta Raya, Jakarta.
Powered by GPSed.com - Free Mobile GPS Tracking Service

Friday, May 29, 2009

GPSed Track "manggala - tkc via sudirman"


View my new track "manggala - tkc via sudirman" started in Indonesia, Daerah Khusus Ibukota Jakarta Raya, Jakarta.

Powered by GPSed.com - Free Mobile GPS Tracking Service



Thursday, April 23, 2009

Installing snmpd

1. # sudo apt-get install snmpd
2. # sudo cp /etc/snmp/snmpd.conf /etc/snmp/snmpd.conf.bak
3. # snmpconf

-- a. Read in which: choose ALL (default) for configuration file
-- b. Select file to create: snmpd.conf
-- c. Choose 1: Trap Destinations
-- d. Choose 1: A SNMPv1 trap receiver
-- -- host name that should receive the trap: localhost [or any server in your network]
-- -- the community to be used in the trap sent: public [or whatever you want]
-- -- the port number the trap should be sent to: 161 [most used]
-- -- then type: finished
-- e. Choose 6: Access Control Setup
-- f. Choose 3: a SNMPv1/SNMPv2c read-only access community name or
-- 4: a SNMPv1/SNMPv2c read-write access community name
-- -- the community name to add read-only access for: public
-- -- the hostname or network address to accept this community name from [RETURN for all]: RETURN
-- -- the OID that this community should be restricted to [RETURN for no-restriction]: RETURN
-- -- then type: finished
-- g. finished

4. # sudo cp /etc/snmp/snmpd.conf /usr/share/snmp/snmpd.conf
5. # sudo vi /etc/default/snmpd

Change from:

# snmpd options (use syslog, close stdin/out/err).
SNMPDOPTS='-Lsd -Lf /dev/null -u snmp -I -smux -p /var/run/snmpd.pid 127.0.0.1'

To:

# snmpd options (use syslog, close stdin/out/err).
# SNMPDOPTS='-Lsd -Lf /dev/null -u snmp -I -smux -p /var/run/snmpd.pid 127.0.0.1'
SNMPDOPTS='-Lsd -Lf /dev/null -u snmp -I -smux -p /var/run/snmpd.pid -c /etc/snmp/snmpd.conf'

6. restart snmpd:
# /etc/init.d/snmpd restart

7. try your snmp:
# snmpwalk -v [snmp version] -c [snmp community name] [host] -O a

if you receive any reply, then you done it! :)