date

How to display my current time in Linux (server shows date in GMT but my time should be GMT+8)?

Hi all, when I use the 'date' command, our server gives the GMT time. But my current time should be GMT+8. How do I display my current time as GMT+8? Thanks in advance. ...

Finding the date one month in advance on the same day

In MySQL, I can do something like: SELECT DATE_ADD('2010-07-02', INTERVAL 1 MONTH) And that returns: 2010-08-02 That's great... now is there a MySQL function that I can use to find what the date would be one month in advance on the same day. For example, 7/2/2010 falls on the first Friday of July, 2010. Is there an easy way...

In VBA Excel when I copy one cell to another, if it is a date it is not copied, what do I do?

This is probably quite simple but I've googled and can't find an answer. I am also just learning VBA (I have done VB.NET etc. etc.) If the cell the macro is trying to copy is a date I just get a number copied, e.g. 40352 from 23/06/2010 Here is a code snippet, any help most appreciated, thanks: Sheet5.Range(Cells(rwStartNumber, curren...

Get Date details (day, month, year) in GWT

I need to get the day, month, year details from a Date value but getYear() is deprecated, gives year on 2 digits, and has problems with Y2K (2008 gives 108). The java doc recommends using java.util.calendar but it is not supported in GWT. I want to avoid sending all the info back and forth between the server and client just to deal with...

How to see if the date is later than 8 days?

Hi all, i have a string field (and i can't change this because the date format) on mysql database that contains a date (Like: "01-03-2010"), and i wan't to make a function to compare that date and return true if today's date is newer than 8 days, and false if the date is lower or bigger than today's date... Example: 01-03-2010 < (08-06...

SQL -- Derive Date Difference Column

+------+-------------------------+ | proc | endTime | +------+-------------------------+ | A | 2010/01/01 12:10:00.000 | | B | 2010/01/01 12:08:00.000 | | C | 2010/01/01 12:05:00.000 | | D | 2010/01/01 12:02:00.000 | | ...| ... | So basically the data I pull from SQL will look somethin...

Editing a Date field in Appengine Data Store Viewer

Does anyone know how edit a field with type 'Date' in the appengine data store viewer in production? It seems like it maps to an int field and I tried putting in the number of milliseconds since epoch but that didnt work. ...

Get users current date

Hi, I need to check what’s the current date where the user is in. I don’t need the time, just the current date. How can i do it? I'm using codeigniter. Thanks. ...

Convert (YYYY/MM/DD HH:MM:SS:MS) GMT to Local time JavaScript

For some reason, the SOAP response from one of my WebService looks like this: 2010/07/08 04:21:24.477 Where the date format is (YYYY/MM/DD) and the time is GMT I'm not really sure how to convert this to local time because the format is so odd ...

How to format this date type 2010-06-24T00:00:00Z to sun,24/06/10 7.15 p.m (CDT) using javascript or jquery

How to format this date type 2010-06-24T00:00:00Z to sun,24/06/10 7.15 p.m (CDT). using javascript or jquery. sun,24/06/10 7.15 p.m (CDT) this is just a format representation which i need & not the actual date of the above string. Appreciate the quick response Thanks in advance! ...

How to execute a function at a certain date in a web application ?

I am on a project using php and codeigniter framework. I want to make changes in the database every 3 months. The problem is I don't know how to do it with PHP. I can activate a function when a user access a page, but I want it to be self-executed at certain date. ...

Querying CouchDB documents between a start date and an end date.

I've been trying to figure out how to create a CouchDB view that will let me query all the documents that have a start date greater than A and an end date less than B. Is this possible in CouchDB or another noSQL document store? Should I scrap it and go back to SQL? I'm simply trying to do the SQL equivalent of: SELECT * WHERE [start ...

How to fix GITHUB commit date?

Hi all, I am working on a github hosted project. For testing reasons, I have to move my computer date to somewhere in the future (2012) and forgot to bring it back to normal time when doing a git commit / push. The actual commit is now actually saved as 2012 instead of 2010 and it's screwing our github view since they always appear on...

Rails finding notes by date

Hello I've created a simple rails app that has a people and a notes model. People have many notes and notes belong to people The app works and I'm able to show all the notes for a specific person, but I'd like to be able to show a single note for a specific date. The default scenario being todays date. I currently have the following...

VB.NET - Conversion from string "11/07/2010 13:00:00" to type 'Date' is not valid.

Hi, I am getting the error: Conversion from string "11/07/2010 13:00:00" to type 'Date' is not valid. In my ASP.NET code when run on the web server. The date is valid and it can't be a US format issue because either way it would be valid. I have tested it and it seems to error when the time is > 12:00 (ie. a 24hour like 13:00 or 21:00)....

When converting a mysql time in php I always get 16:00:20, regardless of the mysql time.

I am having trouble with converting time, when I use the date() function on a mysql timestamp, it only returns 16:00. Am I using the date() function wrong? PHP: date_default_timezone_set('America/Los_Angeles'); $date = date('H:i:s A'); echo "System: $date <br />"; $dbc = @mysqli_connect(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME); $q...

PHP time() in script/function vs $var=time();

I have a globalish variable which is $VARcurrenttime = time(); then I normally call that variable when computing anything with that timestamp (which is a lot). Someone suggested to me that using time() instead of the variable would be somewhat faster. I don't really know but could someone advise me on whether I would bother changing this...

Histogram in flot - Javascript

Hi folks, I'm trying to create a histogram in flot, where the bars are organized by day. I cannot find a way to merge values into 1 bar per day. __ Any ideas? ...

Rails pagination by date

Hello I'm looking to implement pagination based on a date. I am using a named_scope to pull a note for today but I'd like to add functionality to be able to have a previous link that will show a note for yesterday. If I happened to be on the page for yesterday I'd also like to be able to have a link that will show the day before yeste...

Why is this returning -1 in JavaScript

d.getTime().toString().search(/Wed/i) I don't get it... typeof returns string, and if i copy and paste "Wed Jul 14 2010 15:35:53 GMT-0700 (PST)" and save it to the var str and do str.search(/Wed/i) it returns 0 but when i do it like above i always get -1, even tho, as i said, it returns a string typeof. Any ideas how to check if Wed i...