Reply to topic  [ 16 posts ]  Go to page 1, 2  Next
iPhone alarms hit by New Year glitch 
Author Message
Legend

Joined: Sun Apr 26, 2009 12:30 pm
Posts: 45931
Location: Belfast
Reply with quote
A glitch on Apple's iPhone has stopped its built-in alarm clock going off, leaving many people oversleeping on the first two days of the New Year.

Angry bloggers and tweeters complained that they had been late for work, and were risking missing planes and trains.

Apple has acknowledged the problem and says it will be fixed by 3 January.

The reason has not been given but the glitch appears to affect single alarm settings on the Iphone 4 and earlier models with software updates.

A similar problem hit the iPhone alarm when the clocks went back in November, again causing many users to be late for work or for transport arrangements.

"We're aware of an issue related to non-repeating alarms set for January 1 or 2," Apple spokeswoman Natalie Harrison said in a statement quoted by Macworld.

"Customers can set recurring alarms for those dates and all alarms will work properly beginning January 3."

More than 1.7m people around the world had bought iPhone 4 handsets by June 2010, in what was the company's most successful product launch.

http://www.bbc.co.uk/news/technology-12104890

_________________
Plain English advice on everything money, purchase and service related:

http://www.moneysavingexpert.com/


Sun Jan 02, 2011 2:07 pm
Profile
What's a life?
User avatar

Joined: Thu Apr 23, 2009 8:46 pm
Posts: 10022
Reply with quote
I'm sure my alarm went off at 0600 on Sunday but when I set it for 1730, not a peep!

_________________
Image
He fights for the users.


Mon Jan 03, 2011 12:25 am
Profile
I haven't seen my friends in so long
User avatar

Joined: Thu Apr 23, 2009 7:35 pm
Posts: 6580
Location: Getting there
Reply with quote
Just tested now and it is working fine as they said it would.

_________________
Oliver Foggin - iPhone Dev

JJW009 wrote:
The count will go up until they stop counting. That's the way counting works.


Doodle Sub!
Game Of Life

Image Image


Mon Jan 03, 2011 12:58 am
Profile WWW
I haven't seen my friends in so long
User avatar

Joined: Tue May 05, 2009 3:29 pm
Posts: 7173
Reply with quote
Fogmeister wrote:
Just tested now and it is working fine as they said it would.

It's a pretty poor showing though, how many more errors are we going to see with this clock? :?

_________________
timark_uk wrote:
That's your problem. You need Linux. That'll fix all your problems.
Mark


Mon Jan 03, 2011 1:16 am
Profile
I haven't seen my friends in so long
User avatar

Joined: Thu Apr 23, 2009 6:58 pm
Posts: 8767
Location: behind the sofa
Reply with quote
Linux_User wrote:
Fogmeister wrote:
Just tested now and it is working fine as they said it would.

It's a pretty poor showing though, how many more errors are we going to see with this clock? :?

Rather makes you wonder if "clock" was thought such a simple app, they gave the coding job to a work-experience student :lol:

_________________
jonbwfc's law: "In any forum thread someone will, no matter what the subject, mention Firefly."

When you're feeling too silly for x404, youRwired.net


Mon Jan 03, 2011 2:42 am
Profile WWW
I haven't seen my friends in so long
User avatar

Joined: Thu Apr 23, 2009 7:35 pm
Posts: 6580
Location: Getting there
Reply with quote
JJW009 wrote:
Linux_User wrote:
Fogmeister wrote:
Just tested now and it is working fine as they said it would.

It's a pretty poor showing though, how many more errors are we going to see with this clock? :?

Rather makes you wonder if "clock" was thought such a simple app, they gave the coding job to a work-experience student :lol:

To me it seems like they have over complicated it by a very long way.

It almost seems like there is a separate clock driving the alarms as to the one driving the time display (hence the alram offset when the clocks changed).

_________________
Oliver Foggin - iPhone Dev

JJW009 wrote:
The count will go up until they stop counting. That's the way counting works.


Doodle Sub!
Game Of Life

Image Image


Tue Jan 04, 2011 11:22 am
Profile WWW
I haven't seen my friends in so long
User avatar

Joined: Thu Jun 18, 2009 5:10 pm
Posts: 5836
Reply with quote
Exactly how hard can it be to program?

  1. Poll for Alarm time, Alarm date/recurrence, Snooze time
  2. Check input is valid
  3. Store Alarm time, Alarm date, Snooze time
  4. If Real Date == Alarm Date OR Recurrence == YES then Goto 5; Else Goto 4
  5. If Real Time == Alarm time, sound alarm then Goto 6; Else Goto 5
  6. Poll for input to stop Alarm or snooze
  7. If input is snooze then add Snooze Time to Alarm time and Goto 5; Elseif input is stop then Goto 8; Else Goto 6
  8. If Recurrence == No then Delete Alarm Time, Alarm Date, Snooze Time then Goto 9; Else Wait 60 then Goto 5
  9. End

Or have I missed something? :?

_________________
Jim

Image


