Questions tagged [schedule]

A schedule is the arrangement of events in time.

1847 questions
4
votes
1 answer

Maximizing a combination of a series of values

This is a complicated one, but I suspect there's some principle I can apply to make it simple - I just don't know what it is. I need to parcel out presentation slots to a class full of students for the semester. There are multiple possible dates,…
kevbonham
  • 999
  • 7
  • 24
4
votes
2 answers

Can SMS be saved and scheduled for delivery in Twilio? If not, how do I get this done?

I just signed up for a Twilio trial account. I'm not seeing any feature speaking to how I can create and save multiple SMS messages for later and schedule when to send them to a group. Is this possible? Or is there a better software for this?
linkgtaylor
  • 123
  • 2
  • 8
4
votes
1 answer

How to set a Custom Schedule Quantlib?

I'm working on a project where I'm using Quantlib to perform some bond calculations, such as yield and duration. Plugging in listing date maturity date, face value, calendar, day count convention etc and get the yield and duration value out is…
4
votes
3 answers

How to start process over ssh that doesn't terminate when session ends?

Is there a way to start a process using ssh that doesn't terminate when the ssh session terminates? I want the job to keep running on the computer I'm ssh-ing into without me having to keep the connection open.
HighCommander4
  • 50,428
  • 24
  • 122
  • 194
4
votes
1 answer

Using Upstart instead of cron

Can I use Upstart to run tasks on schedule? Now I have this tasks in my crontab: 0 3 * * * /usr/bin/node ~/update.js 0 9 * * * /usr/bin/node ~/update.js 0 12 * * * /usr/bin/node ~/update.js 0 15 * * * /usr/bin/node ~/update.js How I can run this…
inetbug
  • 409
  • 6
  • 16
4
votes
2 answers

setting up linux cron jobs from java

I want to be able to setup linux cron jobs from a java program. I know to setup a cron job, i use the crontab tool: crontab -e and then specify the cron expressions. How do i do this programmatically from a java program? Thanks
maress
  • 3,533
  • 1
  • 19
  • 37
4
votes
2 answers

Alternative to an infinite loop

I have an infinite loop:- while(true) { //display an image } Obviously the CPU goes up. I have used: Thread.Sleep(100); Thread.Sleep(0); ApplicationDoEvents() - I know i shouldn't This loop will never end unless the application is ended. Are they…
Andrew Simpson
  • 6,883
  • 11
  • 79
  • 179
4
votes
2 answers

How to find first free time in reservations table in PostgreSql

Reservation table contains reservations start dates, start hours and durations. Start hour is by half hour increments in working hours 8:00 .. 18:00 in work days. Duration is also by half hour increments in day. CREATE TABLE reservation ( …
Andrus
  • 26,339
  • 60
  • 204
  • 378
4
votes
1 answer

about CONFIG_NO_HZ in kernel

So if CONFIG_NO_HZ is set, I believe it will make a tickless kernel. But I believe this just means when the system is idle, it might become tickless in order to save energy. When it's working, it is still tick kernel, right? Thanks:>
Hao Shen
  • 2,605
  • 3
  • 37
  • 68
4
votes
1 answer

Create a Scheduled service in android

I need to create a schedule service in android with java. I have tried some codes , but all time after build the application it doesn't run. My logic is simple , I want to make a service to check the existence of a file in the bluetooth folder path,…
El Sa7eR
  • 881
  • 3
  • 10
  • 17
4
votes
2 answers

How to do scheduled sending of email with django-mailer

I'm making a django app that needs to be able to make emails and then send these out at a given time. I was thinking i could use django-mailer to put things in que and then send it of. But even though theire sample case list, lists that this is a…
espenhogbakk
  • 11,508
  • 9
  • 39
  • 38
3
votes
2 answers

What is a strict schedule?

Say n transactions follow a strict serializable schedule i.e. serialize themselves using strict2PL or the like. Now say a (n+1)th transaction comes in to run concurrently with the others and does not follow strict2PL. Can we still safely say that it…
Lipika Deka
  • 3,774
  • 6
  • 43
  • 56
3
votes
2 answers

How to debug ARM Linux kernel (msleep()) lock up?

I am first of all looking for debugging tips. If some one can point out the one line of code to change or the one peripheral config bit to set to fix the problem, that would be terrific. But that's not what I'm hoping for; I'm looking more for how…
user1261470
  • 141
  • 3
  • 6
3
votes
2 answers

Scheduled Export/Import for Dynamics CRM 2011

I don't know if this is the right place to ask but I give it a try. Does anyone know if there is a functionality in Dynamics CRM 2011 to create a schedule that does an automated XML Export of an entity and/or a schedule for import another file from…
Mohnkuchenzentrale
  • 5,745
  • 4
  • 30
  • 41
3
votes
1 answer

Different behaviour between scalar and parallel code

I'm wondering why the following code produces different results in its scalar and parallel variants: #define N 10 double P[N][N]; // zero the matrix just to be sure... for (int i=0; i
linello
  • 8,451
  • 18
  • 63
  • 109