30 Aug 2016

xampp disable web acces to others

13:05 | xampp | 805 views

Goal: disable xampp web access to everybody else Filter by IP address like this in the file httpdxampp.conf to disable the dashboard directory:


1 Aug 2016

change the status bar color

0:07 | android | 730 views

Goal: fit the full screen coloring to our application Sometimes we need to change the status bar color to create a harmony on the whole screen. Put this into the main activity: Simple… and no more blue top on the screen…


29 Jul 2016

using Context in a static environment (simple way)

11:54 | android | 699 views

Goal: find a simple way to reach a usable context in a static method I have found many complicated ways to get a usable context, but I have an easy and simple way. 1. we need a static class, with a global context variable 2. set this variable in the main activity 3. and of […]


29 Jul 2016

get the cpu version

11:45 | android | 635 views

Goal: find out the heart of a device It is easy to find the version of the central unit in my device. Seemingly… 1. the android way Use the Build class like this: 2. get info from the company (as I see they can give what they want…) Read the /proc/cpuinfo file. So in a […]


28 Jul 2016

get the current battery level

18:01 | android | 674 views

Goal: check the device battery level In a static function like this: The result is between 0-100 (0 is not very common 🙂 )


28 Jul 2016

using Context in a static environment

16:33 | android | 703 views

Goal: get Context in a static method Sometimes we need a context in a static method, but we don’t have… Let’s dig one. example: get the device ID (IMEI) in a static function.


28 Jul 2016

get the device id (IMEI)

1:51 | android | 750 views

Goal: get the unique device identifier This is the IMEI/MEID number. We need permission to read this information.


26 Jul 2016

set the font style and size in a SearchView

16:06 | android | 782 views

Goal: let’s customize a SearchView appearance First of all the SearchView is a complex control. We need to find the child TextView to do this changes. Set the following style: here is the code: The findChildrenByClass function like this: public static Collection findChildrenByClass(ViewGroup viewGroup, Class clazz) { return gatherChildrenByClass(viewGroup, clazz, new ArrayList()); } private static […]


23 Jul 2016

generate random numbers

12:25 | android | 678 views

Goal: we need this 🙂 We need to know about this. How we can generate a random number between minimum and a maximum value.


23 Jul 2016

date difference calculation

12:22 | android | 673 views

Goal: get the time difference between two dates The following code gives the difference between two times in this form: 1h 12m The seconds and the days not used. Just good to know how can calculate these values.


#sidebar a { color:#fff; } #sidebar ul ul li { color: #DEF585; } #sidebar h2 { color: #fff; } #sidebar ul p, #sidebar ul select { color: #BEDDBE; } #backfly { background: url(images/golfBallWallPaper.jpg) left bottom fixed repeat-x #65a51d; }