BNR exchange rates

Please select your desired exchange currency to see its chart and then modify the period range as desired. The default range is from 3 January 2006 until now.

For help you can go visit article »


Curs valutar BNR

Selectati valuta dorita pentru a vedea graficul ei si apoi modificati durata dupa dorinta. Perioada initiala este de la 3 ianuarie 2006 pina acum.

Pentru ajutor puteti vizita articol »

Archive for June, 2009

Objective-C: NSDictionary and NSMutableDictionary can’t keep the order of entries

My latest task in CSCW Lab was to create the parser class for parsing some huge and multilevel XML. All nice and easy at first sight. Since the XML was the result of an RPC call, I got back some structures corresponding to NSDictionary and some arrays corresponding to NSArray in Apple’s Objective-C.

While iterating in the structure using NSXMLParser, a event-based parser, I kept adding the pairs as name and values to the parent.The normal approach would be to add the name and NSNull for value first, then when retrieving the value’s content, search the last inserted entry ( the More >