Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
4answers
8k views

Converting unix timestamp string to readable date in Python

I have a string representing a unix timestamp (i.e. "1284101485") in Python, and I'd like to convert it to a readable date. time.strftime returns me with a type error. Any help is appreciated!
14
votes
2answers
2k views

Ruby strftime: Month without leading zero?

Does Ruby's strftime have a format for the month without a leading zero? I found %e for getting the day without the leading zero, but not having any luck with the month. Ultimately wanting a date ...
10
votes
5answers
805 views

Is there any way to use a strftime-like function for dates before 1900 in Python?

I didn't realize this, but apparently Python's strftime function doesn't support dates before 1900: >>> from datetime import datetime >>> d = datetime(1899, 1, 1) >>> ...
6
votes
1answer
213 views

C++11 alternative to localtime_r

C++ defines time formatting functions in terms of strftime, which requires a struct tm "broken-down time" record. However, the C and C++03 languages provide no thread-safe way to obtain such a record; ...
5
votes
3answers
804 views

strftime formatting with Ruby/Rails — Lowercase am/pm

I have the following: @comment.created_at.strftime("%I:%M %p %b %d") Which outputs: 10:32 AM Dec 19 I'd like to output a lowercase am, like: 10:32am Dec 19 Any ideas on how to do that with ...
5
votes
3answers
4k views

Making Django forms.DateField show use local date format

I'm trying to find an easy way to build forms which show dates in the Australian format (dd/mm/yyyy). This was the only way I could find to do it. It seems like there should be a better solution. ...
5
votes
4answers
2k views

How do I format a date in ruby to include “rd” as in “3rd”

I want to format a date object so that I can display strings such as "3rd July" or "1st October". I can't find an option in Date.strftime to generate the "rd" and "st". Any one know how to do this?
3
votes
1answer
137 views

strftime performance vs. snprintf

I have run into an interesting performance conundrum but before I start delving into glibc and entering bugs left right and center I just wanted to get to get any insight that might be out there. I ...
3
votes
3answers
490 views

Using %f with strftime() in Python to get microseconds

I'm trying to use strftime() to microsecond precision, which seems possible using %f (as stated here). However when I try the following code: import time import strftime from time print ...
3
votes
2answers
494 views

PHP: strftime(), date() or DateTime, Which is better?

I am curious to know if there is any advantage in PHP of using strftime() over date() or vice versa. A class I downloaded used the strftime(). However, since it does not support all time formats on ...
3
votes
2answers
515 views

Safely calling strftime with untrusted format string

