Read SMS directly from Sqlite database in Android
Today I wanted to extract the SMS content out of the android SMS application SQLite database using ADB.
Today I wanted to extract the SMS content out of the android SMS application SQLite database using ADB.
Unfortunately, Java does not include a proper String manipulation class in its Java SE SDK. I really do not understand why… However, we see so many implement...
Today I wondered if there is an algorithm to calculate the date of Orthodox Easter. After some searching in the web I found the algorithm and converted it to...
Update: 2012-07-27
Today I wanted to write logcat output to a file while my application is running. To do so I executed the following code:
Today I am going to show you how to create an android application which comes with a pre-populated database. The database file has to be stored in assets dir...
Today I am going to show you how to get the bluetooth adapter device name (if exists) and MAC address programmatically in Android. Note that this code will ...
Updated: 2012-05-09
Today I will show you how to generate the MD5 hash String for a given String in Android
Today I wanted to store some images to SD card and I wanted to find the available space:
```java /** * get the version of the SQLite Library that is installed in the android * system * * @return version , for example 3.5.2 */ public ...
Five days ago we had to renew a number of SSL certificates using free Let’s Encrypt SSL authority to a few Apache servers which were installed in Jelastic Pa...
A few days ago, a Solr server in our SolrCloud installation stopped unexpectedly. After examining solr.log file I spotted that it could not start again becau...
Today I wanted to install Apache Solr index in Windows 7, Windows Server 2008R2 and Windows Server 2012 machines. So I achieved that , using the following st...
I have installed XAMPP in my Windows machine and I want to alter the timezone in Apache HTTP server, PHP module and MySql in order to see proper dates in ser...
Today I am going to show you how to install Jboss 5.1.0.GA on a Windows 7 machine.
We run MongoDB 2.6.0 on a production system configured with a replica set of 3 members: Primary Secondary Arbiter
Today I wanted to extract the SMS content out of the android SMS application SQLite database using ADB.
Today I had to configure a MySQL database cluster and I faced the following error
Today I had to import a very large SQL dump file (6 Gb) to a MySQL database using windows command line. If you are using linux it is the same. The process is...
I have installed XAMPP in my Windows machine and I want to alter the timezone in Apache HTTP server, PHP module and MySql in order to see proper dates in ser...
Today I was trying to create and ODBC Data Source to a database using 32 bit database drivers. When I accessed ODBC Data Sources (32bit) from Control Panel, ...
Today I am going to show you how do we obtain schema information in SQL Server 2005/2008. If you want to select all table names from a specific schema you ne...
Today I want to truncate ( delete all table data) in a large SQL Server database instance. Plain delete statements are not going to work as there is a big nu...
Update: 2012-07-27
Today I am going to show you how to create an android application which comes with a pre-populated database. The database file has to be stored in assets dir...
```java /** * get the version of the SQLite Library that is installed in the android * system * * @return version , for example 3.5.2 */ public ...
Welcome to WordPress.com. After you read this, you should delete and write your own post, with a new title above. Or hit Add New on the left (of the admin da...
If you are reading this article, perhaps you have searched a lot about NTP server installation in Linux, issues and problems encountered and how to troublesh...
Update 2016-05-13: The following procedure works perfectly for migrations from version 8.0.4 to 8.7.5
Today I was working on a Java Spring MVC project which uses Maven. My editor was the Eclipse IDE, with the current version of the M2E plug-in. When I pulled ...
Today we wanted to parse some json logs which we had in a file using Rsyslog and enrich them with Geolocation information regarding the city and the ISP an ...
Today we wanted to parse some json logs which we had in a file using Logstash and enrich them with Geolocation information regarding the city and the ISP an...
I suspect that you are reading this post after having trouble creating a new Elastic Beat based on Metricbeat. Bud do not worry! We have you covered and solv...
Today we wanted to use Tortoise Git Merge, a Windows Git utility which comes with Tortoise Git. It helps us do a 3 way merge and solve our conflicts easily. ...
Update 2016-05-13: The following procedure works perfectly for migrations from version 8.0.4 to 8.7.5
Today I wanted to export to a .tar.gz archive all unstracked (new) , modified and deleted files from a Git repository. After some searching, I found a StackO...
Update 2016-05-13: The following procedure works perfectly for migrations from version 8.0.4 to 8.7.5
I suspect that you are reading this post after having trouble creating a new Elastic Beat based on Metricbeat. Bud do not worry! We have you covered and solv...
I suspect that you are reading this post after having trouble creating a new Elastic Beat based on Metricbeat. Bud do not worry! We have you covered and solv...
We use Solr 4.6 with SolrCloud configuration in a production system. You may say: “It is hight time you upgraded to the latest version, isn’t it?”. And you w...
Five days ago we had to renew a number of SSL certificates using free Let’s Encrypt SSL authority to a few Apache servers which were installed in Jelastic Pa...
I have installed XAMPP in my Windows machine and I want to alter the timezone in Apache HTTP server, PHP module and MySql in order to see proper dates in ser...
Today I had to configure a MySQL database cluster and I faced the following error
Today I am going to show you how to install Jboss 5.1.0.GA on a Windows 7 machine.
Today I wanted to debug in Java a JAX-WS SOAP web service client and see the exact message that is send as an HTTP request. So after searching, I found in th...
Today I had to create a Java client for a SOAP web service. So I opened Netbeans IDE and used the great tool which generates JAX-WS client code using the res...
Today I was working on a Java Spring MVC project which uses Maven. My editor was the Eclipse IDE, with the current version of the M2E plug-in. When I pulled ...
Today I had to parse a JSON response in a JUnit test and then reuse it in a cURL command line call. Unfortunately I could not read the JSON response from a f...
A few days ago, a Solr server in our SolrCloud installation stopped unexpectedly. After examining solr.log file I spotted that it could not start again becau...
Today I wanted to make a mail notification mechanism for a project of mine. After some web searching I stumbled upon a mkyong.com tutorial where he uses SMTP...
Unfortunately, Java does not include a proper String manipulation class in its Java SE SDK. I really do not understand why… However, we see so many implement...
Today I wondered if there is an algorithm to calculate the date of Orthodox Easter. After some searching in the web I found the algorithm and converted it to...
Today I wanted to download a file using Http protocol but before that determine its size. First aff all I open an Http connection and get file size using Con...
Today I wanted to write logcat output to a file while my application is running. To do so I executed the following code:
Today I am going to show you how to get the bluetooth adapter device name (if exists) and MAC address programmatically in Android. Note that this code will ...
Updated: 2012-05-09
Today I will show you how to generate the MD5 hash String for a given String in Android
Today I wanted to store some images to SD card and I wanted to find the available space:
Let’s say we have a simple class called Person public class Person{ public String name; public int age; public Person(String name, int age) { this.nam...
Today we wanted to use Tortoise Git Merge, a Windows Git utility which comes with Tortoise Git. It helps us do a 3 way merge and solve our conflicts easily. ...
If you are reading this article, perhaps you have searched a lot about NTP server installation in Linux, issues and problems encountered and how to troublesh...
We run MongoDB 2.6.0 on a production system configured with a replica set of 3 members: Primary Secondary Arbiter
We use Solr 4.6 with SolrCloud configuration in a production system. You may say: “It is hight time you upgraded to the latest version, isn’t it?”. And you w...
Yesterday I installed SublimeText 3 editor (build 3143) in my PC and the first thing I realised was that I could not type any Greek accented characters. Thus...
Five days ago we had to renew a number of SSL certificates using free Let’s Encrypt SSL authority to a few Apache servers which were installed in Jelastic Pa...
Update 2016-05-13: The following procedure works perfectly for migrations from version 8.0.4 to 8.7.5
Today I had to parse a JSON response in a JUnit test and then reuse it in a cURL command line call. Unfortunately I could not read the JSON response from a f...
A few days ago, a Solr server in our SolrCloud installation stopped unexpectedly. After examining solr.log file I spotted that it could not start again becau...
Today I had some mp4 video files and I wanted to extract the audio and video into separate files. So to do that you can do the following:
Today I had to hide a Wordpress 3.8.1 blog behind an Nginx reverse proxy configured to use only https. Nginx was behind an external firewall which forwarded ...
Today I wanted to export to a .tar.gz archive all unstracked (new) , modified and deleted files from a Git repository. After some searching, I found a StackO...
Today I had a database table which contained special and control characters (like DLE, DC1, ACK, DC3 etc.) in its records. After some searching I found a way...
Today I wanted to extract the SMS content out of the android SMS application SQLite database using ADB.
Today I wanted to collect disk usage information and send them to a remote server script. I used df command to collect disk usage information and Python to s...
UPDATE (2015-05-13): Confirming that the following approach works for Lubuntu versions 12.10, 14.04 and 14.10 and Linux Mint 15 and 17.
Today I wanted to to set the Color Scheme in vi / vim in my Linux. The default configuration looks ugly:
Today I had to configure a MySQL database cluster and I faced the following error
Επιτέλους! (at last! in greek) After a month and a half of waiting, I received my Raspberry Pi! Now I am going to show you how to install Raspbian Wheezy Lin...
Today I wanted to explore Perl’s Unicode and regular expression capabilities, so I wrote down this simple script. It is quite amazing how simply Perl handles...
Updated: 2015-09-08
Welcome to WordPress.com. After you read this, you should delete and write your own post, with a new title above. Or hit Add New on the left (of the admin da...
Today we wanted to parse some json logs which we had in a file using Logstash and enrich them with Geolocation information regarding the city and the ISP an...
A few days ago, a Solr server in our SolrCloud installation stopped unexpectedly. After examining solr.log file I spotted that it could not start again becau...
Today I had to parse a JSON response in a JUnit test and then reuse it in a cURL command line call. Unfortunately I could not read the JSON response from a f...
UPDATE (2015-05-13): Confirming that the following approach works for Lubuntu versions 12.10, 14.04 and 14.10 and Linux Mint 15 and 17.
Today I wanted to to set the Color Scheme in vi / vim in my Linux. The default configuration looks ugly:
Today I wanted to make a mail notification mechanism for a project of mine. After some web searching I stumbled upon a mkyong.com tutorial where he uses SMTP...
Today I wanted to send an email using SMTP from my gmail account. I searched the web and I found this and this and this which helped me a lot. So this is the...
Today I had to hide a Wordpress 3.8.1 blog behind an Nginx reverse proxy configured to use only https. Nginx was behind an external firewall which forwarded ...
I have installed XAMPP in my Windows machine and I want to alter the timezone in Apache HTTP server, PHP module and MySql in order to see proper dates in ser...
Today I wanted to delete the selected rows of a datawindow grid in Powerbuilder. When I say delete I wanted just to remove them from the screen and not from ...
Today I wanted to retrieve the selected system language from PowerBuilder 10. To accomplish that I had to do some search in the web. After a long period I fo...
Today I had a database table which contained special and control characters (like DLE, DC1, ACK, DC3 etc.) in its records. After some searching I found a way...
Today I wanted to collect disk usage information and send them to a remote server script. I used df command to collect disk usage information and Python to s...
Επιτέλους! (at last! in greek) After a month and a half of waiting, I received my Raspberry Pi! Now I am going to show you how to install Raspbian Wheezy Lin...
Today I wanted to to set the Color Scheme in vi / vim in my Linux. The default configuration looks ugly:
Επιτέλους! (at last! in greek) After a month and a half of waiting, I received my Raspberry Pi! Now I am going to show you how to install Raspbian Wheezy Lin...
Today we wanted to parse some json logs which we had in a file using Rsyslog and enrich them with Geolocation information regarding the city and the ISP an ...
Today I wanted to extract the SMS content out of the android SMS application SQLite database using ADB.
Today I had to hide a Wordpress 3.8.1 blog behind an Nginx reverse proxy configured to use only https. Nginx was behind an external firewall which forwarded ...
We use Solr 4.6 with SolrCloud configuration in a production system. You may say: “It is hight time you upgraded to the latest version, isn’t it?”. And you w...
A few days ago, a Solr server in our SolrCloud installation stopped unexpectedly. After examining solr.log file I spotted that it could not start again becau...
Today I wanted to install Apache Solr index in Windows 7, Windows Server 2008R2 and Windows Server 2012 machines. So I achieved that , using the following st...
Update 2016-05-13: The following procedure works perfectly for migrations from version 8.0.4 to 8.7.5
Today I wanted to export to a .tar.gz archive all unstracked (new) , modified and deleted files from a Git repository. After some searching, I found a StackO...
Today I was working on a Java Spring MVC project which uses Maven. My editor was the Eclipse IDE, with the current version of the M2E plug-in. When I pulled ...
Today I was trying to create and ODBC Data Source to a database using 32 bit database drivers. When I accessed ODBC Data Sources (32bit) from Control Panel, ...
Today I am going to show you how do we obtain schema information in SQL Server 2005/2008. If you want to select all table names from a specific schema you ne...
Today I want to truncate ( delete all table data) in a large SQL Server database instance. Plain delete statements are not going to work as there is a big nu...
Yesterday I installed SublimeText 3 editor (build 3143) in my PC and the first thing I realised was that I could not type any Greek accented characters. Thus...
Today I had to parse a JSON response in a JUnit test and then reuse it in a cURL command line call. Unfortunately I could not read the JSON response from a f...
Today I wanted to collect disk usage information and send them to a remote server script. I used df command to collect disk usage information and Python to s...
UPDATE (2015-05-13): Confirming that the following approach works for Lubuntu versions 12.10, 14.04 and 14.10 and Linux Mint 15 and 17.
Today I wanted to to set the Color Scheme in vi / vim in my Linux. The default configuration looks ugly:
Επιτέλους! (at last! in greek) After a month and a half of waiting, I received my Raspberry Pi! Now I am going to show you how to install Raspbian Wheezy Lin...
UPDATE (2015-05-13): Confirming that the following approach works for Lubuntu versions 12.10, 14.04 and 14.10 and Linux Mint 15 and 17.
A few days ago, a Solr server in our SolrCloud installation stopped unexpectedly. After examining solr.log file I spotted that it could not start again becau...
Today I wanted to install Apache Solr index in Windows 7, Windows Server 2008R2 and Windows Server 2012 machines. So I achieved that , using the following st...
Today I had to configure a MySQL database cluster and I faced the following error
Today I had to import a very large SQL dump file (6 Gb) to a MySQL database using windows command line. If you are using linux it is the same. The process is...
I have installed XAMPP in my Windows machine and I want to alter the timezone in Apache HTTP server, PHP module and MySql in order to see proper dates in ser...
Today I wanted to make a mail notification mechanism for a project of mine. After some web searching I stumbled upon a mkyong.com tutorial where he uses SMTP...
Today I wanted to send an email using SMTP from my gmail account. I searched the web and I found this and this and this which helped me a lot. So this is the...
UPDATE (2015-05-13): Confirming that the following approach works for Lubuntu versions 12.10, 14.04 and 14.10 and Linux Mint 15 and 17.