A schedule is the arrangement of events in time.

learn more… | top users | synonyms

1
vote
0answers
28 views

Javascript /Html schedule manager inputs handling

i am making a agenda manager and i have a javascript that is called whenever a input is entered, the javascript should store all the inputs. It is working when only one input is entered. I want to ...
-2
votes
0answers
33 views

Ruby appointments gem or same [closed]

Please advise on the Ruby gem that will be able to provide something like: INTERVALS = [30, 60, 90, 120, 150, 180] puts "Enter start time your job" start_at = Time.parse(Time.now.day.to_s) + ...
-2
votes
0answers
12 views

Schedule clock instead of “x hours ago”

I've added a photo few hours ago and I subsequently added its location, which made the schedule clock appear (saying the photo was posted TODAY) instead of the collocation "x hours ago". I honestly ...
1
vote
2answers
139 views

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 ...
0
votes
0answers
14 views

run MongoDB MapReduce periodically

Anybody knows how can I run mapreduce in mongodb every one hour or one day? I know I can do it in my application or with the OS, but I'm looking for something inside the mongodb shell. Thanks!
-2
votes
1answer
31 views

Android Scheduled Notifications

I'm building an app and I need to schedule a notification that remember the user to access the app. I need this notification to be shown a month ahead of the last time the app was used
0
votes
0answers
36 views

Half day schedule in silverlight

I have a TimePicker, which make me choose a time in a dropDownList, like this But, I'm wondering, if it is possible to have, instad of this, a little calendar (like in outlook) based on a particular ...
1
vote
3answers
48 views

How to schedule an action in python?

I like to know how to preform an action every hour in python. My Raspberry Pi should send me informations about the temp and so on every hour. Is this possible? And I am new to python and linux. Can ...
-1
votes
0answers
28 views

How can I start a job with sp_start_job only if another job succeeded? [closed]

quick question. I have a bunch of tables that run overnight which is fine. If they run successfully i want the scheduled jobs to run. I have the following code which I have added to step 1 of my ...
0
votes
0answers
19 views

Represent the state of a Highschool schedule

I am trying to schedule a large amount of students across 6 periods. Students have already chosen the courses they want to take (each take 5-6 classes). Courses have been created and teachers assigned ...
-3
votes
0answers
27 views

Java Error: no suitable method found for schedule(int,int,int) [closed]

Hello and I am having an extremely frustrating error that shows up in my code. I am programming a blind flying simulator with Java. however, I am having trouble with the part in which the program ...
0
votes
1answer
34 views

Call a method from time on every day

Hi I have a full screen app; Firstly I want eg. 6pm hide all oject then show again a specific time, everyday repeatt it. just it's called depends on device's time? Second one is I want to send status ...
2
votes
0answers
44 views

Android: Schedule / Festival Line - Up Layout with fixed rows

I'm developing an Android app for a festival and I need to make a layout for the line up of all the bands and stages. I would like to make it like following picture: You can download the app at ...
0
votes
1answer
56 views

Schedule sms programatically with out any user interaction in iphone

I am already aware of the fact that there is an option for us to send sms programatically i.e. using MFMessageComposeViewController ,but is it possible to schedule the message to the specified ...
2
votes
2answers
32 views

Method for storing/displaying repeating weekly schedule

