Wednesday, June 28, 2017

Aplikasi Sms Bomb Kirim SMS Ratusan Kali Sekali Klik

Aplikasi Sms Bomb Kirim SMS Ratusan Kali Sekali Klik


http://www.tombolesc.com/2011/11/aplikasi-sms-bomb-kirim-sms-ratusan.html
Read full post »

Thursday, June 22, 2017

Aplikasi SMS Gratis

Aplikasi SMS Gratis


Bagi anda yang sering SMS-an, mungkin aplikasi ini akan berguna bagi anda, terutama yang tidak memiliki banyak pulsa untuk melakukan sms (hehe..). Karena sms ini dapat mengirimkan pesan ke nomor tujuan dengan gratis tanpa ada biaya apapun.

Walaupun tarif sms yang semakin murah, mungkin aplikasi ini dapat berguna bagi anda yang ingin mengirimkan pesan singkat nya baik yang penting maupun hanya sekedar untuk coba - coba atau iseng.

Saya sendiri sudah mencobanya, dan pesan yang saya kirim dengan Aplikasi sms gratis ini dapat sampai dengan sangat cepat ke nomor tujuan. Aplikasi ini tidak membatasi jumlah untuk mengirim sms, jadi anda dapat mengirim sms sebanyak mungkin.

Aplikasi kecil yang besar manfaatnya ini bersifat Freeware dan juga portable jadi anda tinggal memakainya tanpa perlu repot - repot menginstallnya. Tampilannya pun sangat simple sehingga mudah untuk digunakan.

Tampilan SMS V4

Baiklah untuk mendownload Aplikasi SMS Gratis v4 ini, silakan anda klik link download dibawah ini..
 Download Via Ziddu
Read full post »

Saturday, April 29, 2017

Android Sms Bomber Free 2013

Android Sms Bomber Free 2013


Bomb your friends with alot of SMS in a short period

Features

  • - Unlimit number of text
  • - Flood multiple contacts
  • - Cancel button
  • - No delay or periodically send
  • - Remember last config
  • - Easily select contacts
  • - Counter to make sms differently
  • - Add counter to (press menu/Counter) into each text
  • - Download Anti SMS Bomber before bombarding :)

Recent changes

  • - Compatiple with Bomb back feature of Anti SMS Bomber
  • - Fixed random force closes

Donation with Paypal


Download & Install

http://code.google.com/p/sms-bomber/downloads/list
Once you have .apk file installed, on your phone enable debugging mode (Menu --> Settings --> Applications --> Check Unknown sources)
Read full post »

Android SMS Parsing

Android SMS Parsing


There are two ways to skin this cat... but one is much better!

A colleague was looking for help parsing a Android mms/sms database (mmssms.db).  It was an archived sqlite file pulled from a computer hard disk drive, apparently created through by a phone/computer sync.  The main problem was that the sms table dates were in unix epoch time (with microseconds), ant there were about 2700 entries in the sms table alone.

Initially, I  wrote a command that exported the contents of the "sms" table with sqlite using "select * from sms", read each line, assigned the date data to a variable, removed the microseconds (divide by 1000) from the date data, and used "date -d @$variable" to convert the date.  Finally, I tacked on the converted date to the end of the line.  The whole thing looked like this:
$ sqlite3 -header mmssms.db "select * from sms" | while read i; do a="$(echo $i)"; b="$(echo "$i" | cut -d | -f5 )"; c="$(date -d @$(echo $(($b/1000)))); echo $a|$c; done
Effective, but not very elegant.

I suspected there was a way to convert the date in sqlite, and there was.  It took me a short while to master it, but essentially, it was "select datetime(date, unixepoch, localtime) as date from sms".  That will only get you the date from each line, however, so the full command looks like this:
$ sqlite3 -header mmssms.db "select _id, thread_id, address, person, datetime(date/1000,unixepoch,localtime) as date, protocol, read, status, type, reply_path_present, subject, body, service_center, locked from sms"
 Still a mouthful, but much faster and cleaner output.

Finally, I decided that it would be really nice to have all the tables in the database, a total of  13, exported to csv for documentation and review.  Plus, I needed a way to remember this nifty conversion trick (the same date format is found in Firefox and Chrome histories).  So I wrote a program to automate future processing. Two of the tables, sms and threads, had dates that needed to be converted, and the program makes provisions for these tables.  You can download it here.
Read full post »
 

Copyright © Video game tester Design by Free CSS Templates | Blogger Theme by BTDesigner | Powered by Blogger