User Sirish Kumar - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T18:03:41Z http://stackoverflow.com/feeds/user/7965 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1808223/split-utf-8-encoded-string-got-from-unichr 0 Split UTF-8 encoded string got from unichr Sirish Kumar 2009-11-27T11:32:31Z 2009-11-27T11:43:05Z <p>Hi</p> <p>I have a set of unicode numbers , I need to convert them to UTF-8 and print the result in to split them in to hex values.</p> <p>eg: Unicode 0x80 should be converted to UTF-8 and printed as (0xc2,0x80)</p> <p>I tried following</p> <pre><code>str(unichr(0x80).encode('utf-8')).split(r'\x')[0] </code></pre> <p>But it does get split in to ['c2','80']. But it gives me ['\xc2\x80']. </p> <p>I need this for code generation.</p> http://stackoverflow.com/questions/1748473/character-decoding-conversion-function-implementation 0 Character decoding Conversion Function Implementation Sirish Kumar 2009-11-17T12:17:46Z 2009-11-17T16:20:49Z <p>Hi,</p> <p>I need to implement a character encoding conversion function in C++ or C( Most desired ) from a custom encoding scheme( to support multiple languages in single encoding ) to UTF-8.</p> <p>Our encoding is pretty random , it <a href="http://4076847580822819965-a-1802744773732722657-s-sites.googlegroups.com/site/sirishkumar/encoding.png?attachauth=ANoY7cpUYbJTzU4EgCre0TdcaEtl2kJcPjcCQ5r36cpyXEvdhdJPKRq8rW9ckC%5FbCS49xtaigzyotsC6kqK-z0joFHivdlZZVwPOz1ZVeMHtg0onRWGBWfUGgDAlYNo8i0BRGyOEkqgXYeEztgIWDh78SnMe-vMGOI0RkRE53xH5qsF%5FxMabAnmgak1jQs7%5FDVkPmZCBmKV-&amp;attredirects=0" rel="nofollow">looks like this</a></p> <p>Because of the randomness of this mapping, I am thinking to use std::map for mapping our encoding to UTF and vice versa in two different maps ,and use this maps for conversion. Is their any optimized data structure or way to do it.</p> http://stackoverflow.com/questions/1741485/how-to-convert-string-from-one-charset-to-another-in-c/1741723#1741723 1 Answer by Sirish Kumar for How to convert string from one charset to another in C++? Sirish Kumar 2009-11-16T11:53:18Z 2009-11-16T11:53:18Z <p>You can use libiconv (Google it ), it supports many encodings.</p> http://stackoverflow.com/questions/1741236/why-there-are-duplicate-characters-in-unicode 3 Why there are duplicate characters in unicode Sirish Kumar 2009-11-16T10:11:45Z 2009-11-16T11:17:00Z <p>I can see some duplicate characters in Unicode. For example, the character 'C' can be represented by the code points U+0043 and U+0421. Why is this so?</p> http://stackoverflow.com/questions/75538/hidden-features-of-c/170597#170597 11 Answer by Sirish Kumar for Hidden Features of C++? Sirish Kumar 2008-10-04T16:17:09Z 2009-09-23T12:41:47Z <p>Array initialization in constructor. For example in a class if we have a array of <code>int</code> as:</p> <pre><code>class clName { clName(); int a[10]; }; </code></pre> <p>We can initialize all elements in the array to its default (here all elements of array to zero) in the constructor as:</p> <pre><code>clName::clName() : a() { } </code></pre> http://stackoverflow.com/questions/1325853/what-are-your-favorite-debugging-techniques-in-c/1328455#1328455 0 Answer by Sirish Kumar for What are your favorite debugging techniques in C++? Sirish Kumar 2009-08-25T13:58:51Z 2009-08-25T13:58:51Z <p>If my program is too big I logically separate problem part and debug it independently. It gives an opportunity for code to be more modular also</p> http://stackoverflow.com/questions/898731/how-can-i-find-prime-numbers-through-bit-operations-in-c 1 How can I find prime numbers through bit operations in C++? Sirish Kumar 2009-05-22T16:23:42Z 2009-07-04T08:08:58Z <p>How can I find prime numbers through bit operations in C++?</p> http://stackoverflow.com/questions/339969/django-foreign-keys-read-only 1 Django Foreign Keys Read Only Sirish Kumar 2008-12-04T09:07:37Z 2009-07-03T06:58:30Z <p>Hi,</p> <p>I have two models one is Employee and other is Asset, with Many to one relation between Asset and Employee. And Asset is added as StackedInline field to Employee Admin interface, Is there anyway I can make Asset as read only field in the Employee Admin. </p> <p>My intention was to show all the assets the employee is currently holding in the Admin, so that he will not delete it accidentally.</p> http://stackoverflow.com/questions/304267/django-deployment 0 Django Deployment Sirish Kumar 2008-11-20T03:44:58Z 2009-06-01T10:34:26Z <p>Hi,</p> <p>I am given a responsibility in my project to develop a Equipment tracking tool with following requirements</p> <ol> <li>New Equipment can be added by admin to a particular user</li> <li>Once equipment is assigned to a person he will a request to accept the request so he will be responsible</li> <li>User can transfer his equipment to other users.</li> <li>At the same time Admin should be sent a mail or message whenever there is a change in status.</li> <li>It should be deployed locally on a PC( So it is not actually a web app) that is connected to network which can be accessed by everyone</li> </ol> <p>I thought I can use Django for this( I am new to it ), but I do not know much about deployment on a local PC , How can I do this, or is there any better Idea for this?</p> http://stackoverflow.com/questions/98606/favorite-visual-studio-keyboard-shortcuts/100985#100985 20 Answer by Sirish Kumar for Favorite Visual Studio keyboard shortcuts Sirish Kumar 2008-09-19T10:30:31Z 2009-03-11T01:36:47Z <p><kbd>Ctrl</kbd>+<kbd>Space</kbd>, VS gives the possible completions</p> http://stackoverflow.com/questions/312549/no-module-named-django-core 2 No Module named django.core Sirish Kumar 2008-11-23T14:09:24Z 2008-11-28T08:40:35Z <p>Hi,</p> <p>I have updated to latest Django version 1.0.2 after uninstalling my old Django version.But now when I run django-admin.py I get the following error. How can I resolve this?</p> <pre><code>Traceback (most recent call last): File "C:\Python25\Lib\site-packages\django\bin\django-admin.py", line 2, in &lt;module&gt; from django.core import management ImportError: No module named django.core </code></pre> http://stackoverflow.com/questions/301959/vector-iterator-not-dereferencable 2 Vector iterator not dereferencable Sirish Kumar 2008-11-19T14:04:47Z 2008-11-20T11:48:02Z <p>Hi,</p> <p>I have an abstract base class called Shape from which both Circle and Rectangle are derived, but when I execute the following code in VS 2005 I get the error Debug assertion failed. At the same time I have not overloaded == operator in any class</p> <p>Expression:Vector iterator not dereferencable, what is the reason for this.</p> <pre><code> vector&lt;Shape*&gt; s1; s1.push_back(new Circle(point(1,2),3)); s1.push_back(new Circle(point(4,3),5)); s1.push_back(new Rectangle(point(1,1),4,5)); vector&lt;Shape*&gt; s2(s1); reverse(s1.begin(),s1.end()); (*find(s1.begin(),s1.end(),new Circle(point(1,2),3)))-&gt;move(point(10,20)); </code></pre> http://stackoverflow.com/questions/214615/will-google-android-ever-support-net/215050#215050 1 Answer by Sirish Kumar for Will Google Android ever support .NET? Sirish Kumar 2008-10-18T13:35:24Z 2008-10-18T13:35:24Z <p>Check this out <a href="http://www.xmlvm.org/overview/" rel="nofollow">http://www.xmlvm.org/overview/</a> . I think this is possible. May be can also check this video <a href="http://youtube.com/?v=s8nMpi5-P-I" rel="nofollow">http://youtube.com/?v=s8nMpi5-P-I</a></p> http://stackoverflow.com/questions/162805/writing-maintainable-code/163039#163039 1 Answer by Sirish Kumar for Writing maintainable code Sirish Kumar 2008-10-02T15:34:24Z 2008-10-02T15:34:24Z <p>For me writing testable code(checkout Google testing blog) is the better maintainable code</p> http://stackoverflow.com/questions/144254/getting-started-with-android/162544#162544 1 Answer by Sirish Kumar for Getting started with Android Sirish Kumar 2008-10-02T14:21:28Z 2008-10-02T14:21:28Z <p>Some tutorials in this website <a href="http://mylifewithandroid.blogspot.com/" rel="nofollow">http://mylifewithandroid.blogspot.com/</a></p> http://stackoverflow.com/questions/100143/what-tool-do-you-use-to-index-c-c-code/100923#100923 0 Answer by Sirish Kumar for What tool do you use to index C/C++ code? Sirish Kumar 2008-09-19T10:16:48Z 2008-09-19T10:16:48Z <p>Source insight.... it rocks with beautiful browsing shortcuts.. I never use mouse....</p> http://stackoverflow.com/questions/1748473/character-decoding-conversion-function-implementation Comment by Sirish Kumar on Character decoding Conversion Function Implementation Sirish Kumar 2009-11-19T13:15:56Z 2009-11-19T13:15:56Z This will hold good for one direction but what about converting characters in other direction, they are not in sequence. http://stackoverflow.com/questions/1748473/character-decoding-conversion-function-implementation/1748669#1748669 Comment by Sirish Kumar on Character decoding Conversion Function Implementation Sirish Kumar 2009-11-17T16:05:50Z 2009-11-17T16:05:50Z I think hash representation consumes more memory than simple look table ( one for UTF-8 to our encoding and other for reverse)? http://stackoverflow.com/questions/1748473/character-decoding-conversion-function-implementation Comment by Sirish Kumar on Character decoding Conversion Function Implementation Sirish Kumar 2009-11-17T16:03:34Z 2009-11-17T16:03:34Z Our internal encoding format has only 256 characters, which are mapped to 256 UTF-8 code representations. From the solutions given below I will go for array representation which maps our local encoding to UTF-8 and one more array for UTF-8 to our local encoding http://stackoverflow.com/questions/1741236/why-there-are-duplicate-characters-in-unicode/1741245#1741245 Comment by Sirish Kumar on Why there are duplicate characters in unicode Sirish Kumar 2009-11-16T10:19:22Z 2009-11-16T10:19:22Z What is reason to have a similar looking character in two languages with different code points( I want to know about this as I have to develop a conversion utility between different encodings among which one is own companies own proprietary encoding format) http://stackoverflow.com/questions/1175540/iterative-find-replace-from-a-list-of-tuples-in-python/1175554#1175554 Comment by Sirish Kumar on Iterative find/replace from a list of tuples in Python Sirish Kumar 2009-07-24T04:32:38Z 2009-07-24T04:32:38Z May be you can replace r assignment with r = re.compile('|'.join(re.split(re.compile(', +'),x))) http://stackoverflow.com/questions/898731/how-can-i-find-prime-numbers-through-bit-operations-in-c Comment by Sirish Kumar on How can I find prime numbers through bit operations in C++? Sirish Kumar 2009-05-23T06:06:02Z 2009-05-23T06:06:02Z I mean to test if a number is prime. I know how to implement this in normal math but using bit operations. http://stackoverflow.com/questions/898731/how-can-i-find-prime-numbers-through-bit-operations-in-c/898758#898758 Comment by Sirish Kumar on How can I find prime numbers through bit operations in C++? Sirish Kumar 2009-05-23T06:03:45Z 2009-05-23T06:03:45Z I was not able to answer this in interview. So I am asking this here. Just to learn http://stackoverflow.com/questions/312549/no-module-named-django-core Comment by Sirish Kumar on No Module named django.core Sirish Kumar 2008-11-23T14:39:38Z 2008-11-23T14:39:38Z Yes I am able to do both without any error http://stackoverflow.com/questions/304267/django-deployment/304408#304408 Comment by Sirish Kumar on Django Deployment Sirish Kumar 2008-11-20T05:26:04Z 2008-11-20T05:26:04Z Hi, But my main concern is for the deployment on networked PC which is accessible through a network. How to do it? http://stackoverflow.com/questions/304267/django-deployment Comment by Sirish Kumar on Django Deployment Sirish Kumar 2008-11-20T04:47:25Z 2008-11-20T04:47:25Z Yes we planning to access it via browser. We have windows XP for deployment, at a time max of 50 people will be accessing this application. http://stackoverflow.com/questions/301959/vector-iterator-not-dereferencable/303143#303143 Comment by Sirish Kumar on Vector iterator not dereferencable Sirish Kumar 2008-11-20T04:04:44Z 2008-11-20T04:04:44Z I have one doubt regarding checking typeids in base classes. Why this is actually needed ? Because call to correct isEqual function is resolved at runtime because of Polymorphism.