iso

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 working on I need my database schema to store the skin color of a person, and I'm wondering if a similar standard exists. All my life I've h...

Full statement from ISO 8583

I would like to know if it is possible to do a full statement (between a date range) through ISO 8583, I have seen ATMs which do full statements and was wondering what method they used. I know balance inquiry and mini statements are possible on a POS devise over 8583. If it is possible does anyone have an information on the structure o...

Get week start timestamp and week end timestamp using Java SE API and Joda Time (based on ISO)

How may I get week start timestamp (2010-03-01 00:00:00 UTC) and week end timestamp (2010-03-08 00:00:00 UTC) given a java.util.Date (or Joda DateTime), or year and ISO week number, using Java SE API and Joda Time? ...

creating custom SLES11 ISO

I am trying to create an SLES11 ISO with all the updated RPMs. So, I tried 1)Copy the original SLES ISO 2)Replace the RPMS (to try out I just replaced just the curl RPM) 3)Recreate the ISO (mkisofs -r -R -J -T -v -no-emul-boot -boot-load-size 4 -boot-info-table -b boot/x86_64/loader/isolinux.bin -c boot/x86_64/loader/boot.cat -o ../s...

What alternatives to __attribute__ exist on 64-bit kernels?

Hi: Is there any alternative to non-ISO gcc specific extension __attribute__ on 64-bit kernels ? Three types that i've noticed are: function attributes, type attributes and variable attributes. eg. i'd like to avoid using __attribute__((__packed__)) for structures passed over the network, even though some gcc based code do use it. An...

Maven plugin for generating ISO file

Hi All, Is there a maven plugin capable of generating ISO images? I need to take the output of some modules (mostly zip files containing jars) and combine them into a single ISO image. Thanks ...

How would I write a virtual CD/DVD burner that would allow programs that burn to write to ISO?

I want to write an app that will allow a program like iTunes which normally will recognize a DVD/CD burner to recognize a virtual one and then write to it creating an ISO. I would guess to use C/C++... can someone point me in the right direction as to how this can be done? Basically it would be a virtual CD/DVD burner that would output ...

How can I get mounted name and (Drive letter too) on Windows using python

I am using Daemon tool to mount an ISO image on Windows XP machine.I do mount using Daemon command (daemon.exe -mount 0,iso_path). Above command will mount ISO image to device number. In my case I have 4 partition (C,D,E,F) and G for DVD/CD-RW. Now what happen, ISO gets mounted to drive letter 'H:' with name (as defined while creating I...

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 is behind this... is it not detrimental to both the C and C++ programming languages that the authoritative specification for these languages...

how to import ISO 2709 to mysql?

i have a 'ISO 2709' file. i have to convert it to any format that can be imported in mysql table. what format is possible? XML ?? and how?? (i am searching in google about this,but asking you may get a better solution) thanks. ...

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 complies with ISO norm 9126. The thing is I don't really know what that means. Is it just something you say to your client, does your company ne...

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. ...

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, // Albania AD, // Andorra AM, // Armenia AT, // Austria ... } Want to have country codes, currency and f...

javascript regex iso datetime

does anyone have a good regex pattern for matching iso datetimes? ie: 2010-06-15T00:00:00 ...

What's wrong here? - ISO C++ forbids declaration of 'Circle' with no type...

Hey guys, maybe you can help me get this right. I have a class that is used to draw a circle, but the compiler sends me this message: In file included from ./Includes.h:19, from ./Circle.h:8, from ./Circle.cpp:5: ./GameApp.h:24: error: ISO C++ forbids declaration of 'Circle' with no type ./GameApp.h:24:...

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 manipulate it. Does any one know an alternative? i.e scene mode, exposure or effects **par...

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 about the organisation, maybe the first answer should be edited to have the full ISO lan...

Column type and size for international country subdivisions (states, provinces, territories etc)

I apologize if this is a duplication. What column standardization would you use for storing international country subdivision data? For example, if it was just US and Canada I believe all subdivisions have a 2-character abbreviation... which might lend to a Char(2) This cannot possibly be sustainable internationally lest we presume th...

How can I determine to which C standard is this code compliant?

In a C lab this uber simple code appears: #include <stdio.h> int suma (int a, int b) { return a+b; } int mult (int a, int b) { return a*b; } int main(void) { int a,b; printf ("Operando 1: "); scanf("%d",&a); printf("Operando 2: "); scanf("%d",&b); printf("%d+%d=%d\n",a,b...