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…