The weekly tag has no wiki summary.
3
votes
1answer
77 views
Set day of week to be used by to.weekly
I am trying to convert a time series of daily data (only business days) contained in an xts object into a time series of weekly data. Specifically, I want the resulting time series to contain the end ...
3
votes
1answer
2k views
JAVA Calendar - How to check if it's Saturday/Sunday?
What this code does is print the dates of the current week from Monday to Friday. It works fine, but I want to ask something else: If today is Saturday or Sunday I want it to show the next week... how ...
2
votes
3answers
222 views
Weekly repeating tasks emacs org-mode
I want to track habits using org-mode. For example, I want to do exercise 3 times every week. Is there a way to schedule 3 times a task every week irrespective of the date in org-mode?
2
votes
8answers
5k views
Java - How to calculate the first and last day of each week
I'm trying to create a weekly calendar that looks like this: http://dhtmlx.com/docs/products/dhtmlxScheduler/sample_basic.html
How can I calculate every week date? For example, this week is:
...
1
vote
2answers
103 views
Use Left Join for show 3rd Week data wrong result
I have a lot of data in my DB. i'm use Mysql.
for this case, i try to show 3rd week data by using some query:
SELECT Line, (SUM(S) + SUM(A) + SUM(B)*0.4 + SUM(C)*0.1)/COUNT(Serial_number) AS 3rd
...
1
vote
2answers
196 views
scheduling app using constraints for when an event can take place
Ok, what I'm trying to do is build a web app that allows students to visually organize their class calendar using drag and drop. but They have to be able to drag and drop to specific locations (when ...
0
votes
0answers
12 views
need to fetch the data from db according to weekly basis
I am beginner to SQL query, i need to retrieve the data according to weekly basis.
for ex: Date column - Time Column- Tagno 1 column - Tagno 2 Column--- like this.
I need to fetch & display the ...
0
votes
1answer
271 views
how to use different WHERE clause in left join
I have two textfields, I posted each textfield value into MySQL query specially in WHERE CLAUSE.
$sWhere = " WHERE MONTH(Inspection_datetime) = '".$Month."' AND
YEAR(Inspection_datetime) ...
0
votes
3answers
207 views
Do you send automatic weekly reports about status of your server?
I am working on redoing a weekly report, I send, to anyone on our development team.
The previous version just sent sql server based scheduled jobs status, backup status, and database size.
But for ...
0
votes
3answers
2k views
Using PHP to group and display MySQL entries by week
I'm building a site with several 'one-liners'. These are added using a simple PHP5 form, stored in a MySQL 5 database. Each row has an 'id' (auto_increment), 'title', 'description', 'status' (1 or 0) ...
0
votes
2answers
512 views
How to display weekly(Mon to Sun) data in php and mysql?
In php i can get today date/day by using : $today = date('D, Y-m-d');
If today is wednesday 8 july, i want to display data from 6 - 11 July (9, 10 and 11 will be blank). How do I do that?
Now my ...