Questions tagged [iso]

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.

1064 questions
10
votes
2 answers

Java Calendar WEEK_OF_YEAR not ISO-8601compliant?

The ISO-8601 standard states that "The first week of a year is the week that contains the first Thursday of the year (and, hence, always contains 4 January)." Meaning the first week of the year is not that which contains January the 1st but the…
Tulains Córdova
  • 2,559
  • 2
  • 20
  • 33
10
votes
3 answers

How to parse an ISO date with LocalDateTime.parse(...)

I want to parse a date string like 2011-11-30 like this: LocalDateTime.parse("2011-11-30", DateTimeFormatter.ISO_LOCAL_DATE) But I get the following exception: java.time.format.DateTimeParseException: Text '2011-11-30' could not be parsed: Unable…
deamon
  • 89,107
  • 111
  • 320
  • 448
10
votes
1 answer

Is using 'decltype' in the declaration of pointer to member valid?

Imagine for some strange reason I write this: int main() { struct S { int i; } var; int decltype(var)::* pint = &decltype(var)::i; } GCC seems to compile it fine although Clang fails with some indeterminate…
AnArrayOfFunctions
  • 3,452
  • 2
  • 29
  • 66
10
votes
2 answers

Why is there a networking library proposal for C++14/17?

Even though TCP/UDP/IP are commonly used protocols, I do not understand why they want it to be part of the ISO C++ Standard. These have nothing to do with the core of the language. Data structures are universally required tools hence STL makes sense…
Benji Mizrahi
  • 2,154
  • 2
  • 23
  • 38
10
votes
3 answers

SQL Server: Why are dates in ISO-8601 format language dependent?

I need some help understanding date format handling in SQL Server. If you try the following, it will return a correct result: SET LANGUAGE English SELECT CAST('2013-08-15' AS DATETIME) -- 2013-08-15 00:00:00.000 This, however, will result in a…
matk
  • 1,528
  • 2
  • 14
  • 25
10
votes
4 answers

iOS 7 UISearchDisplayController search bar disappears

I was recently updating my app and came across this issue. When i start typing in the search bar the search bar disappears and i can only see the table view. I can still keep on typing and the table view gets updated but i cannot see the search bar.…
Tarang
  • 626
  • 2
  • 8
  • 22
9
votes
2 answers

C99 associativity for operators - where is it specified?

In the C99 standard, the expressions allow for precedence and associativity. Precedence is documented quite well since the order in which the operators appear in the document are of reducing precedence, so function calls come before multiplicative…
paxdiablo
  • 854,327
  • 234
  • 1,573
  • 1,953
9
votes
2 answers

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, .deb pacges etc. How can i do for this?
TCOLAK
  • 91
  • 1
  • 4
9
votes
3 answers

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 of ISO languages? (made community wiki - not sure…
Klaim
  • 67,274
  • 36
  • 133
  • 188
9
votes
3 answers

iOS camera: manual exposure duration but auto ISO?

I'm using the camera video feed for some image processing and would like to optimise for fastest shutter speed. I know you can manually set exposure duration and ISO using setExposureModeCustomWithDuration:ISO:completionHandler: but this requires…
Joe
  • 217
  • 5
  • 10
9
votes
2 answers

How to simulate slow DVD drive?

Does anyone know any feasible ways to simulate a slow DVD drive, e.g. over a mounted DMG/ISO image? The goal is to program against a slow drive, thus a simulation requirement. Any ideas would be greatly appreciated! Update: again, the goal would be…
Ain Tohvri
  • 2,987
  • 6
  • 32
  • 51
9
votes
3 answers

Which PDF of the C++ ISO standard should I read?

Sometimes, I want to search answers from the C++ standard by myself. Reading standards might help me get an overview of the language principle proposed. By searching the internet, I was confused by flooding C++ forums and helper websites. They…
Zachary
  • 1,633
  • 2
  • 22
  • 34
9
votes
3 answers

Macro hell: Platform-independent pointer to setjmp/sigsetjmp

I am writing multiplatform code which needs to use a pointer to setjmp/sigsetjmp. Normally that would be as simple as doing #include void * sigsetjmp_p = sigsetjmp; However, ISO and POSIX state that setjmp/sigsetjmp can be defined as a…
fons
  • 4,905
  • 4
  • 29
  • 49
9
votes
7 answers

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 'official' and maintained with any changes to the…
UpTheCreek
  • 31,444
  • 34
  • 152
  • 221
9
votes
1 answer

How do I convert a database from format iso to db3?

How do I export a database from Isis to SQL? I can export the database from Isis to iso. I believe that I could convert iso to dBase 3 and then dBase 3 to SQL, but I haven't found a way to do this yet.
acidboy
  • 95
  • 6