Volume Problem
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.
Capslock while entering text using the onscreen keyboard
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
Remove a word(s) in the private text dictionary
You can remove words to the private text dictionary.
- Menu -> Settings > Language & keyboard > Touch Input
- Then tap the Personal dictionary > Edit personal dictionary
- Click a menu en tap Delete. Then choose the words to remove and tap Delete.
The email tell to change from the folders with Procmail and Spamassassin
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
How to copy from the sim to Gmail contacts with HTC Sensation
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
Maak je eigen hoestdrankje
Als het zondag is of als je geen extra geld uitleent naar een echte hoestdrankje, kan jezelf een hoestdrankje maken
Special characters to RSS
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 🙂
Preg Match All – Examples
Only characters
$source_string = '234foo23doo'; $pattern = '#([a-z]+)#'; $result = preg_match_all($pattern,$source_string,$matches); echo $matches[0]; Result: foo,doo
Example Date and strtotime to PHP
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:
2025-05-17 06:07:44
Month Year
echo date("F Y"); Result: May 2025
PHP Date – Reference
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.