Fortune Bot Back Online

Fortune

After a long break, the unix_quote fortune bot is back online. It is posing linux fortune command results from an Ubuntu server.  The script is written in perl using the Net::Twitter::Lite library and is run using cron several times a day.

#!/usr/bin/perl
use Net::Twitter::Lite;
my $nt=Net::Twitter::Lite->new(
legacy_lists_api => 1,
consumer_key => "",
consumer_secret => "",
access_token => "",
access_token_secret => "",
);
$quote=`/usr/games/fortune`;
$qupte=substr($quote,0,139);
$quote =~ s/\s+$//;
$nt->update($quote);

Of course, the secret passwords have been omitted to protect the innocent. The magic Oath passwords can be obtained from the twitter developer site.

Posted in Uncategorized | Comments Off

Microsoft to embrace Git

Berlin Wall

Yesterday Microsoft announced that soon they would be adding Git to their flagship software development platform visual studios and TFS, it’s server back end. What is Git? Git is the FOSS distributed version control system first developed by Linus Toriavolds for managing the Linux kernel.

What will Git bring to the table? The ability to do off line local branching, the ability to collaborate using repositories such as github, and the ability to more easily use the visual studios IDE to work on Git hosted projects.

When will we see these features, while they didn’t have specific timelines, it appears that the answer is soon.

Posted in tech | Tagged , , | Comments Off

Merry Tuba Christmas

Tuba Mirror
This year again Adam, Jess and I preformed in the Mason City Tuba Christmas, as you can see it was well covered by the local media…

The mp3 audio recorded by the local radio station: http://www.kglonews.com/pc/tubachristmas2012.mp3

Local newspaper article

http://globegazette.com/news/local/merry-tuba-christmas-daughter-of-founder-pays-and-plays-tribute/article_629cdd3e-4197-11e2-b6de-001a4bcf887a.html#.UMPdqdB9WlY.facebook

 

And the video that Dad shot… http://youtu.be/TV1prB6X1zU

I hope you all have a merry Tuba Christmas again this year

 

Posted in Uncategorized | Comments Off

Amazon S3 now offers Cross-Origin Resource Sharing

In yet another improvement to their service, Amazon’s S3 service now allows for CORS. This allows developers to build HTML5 and AJAX empowered applications that utilize the power of the S3 cloud without having to resort to hacks such as running a proxy server on their web server.

This is yet another upgrade in a long line of cool stuff from the wizards at Amazon.

.

Posted in Uncategorized | Comments Off

Here’s to NASA and the Curiosity Team

A lot has been in the news about the new Mars Rover, Curiosity. NASA and JPL’s latest cool project that landed a nuclear powered rover on the surface of Mars by the use of a sky crane.

The people responsible for this are apparently also passably good dancers also as seen in this spoof of “I’m sexy and I know it” aka “I’m NASA and I know it.”

Posted in Uncategorized | Comments Off

Happy 4th of July

Fireworks over Urbandale, Iowa on the 4th of July 2012

I hope everyone has a happy 4th of July!

Posted in Uncategorized | Comments Off

How to configure Exchange 365 so that your passwords will never expire

Lock

At work we are currently using Hosted Exchange by Microsoft.  As all of our accounts were essentially locked out on the same day and required all of the users to log onto the webmail website to reset their passwords, with out pre warning.

After contacting MS Support they directed me to the following work guide.

The directions require you to set up powershell to use Microsoft Online Services Module. Next you need to issue the following set of commands:

  • $cred=Get-Credential
  • Connect-MsolService -Credential $cred
  • Get-MSOLUser | Set-MsolUser -PasswordNeverExpires $true

Note that you will need to run this whenever you reset someones password or create a new user on the web based interface as it always defaults to the password expires false setting.

Posted in tech | Tagged , , , | Comments Off

New iOS update out… have you upgraded yet?

iPhone again

Apple has released iOS version 5.1.1 (the operating system of for your phone).  Directions for over the air updating are available: http://howto.cnet.com/8301-11310_39-57429405-285/how-to-update-your-ios-device-software-over-the-air/ (the update will require connecting to a wifi point first or via itunes).  This upgrade also applies to any iPad, later generation iPod touch, or other recent iOS devices.

 

Posted in Uncategorized | Comments Off

Congratulations to the Recent Graduate

Ashley graduates with her cake

Congratulations to my sister-in-law Ashley Hill who walked at the University of Norther Iowa graduation last weekend (ok, she doesn’t actually graduate until the end of summer and her internship). She majored in Leisure Youth & Human Services.  Best of luck to her in her future endeavors.

Posted in Uncategorized | Comments Off

Could not complete the operation. One or more parameter values are not valid. Outlook 2010

Jimi Hendrix's address book

I ran into an odd error when trying to send email from our newly configured Office 365 hosted exchange.  When sending email to people who were already in my auto complete address book I would receive the message “Can not complete the operation” a fellow user also recieved the error “Could not complete the operation. One or more parameter values are not valid.”

It turns out that this is a corruption in the frequently used email address cache and can be cured by deleting the cache by going to File/Tools/Options/Mail and choosing clear autocomplete

Posted in Uncategorized | Comments Off