Python School Alarm Clock 0.5 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Python School Alarm Clock 0.5 (Default branch)
# 1  
Old 08-02-2008
Python School Alarm Clock 0.5 (Default branch)

PySchoolClock is an alarm clock that checks yourlocal school closing listings on the Internet. Ifyour school is closed, the alarm clock lets yousleep in.License: GNU General Public License v3Changes:
"http://" is automatically added to the closings URL, if not already present. A verbose mode for debugging has been added. The code has been cleaned up. A snooze function has been added, allowing users to delay the alarm when school is closed.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Alarm clock error while executing the script

I am executing perl script on Linux machine and the script is running for the last 5 hours and while running the script I had an error message in a single line Alarm Clock and the script got stopped. I havnt scheduled the script.I have executed the script manually. There is no syntax errors in... (1 Reply)
Discussion started by: scriptscript
1 Replies

2. Shell Programming and Scripting

crontab+mplayer alarm clock

I'm trying to run a alarm.sh using crontab, which play a song as an alarm at 6.15 am. I'm using amixer so that volume increases by 10% in every loop. My script is the following. SHELL=/bin/bash PLAYER=/usr/bin/mplayer SONG=/home/hbar/Music/song.mp3 DISPLAY=:0.0 15 06 * * *... (10 Replies)
Discussion started by: hbar
10 Replies
Login or Register to Ask a Question
ALARM(2)						     Linux Programmer's Manual							  ALARM(2)

NAME
alarm - set an alarm clock for delivery of a signal SYNOPSIS
#include <unistd.h> unsigned int alarm(unsigned int seconds); DESCRIPTION
alarm arranges for a SIGALRM signal to be delivered to the process in seconds seconds. If seconds is zero, no new alarm is scheduled. In any event any previously set alarm is cancelled. RETURN VALUE
alarm returns the number of seconds remaining until any previously scheduled alarm was due to be delivered, or zero if there was no previ- ously scheduled alarm. NOTES
alarm and setitimer share the same timer; calls to one will interfere with use of the other. sleep() may be implemented using SIGALRM; mixing calls to alarm() and sleep() is a bad idea. Scheduling delays can, as ever, cause the execution of the process to be delayed by an arbitrary amount of time. CONFORMING TO
SVr4, SVID, POSIX, X/OPEN, BSD 4.3 SEE ALSO
setitimer(2), signal(2), sigaction(2), gettimeofday(2), select(2), pause(2), sleep(3) Linux 1993-07-21 ALARM(2)