Sunday, November 21, 2010

Advanced MS Paint

Object Editing Option for MS Paint Like Application
Application which provides many simple user friendly features for image editing by allowing objects to be created so that they can be moved, copied. Designed in a way that user can break objects to work it as just normal image and re-create object when required.



Thursday, November 4, 2010

Sending SMS from terminal

All you need to have is a way2sms account

way2sms.sh
------------------------------------
#!/bin/bash
phone=$1
msg=$2

wget --keep-session-cookies --save-cookies /tmp/cookies.txt --post-data "username=9964000000&password=password&Submit=Sign+in" "http://site5.way2sms.com/auth.cl"

wget -d --load-cookies /tmp/cookies.txt --post-data "custid=undefined&HiddenAction=instantsms&Action=gstahsbdf5346g&login=&pass=&MobNo=$phone&textArea=$msg" "http://site5.way2sms.com/FirstServletsms?custid="

wget -d --load-cookies /tmp/cookies.txt "http://site5.way2sms.com/jsp/logout.jsp"

rm FirstServletsms?custid=*
rm logout.jsp*
rm /tmp/cookies.txt
rm Main.jsp?id=*
rm auth.cl*

Tuesday, October 19, 2010

Tuesday, September 28, 2010

Guys, cheers...edicom installation problems has been fixed in the latest version present in extra devel repo.
Following new features have been added to edicom, which allow the user to add or remove break point just by clicking the viewport showing the line number. You can run complicated programs even which requires linking the shared library, and even you can specify the command line arguments for a program now.
Just watch the following video.

Thursday, September 23, 2010

Guys, I know you people are facing the problem of installation.
in case if you face the problem with the sh /home/user/edicom.sh , try following commands
# apt-get install gcc
# apt-get install libc6-dev
# apt-get install linux-kernel-headers
# apt-get install libgcc1
# apt-get install gdb

incase if you have problem with the gdb installation and get some error like
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?

download gdb from the following link
http://repository.maemo.org/extras/pool/fremantle-1.2/free/g/gdb/gdb_6.8.50.20090417-0maemo2+0m5_armel.deb

# dpkg -i
gdb_6.8.50.20090417-0maemo2+0m5_armel.deb
soon will fix the installation problem you guys are facing

Wednesday, July 21, 2010

edicom

Gone those days, when the programmers were needed to use a system which were of size of a building to execute a simple c program, which got reduced to a desktop and then to laptop. Now is the trend of mobile so why to get limited to desktops or laptops in order to compile or debug your c or c++ programs.
Thanks to Nokia for coming up with the n900 tablet which allow us to use it as almost a mini PC, which has almost the configuration of my 5 year old PC.
Being a student, i was using this for compiling and debugging c programs. Using this i was able to code everywhere, even while i was traveling, it helped me to keep up with my programs, but only problem i was facing was, every time i need to switching between the terminal and editor mode, finally wanted to over come this myself and finally ended up developing my own editor edicom. Thanks for all my professors and Nokia people who made this possible.

what it this edicom anyway?

edicom (editor with compiler) is a editor which interfaces the existing gcc,g++ and gdb, specially designed for n900, to allow the user to compile, debug and execute the program in a single editor environment without switching between the editor and terminal mode. As it interfaces the existing gcc,g++ and gdb, you can enjoy almost all the options that are present in the existing compiler and debugger, and it does not take much of space on the tablet.

The following video shows the edicom running on n900