I would like to store and retrieve a dynamic weekly schedule that is not at all dependent on the actual date. The data would be stored in a MySQL table like this (not ordered by time): (Class and ...
0
votes
1answer
79 views

Service Android stop and start by itself

I know the android system stop service but this happens so fast maybe 1 minutes or less of starting the service sometimes takes longer and my service is stopped and started @Override public void ...
0
votes
0answers
28 views

Scheduling a custom Trigger and params with grails and quartz plugin

Using grails 2.1.2 wth the quartz plugin Looking for a simple but complete example of passing a custom trigger to Dynamic Jobs Scheduling I have a controller and a Job (for the execute). In the ...
0
votes
0answers
59 views

Components with <f:ajax> do not work when a <p:schedual> exists on the same page in JSF2

As said in this question's answer : "Components which uses Ajax. If you don't need it, disable Ajax" a p:schedual isn't displayed if there are others components with an f:ajax in the same ...
2
votes
2answers
53 views

Schedule optimize

I have a list of schedules that all start and end on different days. When I search for all schedules in a week I want to list all time periods that are within range of that week, even those that may ...
0
votes
0answers
67 views

Creating scheduled local push notifications for android 2.3+

I have an application setup now that creates a schedule using alarmmanager to send out random sms messages that I have stored as strings in strings.xml. I want to change the functionality to be push ...
0
votes
0answers
27 views

How to display schedule based events in YII overview?

I'm currently working on an online housekeeping book. I'm using Yii for this task. Now I'm wondering, how to accomplish the following task: I created a transaction table: transaction ----------- id ...
-3
votes
0answers
31 views

How to mysql every day at 00:01:00? [closed]

I want to create an event for every new registered user to add a new day into the scheduler every day at 00:01:00. I have the procedure to call into the event but I can't create the event. How can I ...
0
votes
1answer
29 views

SQL Server sp_add_schedule Active_Start_Date Tomorrow

I am trying to create a job that will run once (tomorrow) at 1:00 AM. I think this should be pretty easy but I'm not having much luck. Essentially this is what I would like to do however the ...
0
votes
1answer
28 views

Cron schedule - Execute job at three different times with no pattern between. Is it possible?

I have a job I want to run using Quartz, which require the time to be specified using a Cron schedule. The job should run at 17:00, 17:35 and 22:05. Is it possible to specify these times using a ...
-5
votes
0answers
109 views

PHP/MySQL Weekly Calendar [closed]

I am trying to create a weekly schedule (Booking System) where I need to have a weekly schedule with times 8 - 18, iow Monday 8 - 9 - 10 etc. Where The times eventually will be clicable for ...
0
votes
0answers
24 views

Will task sleep during the memory access?

I suppose this should be a programming question. I just want to make sure, in the current Linux scheduler, will the task sleep(or dequeued) when it's waiting for the memory IO? In other words, will ...
0
votes
0answers
90 views

Data modeling for a school timetable

what's up guys? I'm trying to modeling a school timetable with some friends (developers too), but we're getting some problems. If you can, help me with the modeling, and for algorithm, I just want ...
1
vote
0answers
38 views

Primefaces Schedule: How to block times?

I want to use the primefaces schedule component to display some sort of calendar. The user to should be able to create and edit apointments which all works fine. One thing I couldn´t achieve was to ...
1
vote
2answers
84 views

Dynamic parameters for @Schedule method in an EJB 3.x

I'm new to the @Schedule annotations in J2EE6 I want to run a job using EJB 3.x with Glassfish 3.1. The javax.ejb.Schedule seems to be a good choice for us, so we could think of our custom time as ...
0
votes
0answers
31 views

Java Bean @Schedule annotation - trigger a new method execution before the previous is over

Is it possible to create a bean method that has @Schedule annotation for example: @Schedule(minute = "", second = "1,11,21,31,41,51", dayOfMonth = "", month = "", year = "", hour = "", dayOfWeek = ...
2
votes
3answers
63 views

Fnd consecutive dates withing a defined span where a Trainer is available to schedule

We have a table used for assigning trainers to planned customer installations. In the table, there is a record for each trainer, for each day of the year. (We can, and sometimes do, work weekends.) I ...
1
vote
1answer
63 views

R: Scheduling code in a webpage

I'm trying to build a webpage displaying a few graphs. I want to use R to build the graphs, and I want these graphs to automatically update themselves periodically. For example, a webpage showing a ...
0
votes
0answers
56 views

Schedule Script weekly with Python or PHP or ASP.NET [closed]

I made a python script to extract some data. Now I want this script to run daily and save the extracted data to the mysql-db. Then I want to display the data using googleCharts on a website, and ...
-2
votes
2answers
41 views

Batch Program executes on a certian date?

I've been trying to get a batch to start another batch on a certain date. (specified) I've tried all that I can think of. TIMEOUT does not work for this. Any suggestions? EDIT: I am sorry I didn't ...
0
votes
1answer
109 views

Migration from Play Framework 2.0.x to 2.1, how to shedule tasks?

My question is similar to this: play framework 2.1 - scheduling async tasks. But I am kinda scala noob, I want to know how to shecule tasks by java code. My java codes in 2.0.x is: ...
0
votes
0answers
24 views

How to display a schedule and highlight current time/day?

I run an online radio station and need to construct a schedule that can highlight "Now Playing: Blah Blah" in reference to the hour/day etc and the Show Name I define somewhere. The schedule will be ...
0
votes
1answer
77 views

Schedule update SQL Query using Php

I have an website with mobile phone prices and all prices are collected from external siites manually, all I want is to schedule update prices ($emag, $koyos)every 3 days. My manuall update query is ...
0
votes
2answers
83 views

Postponing timer schedule java

At TIME = 0, a user calls a method that sets a flag after 10 seconds. (at TIME = 10) If the user calls the method again at TIME = 2 the flag should NOT be set at TIME = 10, but instead at TIME = 12: ...
0
votes
1answer
130 views

Using OMP_SCHEDULE with #pragma omp for parallel schedule(runtime)

I am trying to understand how to use the schedule(runtime) directive of OpenMP in C++. After some research I found OMP_SCHEDULE(1) and OMP_SCHEDULE(2). I concluded that I need to set the varibale ...
1
vote
2answers
570 views

How to create a scheduled job in SQL server 2008 via T-SQL?

I want to create a job which deletes records from a database after a period of time has passed. For example I have a field in news table Time Stamp and each month a SQL query runs like a scheduled job ...
0
votes
1answer
42 views

How to use os.date() to schedule app to turn off?

I'm getting a big problem with that. Can someone help? Thanks. local timer; function start(e) timer = os.date("!*t", os.time() + 60); print(timer); end someObject:addEventListener("tap", start); ...
0
votes
1answer
64 views

Want to have a new build in Jenkins at every CVS changes, but not more than one build every two days

how to schedule to meet this requirement? If there is a previous build in last two days, and comes a change in CVS, then the next build will be started two days later from the previous build If ...
1
vote
0answers
62 views

Create C# Algorithm used to calculate NextRunDate for Job Schedules as SQL Agent

**Hello, **I am currently creating a Job Schedule System in C#(Exact the same behaviour as SQL Agent) but I can't create a C# Algorithm that calculate NextRunDate based on Frequency Type such as ...
0
votes
1answer
53 views

bryntum component integration

I am trying to integrate the bryntum component(schedule) in php. I am not much aware in ext js. Please see the images here Here, Name fields are fetching properly, whereas Capacity is not accessing. ...
1
vote
1answer
65 views

Best class to schedule a task

I'm planning to make an app that enables the Mobile Data of the android every X hours for Y minutes. I was wondering which class should I use to schedule this task. Thanks
0
votes
0answers
60 views

Android: Schedule call to web service and update more than one Activity with the data returned

I have a scenario where I need to call a web service each 30 seconds and with the data returned update more than one activity's UI and in a specific case show the user a popup with a notification. I ...
0
votes
1answer
111 views

Delphi Week Array Storage Issue for Scheduling System

I have a form with calenders on it. When the calenders are clicked, they set the variable CurDateSel to the date selected on the calendar. I have a constant array (Week) which has the values of ...
0
votes
1answer
48 views

Display notifications according to a time schedule

I really need some guidance here. I implemented an alarm manager that triggers a notification service. And it works if I have to display only one notification. But what I need now is a way to display ...
0
votes
0answers
17 views

How to best execute a series of events on different intravals

I am making a music game in java, and I created a program that exports a text file of the milliseconds of the beats. My game reads those in fine, but I am trying to find a good way to execute a method ...
1
vote
0answers
146 views

Football league scheduling algorithm (with sync. home/away)

I'm making an automatic football league generator and got stuck on schedule. I have an algorithm for generating everything, but not schedule. Take a look: [tour-id] => Array ( ...

1 2 3 4 5 7