[CHIUSURA ALTERNATIVA PER GODEX EZ-DT-2 E EZ-DT-4] Replaces spare parts number 700-057200-011 (right hook) and 700-057300-011 (left hook) Sostituzione ricambi 700-057200-011 (leva destra) e 700-057300-011 (leva sinistra)
Information and Communications Technology
-
-
Windows Vista and Windows 7 Common Cleanup Operations Checklist
In this post i will write a checklist of common operations i do after clean installation of Windows Vista or Windows 7 (the most are not recommeded by Bill): 1. disable UAC (User Account Control) 2. disable System Protection on all disks 3. delete all Tasks except Registry Backup Task…
-
Windows 7 freezes after being idle for a while [SOLVED]
Today i solved a two year problem with Windows 7 and my hp notebook. After leaving the computer idle for a while 10 or 20 minutes or more, the computer become unresponsive and the hard disk keeps working forever. To restore to normal operation i had to reset the pc.…
-
How to hide fields in CakePHP 2.0 scaffolding views
This is a simple code to hide fields in scaffolding views. In the controller add the method beforeRender in this way: public function beforeRender() { $action = $this->request->params['action']; if ($action == 'index') { $fields = array('id', 'username', 'role', 'created',…
-
Android 4: Start Contacts Application / People Application on tablet when missing icon
I have a tablet (allwinner a13 mid tablet 7″). Contacts application Contacts.apk is installed, but the icon is missing in the application list. It can be started from terminal emulator. My android version is 4.0.4, i run on the terminal this command: am start -n com.android.contacts/com.android.contacts.activities.PeopleActivity or am start -n…
-
Windows Vista, Windows 7 delete all scheduled tasks and folders
Run Cmd as Administrator Execute this command: schtasks /delete /tn * This delete all tasks, but not the folders. To delete also the folders you must delete those in these directories: C:\Windows\System32\Tasks\Microsoft\Windows C:\Windows\SysWOW64\Tasks\Microsoft\Windows
-
Programmatically create contacts on Android 1.6 Donut (API Level 4) targetting HTC Tattoo
Here is the code i used: private void addPeople(String name, List<String> homeNumbers, List<String> mobileNumbers) { //insert contact ContentValues peopleContentValues = new ContentValues(); peopleContentValues.put(Contacts.People.NAME, name); //WARNING: this is for HTC to indicate the contact type //extra_group = 0 [google contact] //extra_group = 1 [??:…
-
VBA Macro Example to Update Outlook Contacts
This is a simple macro example that describes how to update outlook contacts: Sub updateContacts() Dim ContactsFolder As Folder Dim Contact As ContactItem Set ContactsFolder = Session.GetDefaultFolder(olFolderContacts) i = 0 For Each Contact In ContactsFolder.Items first_name = Contact.FirstName middle_name = Contact.MiddleName last_name…
-
GNU ddrescue log SVG graph
This is a perl script that creates the svg code that matches a ddrescue log file. SVG module is required. Edit the $INPUT_FILE and $SCALE_FACTOR variables as needed. The SVG code is outputted to standard output. The messages to standard error. Use ddrescue-svg-log.pl > output.svg to output to file. #!/usr/bin/perl…
-
Yii Console Log with Unit Testing
1. install phpunit correctly pear install phpunit/PHPUnit pear install phpunit/PHPUnit_Selenium 2. create the class CConsoleLogRoute in the components directory in the file CConsoleLogRoute.php with this code: <?php class CConsoleLogRoute extends CLogRoute { protected function processLogs($logs) { foreach($logs as $log) { echo $this->formatLogMessage($log[0],$log[1],$log[2],$log[3]); } } } 3. configure YII to log…