Tagged Questions
The International Organization for Standardization is a union of national standardization organizations out of more than 150 countries elaborating standards in nearly all sectors excepted electrics and telecommunications.
30
votes
5answers
5k views
Normalizing Human Skin Colors for User Interaction
A while ago I came across this answer that introduced me to the obscure (at least for me) ISO 5218: a standard for representing human sexes (or is it genders? - thanks @Paul).
For a pet project I'm ...
18
votes
1answer
458 views
Why a variable can't be defined twice in 2 files in C
Why can't I have int a; in 2 C files. I intend to combine both to make executable.
I know from experience that I can't, but I want to find where the standard C99 says this and seal my understanding.
...
14
votes
4answers
710 views
Why unnamed namespace is a“ superior” alternative to static?
The section $7.3.1.1/2 from the C++ Standard reads,
The use of the static keyword is
deprecated when declaring objects in a
namespace scope; the unnamed-namespace
provides a superior ...
14
votes
8answers
477 views
ISO/IEC Website and Charging for C and C++ Standards
The ISO C Standard (ISO/IEC 9899) and the ISO C++ Standard (ISO/IEC 14882) are not published online; instead, one must purchase the PDF for each of those standards. I am wondering what the rationale ...
13
votes
3answers
2k views
Can I read the C++ 2011 FDIS anywhere?
I probably can't, but I really would like to. Can I read the C++ 2011 FDIS anywhere?
12
votes
2answers
113 views
GCC options for strictest C code?
What GCC options should be set to have GCC as strict as possible? (and I do mean as strict as possible) I'm writing in C89 and want my code to be ANSI/ISO compliant.
10
votes
2answers
153 views
Is C++03 a new version of the C++ Standard or just a Technical Corrigendum (TC) of C++98?
I'm pretty sure I read on an authoritative source somewhere (I believe it was on the WG21 pages) that C++03 was not a technical corrigendum of C++98 but that it was a new release of the C++ Standard.
...
10
votes
3answers
2k views
Converting country codes in .NET
In .NET is there any way to convert from three letter country codes (defined in ISO 3166-1 alpha-3) to two letter language codes (defined in ISO 3166-1 alpha-2) eg. convert BEL to BE?
Have looked ...
9
votes
2answers
411 views
Get date from ISO week number in Python
I have a year and an ISO week number, and I need to translate this to the date of the first day in that week (Monday). How can I do this?
datetime.strptime() takes both a %W and a %U directive, but ...
9
votes
4answers
666 views
C++ crazy typedef : what is the point of allowing this syntax by the Standard?
The old familiar one:
typedef int my_int; //cute
This syntax is perfect. No problem.
Now, when we can write typedefs like above, then what is the point of allowing this syntax:
int typedef ...
9
votes
8answers
4k views
Why is getcwd() not ISO C++ compliant?
This MSDN article states that getcwd() has been deprecated and that the ISO C++ compatible _getcwd should be used instead, which raises the question: what makes getcwd() not ISO-compliant?
9
votes
7answers
6k views
How to build a CD ISO image file from the windows command line?
In an effort to satisfy "The Joel Test" question #2 "Can you make a build in one step?", I'm trying to complete a release candidate build script with the creation of a CD iso from the collection of ...
8
votes
2answers
171 views
Would this union work if char had stricter alignment requirements than int?
Recently I came across the following snippet, which is an attempt to ensure all bytes of i (nad no more) are accessible as individual elements of c:
union {
int i;
char c[sizeof(int)];
};
Now ...
7
votes
1answer
326 views
PHP class to create ISO image
I wanted to know if this is possible?
I would like to create a cross platform Flash projector and files and than create an ISO from it for the user to download.
Google did not help me much so ...
7
votes
2answers
588 views
Do minor currency units have a ISO standard?
ISO 4217 defines 3-letter currency symbols:
EUR
USD
LKR
GBP
Do currencies' minor units (cent, pence) have a ISO or similar standard, too, that defines codes for those sub-units like
ct
p
?
7
votes
1answer
480 views
ISO Standard Street Addresses?
Is there an ISO standard address format? I can't seem to find one, and I'd like to know for object- and database-design purposes.
(One interesting document that shows a bunch of formats is this: ...
6
votes
1answer
146 views
Parse .iso files in Python
I want to parse .iso file in python. I want to get information and data from .iso
for example there is a iso file, its name xyz.iso
but in fact it is a ubuntu image and it has file like Readme.txt, ...
6
votes
2answers
165 views
C++ standards, am a little confused?
I am aware the standard was ratified in 1998, and an update to repair some defects in the standard took place in 2003 (the ISO standards) although I am unsure of the relation of C++98 and the ANSI C ...
6
votes
1answer
252 views
A prolog for Prolog? [closed]
In case you write Prolog programs regularly you probably have your own library of predicates you always rely on. Some Prolog systems come with a rich set of predefined predicates and some not. Some ...
5
votes
3answers
207 views
What are ISO languages?
It's in fact 3 questions :
What is required for a programming language to be certified "ISO" ?
What does ISO certification guarantee about the language? Does other language can be the same?
A list ...
5
votes
2answers
278 views
Library of ISO standards
Is there any library that covers ISO standards of international abbreviations, formats and other, or everybody uses his version of CountryCodes like:
public enum CountryCode
{
AL, // ...
4
votes
2answers
162 views
C++ loop until keystroke
If I want to loop until a keystroke there is a quite nice Windows solution:
while(!kbhit()){
//...
}
But this is neither an ISO-Function nor works on other Operating Systems except MS Win. I ...
4
votes
3answers
67 views
old images show after replacing with new ones in ios app
I am dealing with this really really annoying bug in X-Code where it seems to save images to some type of memory that seems impossible to clear.
I have replaced a bunch of images in which I am ...
4
votes
2answers
256 views
How can I add and remove files from an ISO image?
Are there any (preferably free) components or libraries that handle ISO files?
In particular I would like to be able to add files and save to ISO, as well as extract the files from an ISO.
I do not ...
4
votes
2answers
414 views
Are there any differences between ANSI C and ISO C?
I understand that there is both an ANSI standard and an ISO standard for C. Are there any differences between these two standards? If so, what are they? And if there is not a difference then what's ...
4
votes
2answers
2k views
Camera ISO setting/ shutter speed
I am looking for a way to change the light sensitivity of my Evo 4G camerea. I know it is not the camera's shutter speed because it is a digital camera. The next most relevant aspect is the ISO ...
4
votes
2answers
571 views
How do ISO standards work (particularly ISO 9126)
I'm taking a course in software project management and right now I'm writting a "quality plan"... We've discussed ISOs in class, and I would particularly like my fake company to say the project ...
4
votes
5answers
1k views
Source of ISO data in xml format?
I was just wondering if anyone knew of a source of standard ISO data in xml format, such as ISO 3166 (Country codes/names), ISO 4217 (Currency Codes) or ISO 639 (Languages)?
If it was in any way ...
3
votes
2answers
50 views
Way to convert acented character to a url friendly one?
Is there a ".net way" to convert characters like:
úüãáâàçéêíõóô áéíñóúü¿¡
To a similar non-accented letter.
eg.ú to u
My question is like a pre-text to:
Handling SEO Friendly URL with Non-English ...
3
votes
1answer
54 views
How do I distinguish Simplified and Traditional Chinese in C#?
My app has been translated to a number of languages, including French, Traditional Chinese, and Simplified Chinese. Now, when the app first launches, I'd like to automatically select the correct ...
3
votes
2answers
64 views
Why does the display language for Simplified Chinese resort to ISO code?
import java.io.UnsupportedEncodingException;
import java.util.Locale;
public final class ForeignTextDemo {
public static void main(String[] args) throws UnsupportedEncodingException {
...
3
votes
4answers
105 views
Problem with grouping on european standard week and year
There is a datepart iso_week returning the iso_week for a selected day.
SELECT DATEPART(iso_week, getdate())
This will return the european standard for week current. It is not nessasarily the same ...
3
votes
6answers
294 views
What is “ANSI C++”?
I've had someone tell me that C++98 was written under ANSI before being formally standardised as ISO/IEC 14882:1998.
I know that ANSI was involved with C, but I can't seem to find much in the way of ...
3
votes
1answer
196 views
Python: The opposite of `datetime.date.isocalendar()`
The datetime module provides a method date.isocalendar that, given a date, returns it in the format ([year], [week], [weekday]). How do I go backwards? Given a ([year], [week], [weekday]) tuple, how ...
3
votes
4answers
783 views
C# HtmlEncode - ISO-8859-1 Entity Names vs Numbers
According to the following table for the ISO-8859-1 standard, there seems to be an entity name and an entity number associated with each reserved HTML character.
So for example, for the character é :
...
3
votes
5answers
376 views
Template argument deduction from function body
If we've this function template,
template<typename T>
void f(T param) {}
Then we can call it in the following ways,
int i=0;
f<int>(i);//T=int : no need to deduce T
f(i); //T=int : ...
3
votes
1answer
684 views
python write CD/DVD iso file
I'm making a cross-platform (Windows and OS X) with wxPython that will be compiled to exe later.
Is it possible for me to create ISO files for CDs or DVDs in Python to burn a data disc with?
Thanks,
...
3
votes
1answer
3k views
Using an iso to create a VMware vmdk
Can anyone point me to some documentation about how I can use an Iso to create a Vmware environment.
For instance, there's this guy who made his own version of Ubuntu, with loads of extra programs ...
2
votes
0answers
22 views
Is there an ISO language code to indicate mixed-language text?
I've checked the ISO 639-1 specs but can't find any references. I can just make something up for my database, but was curious if there is a standard.
2
votes
2answers
151 views
Parsing XML by TBXML works on demo project, but it doesnt work in my real project
I'm really need help with parsing XML by TBXML.
I created a demo project with a view has a button,when users press this button, I just call TBXML parsing function from another class.
Im doing this to ...
2
votes
1answer
182 views
how create a virtual drive
Are there any known delphi components or code that creates a simple virtual drive that links to a single file. example ISO file? but this time, can be read and write.
2
votes
1answer
94 views
ISO 8601 Repeating Interval
Wikipedia gives an example of an ISO 8601 example of a repeating interval:
R5/2008-03-01T13:00:00Z/P1Y2M10DT2H30M
This is what this means:
R5 means that the interval after the slash is repeated 5 ...
2
votes
2answers
391 views
NFC on Nexus S: “TagLostException” when writing to unknown block on ISO 15693 Chip
I am wondering if anyone out there has stumbled across the issue I am experiencing.
I am writing an app to talk to a specific ISO 15693 RFID Chip using the Nexus S NFC capabilities. Communication ...
2
votes
0answers
200 views
Can I obtain the C89/C90 standard from somewhere for free? [closed]
While K&R is a great introduction into the language, it does not always constitute adequate reference material.
Unfortunately, ISO/ANSI charges fees for its documents. Nevertheless, does anybody ...
2
votes
3answers
448 views
Relation between ISO, Virtual machines, VMware, VMX file and VMDK file
Can someone assist me in relating ISO, Virtual machines, VMware, VMX file and VMDK file together?
I need to understand how all these components relate together. Is there any diagram or chart that ...
2
votes
4answers
158 views
Formatting an Integer using ISO-prefixes for kB,MB,GB,… and kiB,MiB,GiB,
I looking for the function that prints file size on the mode-line in size-indication-mode. I have searched for size-indication-mode in the source but cannot find a code-references to it. So where is ...
2
votes
2answers
284 views
python: edit ISO file directly
Is it possible to take an ISO file and edit a file in it directly, i.e. not by unpacking it, changing the file, and repacking it?
It is possible to do 1. from Python? How would I do it?
2
votes
1answer
51 views
What are the ISO 2375 and 2735 standards mentioned in the ECMA-119 specification?
Out of ECMA-119 specification:
8.5 Supplementary Volume Descriptor
...
8.5.3 Volume Flags (BP 8):
The bits of this field shall be numbered from 0 to 7 starting with the least ...
2
votes
2answers
584 views
ISO 8601 to time_t in C++
anyone knows to go from ISO 8601 to time_t?
I am using C++ and it needs to work on Windows and Mac.
I have written the code but I am sure there is a version that is more "standard".
Any thoughts on ...
2
votes
1answer
296 views
Converting an ISO 8601 timestamp into an NSDate: How does one deal with the UTC time offset?
I'm having trouble converting an ISO 8601 timestamp into an NSDate. I tried to use NSDateFormatter, but I can't get it to work with the UTC time offset that appears on the end of the timestamps. To ...