31 Aug 2011

Volume Problem

HTC 2 Comments

You have only the last OTA update (Android-version: 2.3.4, Softwarenumber: 1.45.401.2) to the phone and the problems are gone.

OTA means “Over The Air”, the update arrives directly on your phone.
If you don’t get a message on your phone, try to go to “settings – about phone – softwareupdate” look in the bottom of the screen.

31 Aug 2011

Capslock while entering text using the onscreen keyboard

HTC No Comments

Use the following key while entering text using the onscreen keyboard:

You have a Shift key. Tap to enter an uppercase letter and if you a caps lock, tap twice.
Note: You need a quick clicking to a caps lock

31 Aug 2011

Remove a word(s) in the private text dictionary

HTC No Comments

You can remove words to the private text dictionary.

  1. Menu -> Settings > Language & keyboard > Touch Input
  2. Then tap the Personal dictionary > Edit personal dictionary
  3. Click a menu en tap Delete. Then choose the words to remove and tap Delete.
10 Aug 2011

The email tell to change from the folders with Procmail and Spamassassin

Linux 1 Comment

It’s a help from Procmail
You can filter your mail so, that spam you don’t even get, when you check your mail.
Read more

03 Aug 2011

How to copy from the sim to Gmail contacts with HTC Sensation

HTC 2 Comments

A good tip: Also put all your contacts to Google, is just one click and it takes 5 seconds. If you ever lose your contacts on your device, you have it on your gmail / google

Menu -> Contacts -> Menu -> Import / Export -> Export to SD Card -> SIM Export Confirm
Read more

18 Jun 2011

Maak je eigen hoestdrankje

Gerechten No Comments

Als het zondag is of als je geen extra geld uitleent naar een echte hoestdrankje, kan jezelf een hoestdrankje maken

Ingrediënten

100 gr honing
100 gr suiker
100 gr ui

Read more

07 Jun 2011

Special characters to RSS

PHP, Webdeveloper No Comments

Difference between IE and Firefox about special characters to RSS , you have a commando from PHP.

$str = htmlentities($str, ENT_COMPAT, 'UTF-8');

Both working 🙂

31 May 2011

Preg Match All – Examples

Geen categorie No Comments

Only characters


$source_string = '234foo23doo';
$pattern = '#([a-z]+)#';
$result = preg_match_all($pattern,$source_string,$matches);

echo $matches[0];

Result: foo,doo
29 May 2011

Example Date and strtotime to PHP

PHP, Webdeveloper No Comments

Soms heb je in een webpagina een datumvermelding nodig die relatief is aan de werkelijke datum. De eerste dag van de lopende maand, bijvoorbeeld. In PHP kan je met de “date”-functie, al dan niet in combinatie met “strotime” een groot aantal van deze relatieve datumvermeldingen eenvoudig opnemen.

Algemene syntax: string date ( string $format [, int $timestamp = time() ] )

Hieronder een aantal voorbeelden.

Huidige datum:

2024-05-05 21:32:20

 

Month Year

echo date("F Y");

Result:
May 2024

Read more

29 May 2011

PHP Date – Reference

PHP, Webdeveloper 1 Comment

Now that you know the basics of using PHP’s date function, you can easily plug in any of the following letters to format your timestamp to meet your needs.

Important Full Date and Time:

  • r: Displays the full date, time and timezone offset. It is equivalent to manually entering
    date(“D, d M Y H:i:s O”)

Time:

  • a: am or pm depending on the time
  • A: AM or PM depending on the time
  • g: Hour without leading zeroes. Values are 1 through 12.
  • G: Hour in 24-hour format without leading zeroes. Values are 0 through 23.
  • h: Hour with leading zeroes. Values 01 through 12.
  • H: Hour in 24-hour format with leading zeroes. Values 00 through 23.
  • i: Minute with leading zeroes. Values 00 through 59.
  • s: Seconds with leading zeroes. Values 00 through 59.

Read more