Author Archives: GauZ
Custom Wrapper Class for Dictionary component – Flex
I was developing a Flex module earlier yesterday and somehow felt the need of an efficient data structure for look-up purpose. Array and ArrayCollection are just not good enough and the default implementation of Dictionary as part of Flex API is a no-brainer. So, I decided to create a wrapper functionality similar to the Dictionary […]
That’s how you kill three fish with one bird
I believe this particular bird is the Robinhood among all the other Kingfishers out there 🙂 Photograph is astonishing and and the way Kingfishers fly inches above the water is amazing as well.
Email Dispatcher using C#
A few days back, I worked on an Email dispatcher command-line application which had capabilities of zipping up reports and emailing the reports to the clients at an astonishingly fast speed of hundreds of reports per min (assuming each report has 150,000 records with min of 6 columns). Here, I am implementing a similar application […]
QuickSort Algorithm in Java
Was plying over the fastest in-place non-stable sorting algorithm >> non-randomized version of QuickSort (Never mind the O^2 worst case! :)) ) I have attached a java implementation of the same algorithm alongside. QuickSortAlgo.java (Replace the “.java_.txt” extension to “.java” before using the file)
Login