Tue Jan 04, 2011 6:07 pm
Profile
I haven't seen my friends in so long
User avatar

Joined: Thu Apr 23, 2009 9:40 pm
Posts: 5288
Location: ln -s /London ~
Reply with quote
Timezones and daylight savings are a fairly major bugger. And what if a second is missed? Or a minute? Or an hour?

_________________
timark_uk wrote:
Gay sex is better than no sex

timark_uk wrote:
Edward Armitage is Awesome. Yes, that's right. Awesome with a A.


Tue Jan 04, 2011 6:11 pm
Profile
I haven't seen my friends in so long
User avatar

Joined: Thu Jun 18, 2009 5:10 pm
Posts: 5836
Reply with quote
EddArmitage wrote:
Timezones and daylight savings are a fairly major bugger. And what if a second is missed? Or a minute? Or an hour?

But they shouldn't be part of the Alarm clock routine surely? You'd just deal with them out in the main clock, wouldn't you? :?

If you want to get up everyday at 0800, you still want to get up at 0800 after the clocks move surely? Thusly the alarm doesn't need to know anything about DST or Timezones. :?

_________________
Jim

Image


Tue Jan 04, 2011 6:17 pm
Profile
I haven't seen my friends in so long
User avatar

Joined: Thu Apr 23, 2009 6:36 pm
Posts: 5161
Location: /dev/tty0
Reply with quote
rustybucket wrote:
EddArmitage wrote:
Timezones and daylight savings are a fairly major bugger. And what if a second is missed? Or a minute? Or an hour?

But they shouldn't be part of the Alarm clock routine surely? You'd just deal with them out in the main clock, wouldn't you? :?

If you want to get up everyday at 0800, you still want to get up at 0800 after the clocks move surely? Thusly the alarm doesn't need to know anything about DST or Timezones. :?


And this is, perhaps, the problem with both the app and the OS being designed by the same people. Does the Clock app conform to Apple's App Store guides? Or does it make use of private API's? If it does then it might latch onto a variable $base_time, there may be another variable called $daylight_saving_adjustment, the clock on the main screen takes these two variables and adds them together. Et voila! Your alarm clock is wrong.
OK, that can't be what happened as these problems have fixed themselves/don't work like that. But it's easy to see that someone inside Apple, who may not need to work to the same stringent coding standards as outside developers, might do something like that.


Tue Jan 04, 2011 6:56 pm
Profile WWW
What's a life?
User avatar

Joined: Thu Apr 23, 2009 6:27 pm
Posts: 12251
Reply with quote
Mind you, if the clock app is polling the system clock, and that is off, then it may be something deeper going wrong.

Note that the iOS devices don't sync their time with an external time server, so they do drift after a while.

_________________
All the best,
Paul
brataccas wrote:
your posts are just combo chains of funny win

I’m on Twitter, tweeting away... My Photos Random Avatar Explanation


Tue Jan 04, 2011 9:54 pm
Profile
What's a life?
User avatar

Joined: Thu Apr 23, 2009 7:56 pm
Posts: 12030
Reply with quote
Hmm perhaps some clever johnny should be writing their own Alarm app...

_________________
www.alexsmall.co.uk

Charlie Brooker wrote:
Windows works for me. But I'd never recommend it to anybody else, ever.


Tue Jan 04, 2011 11:06 pm
Profile
I haven't seen my friends in so long
User avatar

Joined: Thu Apr 23, 2009 6:58 pm
Posts: 8767
Location: behind the sofa
Reply with quote
ProfessorF wrote:
Hmm perhaps some clever johnny should be writing their own Alarm app...

Duplicates existing functionality... even if it actually "just works" :lol: :evil:

_________________
jonbwfc's law: "In any forum thread someone will, no matter what the subject, mention Firefly."

When you're feeling too silly for x404, youRwired.net


Tue Jan 04, 2011 11:18 pm
Profile WWW
What's a life?
User avatar

Joined: Thu Apr 23, 2009 7:26 pm
Posts: 17040
Reply with quote
JJW009 wrote:
ProfessorF wrote:
Hmm perhaps some clever johnny should be writing their own Alarm app...

Duplicates existing functionality... even if it actually "just works" :lol: :evil:

There are plenty of alarm clock apps on the app store already. Some of them a quite sophisticated and very graphically impressive. Lots of different clock faces and what have you...

Jon


Wed Jan 05, 2011 10:57 am
Profile
What's a life?
User avatar

Joined: Fri Apr 24, 2009 10:21 am
Posts: 12700
Location: The Right Side of the Pennines (metaphorically & geographically)
Reply with quote
It does seem like a very basic feature to mess up on. Very embarrassing since digital alarms were perfected decades ago.

_________________
pcernie wrote:
'I'm going to snort this off your arse - for the benefit of government statistics, of course.'


Wed Jan 05, 2011 11:40 am
Profile WWW
Display posts from previous:  Sort by  
Reply to topic   [ 16 posts ]  Go to page 1, 2  Next

Who is online

Users browsing this forum: No registered users and 17 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Group
Designed by ST Software.