We have a C++/MFC application which allows users to customize date formatting via configuration files. Not wanting to reinvent the wheel, I pass the format string to CTime::Format("< format string ...
3
votes
11answers
3k views

How can I improve/replace sprintf, which I've measured to be a performance hotspot?

Through profiling I've discovered that the sprintf here takes a long time. Is there a better performing alternative that still handles the leading zeros in the y/m/d h/m/s fields? SYSTEMTIME ...
2
votes
1answer
41 views

PHP echo all days of week (strftime)

I was wondering if there is a way to use the locale in strftime to echo all days of the week, regardless of date. To use as sort of headings or titles and rather than using constants and loading the ...
2
votes
3answers
121 views

Wrong month name in russian

I'm working on a site and my customer is from Russia. He said that the month translation in the news is wrong. For example, September: I get this from php: Сентябрь and this from him: Сентября ...
2
votes
1answer
98 views

Convert a java.text.DateFormat instance to a strftime string?

I've got a DateFormat object that I would like to turn into a strftime string so I can get consistent date formatting across multiple languages. Is there something in the SDK that I'm missing? If not, ...
2
votes
5answers
353 views

Display the date, like “May 5th”, using pythons strftime? [closed]

Possible Duplicate: Python: Date Ordinal Output? In Python time.strftime can produce output like "Thursday May 05" easily enough, but I would like to generate a string like "Thursday May ...
2
votes
1answer
316 views

AM/PM not uppercase when using I18n.l with %p in Rails

I'm having an issue which I can't seem to figure out. I'm trying to format a date using a custom format I've defined in my en.yml file: en: hello: "Hello world" time: formats: ...
2
votes
2answers
288 views

C: How to print a particular `time` value in a particular timezone (by offset)?

I'm writing an application in C that parses data files recorded by an external program (over which I have no control). It's storing binary data, one field of which is a time in standard UNIX "epoch" ...
2
votes
6answers
276 views

How Do I Get Yesterday's Date In C?

I am wanting to get yesterday's date into a char in the format: YYYYMMDD (with no slashes dots etc.). I am using this code to get today's date: time_t now; struct tm *ts; char yearchar[80]; ...
2
votes
1answer
118 views

get week for 01-01-2011 using strftime returns 00

$w = strftime("%W",mktime(0,0,0,1,1,2011)); echo $w; returns "00" Why?
2
votes
2answers
493 views

Using strftime function in mawk

I'm trying to create AWK script that will filter the input file according to some pattern, and use the strftime() function for some calculations. ($2 ~ /^[HB]/ && $2 ~ /n$/){ print ...
2
votes
3answers
4k views

Converting a string to a formatted date-time string using Python

I'm trying to convert a string "20091229050936" into "05:09 29 December 2009 (UTC)" >>>import time >>>s = time.strptime("20091229050936", "%Y%m%d%H%M%S") >>>print ...
2
votes
4answers
505 views

C - Improper Pointer/Integer Combination in strftime()

I'm getting the compiler error: (83) error: improper pointer/integer combination: arg #1. Here's the code that is doing it: char boot_time[BUFSIZ]; ... Line 83: strftime(boot_time, ...
1
vote
1answer
55 views

How to print Turkish day/month names with Time.strftime on Ruby?

Is there anyway that i can use locale on ruby's Time.strftime ? How can i use different languages? German, Turkish anyother language rather than English? Thanks
1
vote
4answers
112 views

c++ Function to format time_t as std::string: buffer length?

I want a function that will take a time_t parameter and an arbitrary format string and format it. I want something like this: std::string GetTimeAsString(std::string formatString, time_t theTime) { ...
1
vote
2answers
61 views

Localize output of strtotime string

I read through manuals concerning strtotime and strftime as well as related functions, but I cannot seem to make any progress in trying to solve my problem. Basically, I'm interested in ways to print ...
1
vote
3answers
237 views

Android Time.format(“%a”) giving incorrect day of the week

I'm trying to retrieve the localized day for a given timestamp. My code is something like this String timestamp = "2011-08-01T15:55:03.000+02:00"; Time time = new Time(); time.parse3339(timestamp); ...
1
vote
2answers
88 views

strftime doesn't show PM or AM

This is the code I use to get the date (in spanish): $fecha = strftime("%d de %B, %Y, a las %l:%M %p"); and I get: 27 de julio, 2011, a las 7:10 So the question is, where is my PM (or AM)? My ...
1
vote
2answers
89 views

What is the SQLite command for getting the data between a start and end time?

Let's say my database is called "data" and its second column is called "datetime". The format of my datetime is "7/22/2011 12:00:00". If I want to get the the information between 12:00 and 13:00 ...
1
vote
1answer
177 views

Discrepancy between SQLite's strftime / julianday and Cocoa's timeIntervalSince1970?

NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter setTimeZone:[NSTimeZone timeZoneForSecondsFromGMT:0]]; [dateFormatter setDateFormat:@"yyyy-MM-dd"]; NSDate *date1 = ...
1
vote
3answers
461 views

How to convert week number and year into unix timestamp?

I'm trying to group together dates into a week number and year, and then I want to convert that week number back into a unix timestamp. How can I go about doing this? Thanks in advance for your ...
1
vote
3answers
302 views

Python: comparing dates and print out the first one

This is probably very simple, but I am a beginner in python and I wanted to compare birthday dates by prompting a user to enter a date in MM-DD format. No year because year is current year (2011). It ...
1
vote
3answers
514 views

Convert NSDate to String with strftime

How would I convert an NSDate to a NSString, formatted with strftime specifiers?
1
vote
1answer
1k views

Rails: undefined method `strftime' for nil:NilClass, but value (without strftime) returns OK

I have an odd problem with a (rails 3) activerecord query. If I submit query #1 (below) to the view (below) everything works fine...but if I submit query #2 (below), I get "undefined method ...
1
vote
1answer
381 views

haml collection and nil --> strftime

I have a Post object I am rendering in a partial, where one element is = post.created_at I want to format the time so I've tried variations of strftime in the partial and as a model hook. = ...
1
vote
1answer
86 views

Vim script: how to retrieve the timezone offset?

I would like to get the timezone offset of the user environment in a Vim script and that must be portable (Unix/linux/MacOSX, Windows). For example, if the user is in Paris, its timezone offset is ...
1
vote
2answers
346 views

Is strftime with nanoseconds possible in bash?

Is there any way to obtain Unix Time with nanoseconds with strftime in bash? My line for unix time : <command> | awk '{ print strftime("%s"), $0; }' I cannot use date +%N because date is ...
1
vote
4answers
548 views

C# Finisar SQLite DateTime Comparison Problem

My "task" database table look like this: [title] [content] [start_date] [end_date] [...] [...] [01.06.2010 20:10:36] [06.06.2010 20:10:36] [...] [...] [05.06.2010 20:10:36] [06.06.2010 20:10:36] ...
1
vote
2answers
269 views

zsh: strftime command not found

I am currently learning the zsh and now I wanted to use strftime but i get: zsh: command not found: strftime I think I'm doin' something wrong, since I see people using that function all the ...
1
vote
2answers
812 views

Unicode setlocale and strftime fails at windows

I have one page and it's encoding is UTF-8 and If i try to run that code in unix system everythings looks fine but when i try to run in windows(7) some chracters looks question mark(�). How can run ...
1
vote
2answers
1k views

format text_field helper?

Is it possible to apply strftime formatting to the value of a text input field using a Rails text_field helper? In the form I use for creating or editing a record, I have a text input field which is ...
1
vote
2answers
274 views

How to put a date from strftime in a nsstring in obj-c?

i want to be get a date (the current hour) from strftime and get it into a nsstring in obj-c for the iphone-os
1
vote
3answers
2k views

Using strftime in C, how can I format time exactly like a Unix timestamp?

Here's the sort of time formatting I'm after: 2009-10-08 04:31:33.918700000 -0500 I'm currently using this: strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S %Z", ts); Which gives: 2009-10-11 13:42:57 ...
1
vote
1answer
758 views

Solaris timezone in C (missing %z on strftime)

I have an application that writes to another application and needs to provide the date + timezone of the system. I have been using strftime with the %z argument to get the timezone, and it has been ...
0
votes
2answers
42 views

Strftime with German Date

im trying to print the date in german with strftime. I already tried date_default_timezone_set('Europe/Berlin'); setlocale(LC_ALL, "de_DE", "de_DE@euro", "deu", "deu_deu", "german"); $time = ...
0
votes
1answer
55 views

Formatting json converted datetime string returned from github v3 in python

I have a python application that decodes json from github api v3. After the decode, my unicode date/time string looks like this: u'2011-12-11T22:37:18Z' How do I format this using something like ...
0
votes
1answer
37 views

setlocale doesnt work for am or pm in specific time format

I am using setlocale to convert the time to different language. The date format works fine in english language. Also Its working fine for month for different locale but its not showing 'am' or 'pm'. ...
0
votes
1answer
49 views

Using strftime on nil object - how to prevent error?

I use strftime to format my raw time as the text of an input box. Usually, when I use strftime I check if the object is nil to prevent errors by using unless nil? However it doesn't seem like I can ...
0
votes
1answer
51 views

convert a string in to time format in c

suppose I have a string "2011-08-21 21:48:45 +1200",and another one with the same format, I want to compare these 2 strings to find out which one is the early one or later one, is there a easy way to ...
0
votes
0answers
30 views

How do you show local time in Gource?

I'm running Gource 0.35 on an SVN repository, and it shows the time in UTC. Is it possible to show local time instead? I tried using --date-format "%c", but it still shows UTC time. Using ...

1 2