« Posts by Umberto

Change Windows server 2008 R2 language

To change, or add a language in a Windows Server 2008 R2 system, you need to download a language pack ISO from Microsoft download site.

You can find it here
Then you need to install it; but Microsoft documentation if obscure on this argument....

The faster way is to execute this command lpksetup from Start->Run

and choose the cab file from the language pack dir you want add.

That's all, follow the instruction an you are done.

Sync Android IMAP Client with Lotus Domino 6.5

If you need to sync your Lotus Notes mailbox on your Android Device, you have to configure a couple of things (maybe).
This is the "how to" tested on my Samsung Galaxy (GT-i9000 android 2.2.1 Froyo) and Lotus Domino 6.5.4.

Open Lotus Domino Administrator, under your person document you should set "Prefers MIME" in "Format preference for incoming mail" field.
save and close.
Under "Messaging" -->"Configurations" open your Server's Document, in "IMAP" Tab, set "Enabled" in "Enable IMAP during login" field; then open the Domino conosole, and type:
load convert -e mail/database.nsf
This will check if your DB is flagged for IMAP use.
Next type:
load convert -h mail/database.nsf
This may take a while, but after the IMAP communication will be faster.

Hope this will help you

Disable update on wordpress plugin

If you have a plugin you wan't update, and you wan't see anymore newer version the only way to disable autoupdate for this plugin if to modify the code.

Go in plugin section, then press "edit" on plugin you want disable update and go down at the end of the code (before the "?>") and paste this:

add_filter('site_transient_update_plugins', 'dd_remove_update_nag');
function dd_remove_update_nag($value) {
 unset($value->response[ plugin_basename(__FILE__) ]);
 return $value;
}
 

Save and you are done.

Thanks DD32 for the code. (http://dd32.id.au)

Authors needed!!!

Hi all!
I'm searching authors;
if you are interested, comments here or contact me.

Thanks for your help!

Arduino IR receiver

This is a test I've made with a TSOP2238 , an Arduino Duemilanove and my Philips TV remote.
I'm using this to change pwm value on four leds.
Next I'll post sample PDE for arduino and the rest of the project.... stay tuned.

Sorry for poor quality, but I've only my cellphone to register...

-----------------