Apr 26
Without tweetymail or tiwttermail or posterous or any other 3rd party solution. Â This solution should have been easier to find. Â So thought I’d write it up here.
I run a website for a non-profit, and we use Google Calendar for our events on our website. Â We also have a Facebook page and a Twitter account (of course). Â I linked our Facebook page to Twitter acct (http://apps.facebook.com/twitter/). Â So now all I have to do is to post to Facebook and it automatically gets Tweeted as well.
So I wanted our google calendar to send reminders of events to Facebook and thus Twitter as well.
1) Find your secret m.facebook.com email address
2) Set up a Gmail Filter to forward reminders to your secret Facebook email address. Â This will send an verification code to your FB page. Â You will need to get that code off (to verify the forwarding address) and then delete the post. Â I don’t know of a better way.
3) Create a filter for Calendar Reminders:
- From:Â calendar-notification@google.com
- Has the words:Â [Reminder]
- Doesn’t have: notweet (I added this to have the option to not post some events/reminders)
Now all you need to do is to setup email reminders on your Google Calendar events!
Popularity: 3%
Sep 05
I never could find a good script to check to see if a Macromedia Contribute key had been installed for a user on a machine, and if not then to run the key. So I made one. This one is for Contribute 2, but I think it will work with 3 (if you change the Site folder to 3). And it assumes that the user will only be running one Site. I make the Contribute Icon/Shortcut point to this script.
You will need to change “h:\key.stc” to the location of your key. You will need to save the following script as a .vbs
Set objFSO = CreateObject(“Scripting.FileSystemObject”)
Set objNetwork = WScript.CreateObject(“WScript.Network”)
strUserName = objNetwork.UserName
If objFSO.FileExists(“C:\Documents and Settings\” & strUserName & “\Local Settings\Application Data\Macromedia\Contribute 2\Sites\Site1\_mm\contribute.xml”) Then
Set wshShell = WScript.CreateObject (“WSCript.shell”)
wshshell.run “”"C:\Program Files\Macromedia\Contribute 2\Contribute.exe”"”, 6, True
set wshshell = nothing
Wscript.Quit
Else
Wscript.Echo “Your Contribute Key needs to be installed on this computer. Click OK to begin.”
Set wshShell = WScript.CreateObject (“WSCript.shell”)
wshshell.run “h:\key.stc”, 6, True
set wshshell = nothing
End If
References:
1) http://www.microsoft.com/technet/scriptcenter/resources/qanda/jun05/hey0620.mspx
2) http://weblogs.asp.net/steveschofield/archive/2004/03/14/89240.aspx
3) http://www.computerperformance.co.uk/Logon/Logon_HomeDirAdv.htm
Popularity: 22%
May 02
Credit reporting agencies:
• Equifax
P.O. Box 105069
Atlanta, Ga 30348
To report fraud: Call 800-525-6285 and write to address above
To order credit report: 800-685-1111
(free copies only obtained by mail)
• Experian (formerly TRW)
P. O. Box 9532, Allen, TX 75013
To report fraud: Call 888-397-3742 and write to address above.
Fax: 800-301-7196
To order credit report: 866-200-6020
(free copies only obtained by mail)
• Transunion
P.O. Box 6790
Fullerton, Ca. 92834
To report fraud: 800-680-7289 and write to address above.
To order credit report: 800-888-4213
(free copies only obtained by mail)
Popularity: 4%