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.
Questions tagged [iso]
1064 questions
12
votes
1 answer
error: ISO C++ forbids taking the address of an unqualified or parenthesized non-static member function to form a pointer to member function
I am trying the following code:
std::thread t(&(Transmitter::sender), this, some_variables);
where sender is a member function of the same class from whose method the above line is being called.
I get the warning:
Transmitter.h: In member function…

AbbasFaisal
- 1,428
- 2
- 18
- 21
12
votes
4 answers
converting Time class object to RFC3339 in Ruby
Google Calendar API(v2)'s time-related query is required to be RFC3339-formatted. When I looked up Time class after 'require "time"', I could not see rfc3339 method.

taro
- 699
- 1
- 9
- 20
12
votes
1 answer
How can I detect if an Android app is being used in Korea?
I have a game in the Google Play Store that has an option to change the scoring system from points to $'s. Apparently this is a simulation of gambling and illegal in South Korea. I got a official reprimand from Google and they took my app off of the…

theJosh
- 2,894
- 1
- 28
- 50
11
votes
4 answers
How do I convert an ISO 8601 string to time_t in C++?
Does anyone know how to go from an ISO-8601-formatted date/time string to a 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."
I will get a date like…

reza
- 5,972
- 15
- 84
- 126
11
votes
1 answer
Is there a standardized java enum for ISO language codes?
I'd like to be able to reference languages in a standardized way (ISO). Is there an existing enumeration as part of java or a common dependency such as Apache that I can reuse rather than having to implement my own?
To emphasize, I'm not looking for…

Andreas Hartmann
- 1,825
- 4
- 23
- 36
11
votes
5 answers
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 é :
Entity Name : é
Entity Number :…

Hugo Migneron
- 4,867
- 1
- 32
- 52
11
votes
1 answer
How can I convert an ISO language code to its language name in Objective-C?
I'm getting ISO language codes from an API in my iOS app. For example, en for English, hi for Hindi, etc. I'd like to convert these ISO codes to their respective language names.
This is returned by the API:
"category": "TVCHANEL",
"chanellanguage":…
user4990270
11
votes
5 answers
Android Camera API ISO Setting?
Would anyone know where to control the ISO setting for the camera from in the Android SDK ?
It should be possible as the native camera application on the HTC Desire has ISO settings.

ee3509
- 171
- 2
- 2
- 6
11
votes
1 answer
Are classes truly a current proposal for the next C standard?
I found a mismatch between dates on a posting and the dates in the documents at this page:
http://www.open-std.org/jtc1/sc22/wg14/www/documents
I downloaded the most recent tarball and was reading about a class implementation for C. It was authored…

John Holly
- 391
- 1
- 2
- 12
11
votes
3 answers
Android camera preview is dark
I am trying to create a custom camera app. I followed the Android Developer example from here with minor tweaks. However, my camera preview turns out to be rather dark. On the other hand, the stock camera gives a much brighter preview.
I have tried…

Puneet
- 653
- 1
- 7
- 18
11
votes
4 answers
convert iso 4217 numeric currency code to currency name
I have a an ISO 4217 numeric currency code: 840
I want to get the currency name: USD
I am trying to do this:
Currency curr1 = Currency.getInstance("840");
But I keep getting
java.lang.IllegalArgumentException
how to fix? any ideas?

Asaf Maoz
- 675
- 3
- 6
- 23
11
votes
4 answers
Extracting ISO file using Java
Is there any way to Extract content of ISO file (all directories and files inside) to a give directory in a local path? Specifically using Java in windows environment.
is there any library you may suggest? or is there any work around to do so ?…

LeTex
- 1,452
- 1
- 14
- 28
11
votes
1 answer
What does "E" stand for in the name of C++11 standard "ISO/IEC 14882:2011(E)"
I have seen some places referring the C++11 standard as "ISO/IEC 14882:2011(E)", while the ISO site is referring it as "ISO/IEC 14882:2011", without the trailing "(E)".
What does that "E" stand for?
Edit: As for the explanation of revision number,…

WiSaGaN
- 46,887
- 10
- 54
- 88
10
votes
1 answer
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 far...

FFish
- 10,964
- 34
- 95
- 136
10
votes
3 answers
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 setting, but the Android SDK does not have a way to…

Will
- 109
- 1
- 1
- 6