after spoonboy borrowed my alarm clock, i got to using the neat alarm clock plugin for xmms on my linux box to wake me up. but lately, i've been using my windows box a lot which has itunes. i found references to a couple applescripts to provide alarm clock functionality for mac itunes. with the recent release of itunes 4.5 for windows and a com interface, i decided to write something similar in python for windows. [view script]
posted by geoff on 5/20/2004 02:34:04 PM
[top | permanent |

friday june 4, 2004
8pm at rhino's (325 s. walnut st.)
$2 for admission or $5 for admission and cd!
WHAT THE KIDS WANT - cd release show for "loud quiet loud" cd on smack dab
in the middle records
DEFIANCE, OHIO
CHAIN REACTION
PSYCHIC SISTER
FEATHERWEIGHT MC
posted by geoff on 5/18/2004 06:53:22 PM
[top | permanent |
http://www.nvu.com
posted by geoff on 5/17/2004 08:19:22 PM
[top | permanent |
http://www.fotosearch.com/image-club/universal-symbols/ICL119/
posted by geoff on 5/17/2004 08:36:50 AM
[top | permanent |
i like halftones so i like this.
http://www.cl.cam.ac.uk/~and1000/newsprint/
posted by geoff on 5/17/2004 01:11:17 AM
[top | permanent |
Private Sub compute_status()
Dim Order_date As String
Dim Receipt_date As String
Dim resale_date As String
Dim returned_date As String
Dim cancelled_date As String
Order_date = Nz(Me.Order_date, "NULL")
Receipt_date = Nz(Me.Receipt_date, "NULL")
resale_date = Nz(Me.resale_date, "NULL")
returned_date = Nz(Me.returned_date, "NULL")
cancelled_date = Nz(Me.order_cancelled_date, "NULL")
If Order_date = "NULL" Then
If resale_date = "NULL" Then
Me.status = "In Stock"
Else
Me.status = "Sold"
DoCmd.RunSQL ("UPDATE inventory1 SET sold = 1 WHERE inventory_id =" & Me.inventory_ID)
End If
Else
If returned_date = "NULL" And cancelled_date = "NULL" Then
If resale_date = "NULL" Then
If Receipt_date = "NULL" Then
Me.status = "On Order"
Else
Me.status = "In Stock"
End If
Else
Me.status = "Sold"
DoCmd.RunSQL ("UPDATE inventory1 SET sold = 1 WHERE inventory_id =" & Me.inventory_ID)
End If
Else
Me.status = "Rescinded"
DoCmd.RunSQL ("UPDATE inventory1 SET sold = 1 WHERE inventory_id =" & Me.inventory_ID)
End If
End If
End Sub
posted by geoff on 5/16/2004 04:46:43 AM
[top | permanent |
http://www.wowwebdesigns.com/power_guides/3d_text/
posted by geoff on 5/16/2004 01:38:44 AM
[top | permanent |
i wanted to switch from using evolution to thunderbird as my mail client. unfortunately, i thought that thunderbird didn't offer support for email accounts for which their was no corresponding pop server (like a forwarded account). apparently, it can:
http://forums.mozillazine.org/viewtopic.php?p=300933#300933
posted by geoff on 5/16/2004 12:35:56 AM
[top | permanent |