|
I've often standardized on YYYY-MM-DD as the date format for communicating within a geographically distributed project teams to dispel any ambiguity that might arise from local date formats. Is it likely that I might run into people who are used to seeing...
Started by Bernard Chen on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
On the topic - it lists the countries by date/time format:
http://en.wikipedia.org/wiki/Calendar_date#List_of_the_world_locations_by_date_format_in_use
Doesn't look at first glance that anyone would be using.
|
|
I have a lot of programming books that I like to read while at the computer. However, it's hard to hold the book open and type at the same time, or at least do both comfortably.
I get open source books printed on Lulu.com with a spiral binding so they...
Started by samoz on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Works ....
You now have a full page view of the book on one monitor and your IDE on the other .
Get a second widescreen monitor, rotate it into portrait mode and now get ebook versions of your favorite programming books.
I have a different approach.
|
|
I have a lot of sharepoint web parts etc all of which are compiled for any cpu, they run fine on 32bit sharepoint but moving to server 2008 in 64bit causes the following error:
An attempt was made to load a program with an incorrect format. (Exception...
Started by Nathan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
IIS is a....
64-bit processes cannot load 32-bit DLLs and vice versa.
You can run 32bit binaries/libraries on 64bit OS, but again you cannot mix them together .
Your only option is to rebuild your binaries to x64 .
You can't mix 32bit and 64bit assemblies.
|
Ask your Facebook Friends
|
This question is a little silly, but sometimes it's tough to figure out how to name things correctly. The conversion will parse a config file into XML and vice versa. I want to call the program MyCompany.Config2Xml, but the program also needs to be able...
Started by Sam on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
I propose: ConfigParser
General term seems like it would be format convertor, or transformatter.
|
|
The following C function:
int sprintf ( char * str, const char * format, ... );
writes formatted data to a string. The size of the array passed as str should be enough to contain the entire formatted string. However, what if the length of the formatted...
Started by Charles on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
This if my program had to run on every OS ever made in the past, but it's a reasonable pattern for most.
|
|
I'm using MFMailComposeViewController in the iPhone SDK to bring up the mail dialog to send an HTML formatted email. The contents of the message body is being read from an HTML file which is generated in the app and saved on the filesystem. The email ...
Started by Anthony D on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Can anyone....
Couldn't figure out who's stripping the html and why, but we discovered that adding a <font> tag (yes, the ancient deprecated one) leaves the content type as text/html and includes the full formatting.
We had a similar problem.
|
|
I'd like to initialize an sd card with fat16 file systems. Assuming that I have my sd reader on drive G: how I can easily format it to fat 16?
UPDATE: To clarify, I'd like to do that on .net platform using C# in a way that I can detect errors and that...
Started by Piotr Czapla on
, 6 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
You could use pinvoke to call SHFormatDrive_ID_DEFAULT, 0 ); // full format....
(); processStartInfo.FileName = "format"; processStartInfo.Arguments ="/FS:FAT G:"; Process.Start(processStartInfo to allow a format from within your application.
|
|
I need to get the current time in a "HH:MM:SS"-format into a character array (string) so I can output the result later simply with a printf("%s", timeString);
I'm pretty confused on the timeval and time_t types btw, so any explanation would be awesome...
Started by Eirik Lillebo on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
#include <stdio.h> #include <time.h> /* get seconds since.
With a format of your choice.
|
|
Hello, Our program needs to import/export data from/to different programs, each from specific independant proprieties. Most of these companies would send 2 text files: the first consisting of the data content along with a second one holding descriptions...
Started by ZeroCool on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you can agree....
This allows a common interchange format that can be manipulated interchange format but there is no well defied format for this you cannot just copy a MySql database file information.
Of XML of which json is a subset.
|
|
Hello, i have a hex valued string that is saved in a text file. I want to get it into a c style include format to just copy and paste into my code. i tried using xxd that has a feature to do that but for some reason when i use my file it takes that string...
Answer Snippets (Read the full thread at stackoverflow):
Ok well first dude get the code to find the string like so
#include <iostream> #include <conio.h> #include <fstream> #include <iostream> using namespace std; class FindHex { string x, y; public: void set_values (string,string);... .
|