The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
43 views

Assembly MOV doesn't work, Debug for Linux and INT code list

I have a problem here... I'm using debug (in cmd/ms-dos) to learn some things and to peforme some commands... I set AX to 1234 and DX to ABCD. So, I did '-a 100' to register a instruction, I did: mov ...
0
votes
2answers
864 views

how to handle ios call interruptions in background

I can handle call interruption using beginInterruption and endInterruption in the foreground application but when my application is in the background, how should I handle the call interruption?
0
votes
2answers
240 views

Differentiate if the app became inactive because the home button being pressed or an incomming phone call

I know that whenever the app becomes inactive, the UIApplicationWillResignActiveNotification local notification will be posted. In the opposite suituation, the UIApplicationDidBecomeActiveNotification ...
1
vote
1answer
529 views

Getting a reference to the current boost::thread/interrupting the main thread

I am trying to get a reference to the main boost::thread of execution, so that I can interrupt it. However, boost::thread doesn't seem to supply any way of doing this. I have searched on the ...
1
vote
2answers
94 views

Can NSUserDefaults be used for pausing the application during a phone call?

Friends, currently I dont have iphone to test and using Simulator for testing purposes. I am Just curious to know whether an application continues to run even after a phone call.. here i have no ...
5
votes
8answers
2k views

Java, replacement for infinite loops?

I am making a program that shows cellular growth through an array. I have gotten it so when I press the start button, the array updates every 10 seconds in a while(true){} loop. The problem with that ...
30
votes
18answers
3k views

Do you have a physical “developer busy” indicator? [closed]

At my workplace, it has been suggested that each developer is given the opportunity to indicate to his peers that he is busy and cannot be disturbed. This would be done in order to ensure that you ...
12
votes
12answers
510 views

Managing interruptions with increased seniority

As developers advance in seniority, they are more frequently the "go-to" person for questions from business people, other developers, and other teams. As we know, interruptions have a devastating ...