User Sirish Kumar - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T18:03:41Zhttp://stackoverflow.com/feeds/user/7965http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1808223/split-utf-8-encoded-string-got-from-unichr0Split UTF-8 encoded string got from unichrSirish Kumar2009-11-27T11:32:31Z2009-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-implementation0Character decoding Conversion Function ImplementationSirish Kumar2009-11-17T12:17:46Z2009-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-&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#17417231Answer by Sirish Kumar for How to convert string from one charset to another in C++?Sirish Kumar2009-11-16T11:53:18Z2009-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-unicode3Why there are duplicate characters in unicodeSirish Kumar2009-11-16T10:11:45Z2009-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#17059711Answer by Sirish Kumar for Hidden Features of C++?Sirish Kumar2008-10-04T16:17:09Z2009-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#13284550Answer by Sirish Kumar for What are your favorite debugging techniques in C++?Sirish Kumar2009-08-25T13:58:51Z2009-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-c1How can I find prime numbers through bit operations in C++?Sirish Kumar2009-05-22T16:23:42Z2009-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-only1Django Foreign Keys Read OnlySirish Kumar2008-12-04T09:07:37Z2009-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-deployment0Django DeploymentSirish Kumar2008-11-20T03:44:58Z2009-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#10098520Answer by Sirish Kumar for Favorite Visual Studio keyboard shortcutsSirish Kumar2008-09-19T10:30:31Z2009-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-core2No Module named django.coreSirish Kumar2008-11-23T14:09:24Z2008-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 <module>
from django.core import management
ImportError: No module named django.core
</code></pre>
http://stackoverflow.com/questions/301959/vector-iterator-not-dereferencable2Vector iterator not dereferencableSirish Kumar2008-11-19T14:04:47Z2008-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<Shape*> 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<Shape*> s2(s1);
reverse(s1.begin(),s1.end());
(*find(s1.begin(),s1.end(),new Circle(point(1,2),3)))->move(point(10,20));
</code></pre>
http://stackoverflow.com/questions/214615/will-google-android-ever-support-net/215050#2150501Answer by Sirish Kumar for Will Google Android ever support .NET?Sirish Kumar2008-10-18T13:35:24Z2008-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#1630391Answer by Sirish Kumar for Writing maintainable codeSirish Kumar2008-10-02T15:34:24Z2008-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#1625441Answer by Sirish Kumar for Getting started with AndroidSirish Kumar2008-10-02T14:21:28Z2008-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#1009230Answer by Sirish Kumar for What tool do you use to index C/C++ code?Sirish Kumar2008-09-19T10:16:48Z2008-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-implementationComment by Sirish Kumar on Character decoding Conversion Function ImplementationSirish Kumar2009-11-19T13:15:56Z2009-11-19T13:15:56ZThis 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#1748669Comment by Sirish Kumar on Character decoding Conversion Function ImplementationSirish Kumar2009-11-17T16:05:50Z2009-11-17T16:05:50ZI 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-implementationComment by Sirish Kumar on Character decoding Conversion Function ImplementationSirish Kumar2009-11-17T16:03:34Z2009-11-17T16:03:34ZOur 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 encodinghttp://stackoverflow.com/questions/1741236/why-there-are-duplicate-characters-in-unicode/1741245#1741245Comment by Sirish Kumar on Why there are duplicate characters in unicodeSirish Kumar2009-11-16T10:19:22Z2009-11-16T10:19:22ZWhat 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#1175554Comment by Sirish Kumar on Iterative find/replace from a list of tuples in PythonSirish Kumar2009-07-24T04:32:38Z2009-07-24T04:32:38ZMay 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-cComment by Sirish Kumar on How can I find prime numbers through bit operations in C++?Sirish Kumar2009-05-23T06:06:02Z2009-05-23T06:06:02ZI 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#898758Comment by Sirish Kumar on How can I find prime numbers through bit operations in C++?Sirish Kumar2009-05-23T06:03:45Z2009-05-23T06:03:45ZI was not able to answer this in interview. So I am asking this here. Just to learnhttp://stackoverflow.com/questions/312549/no-module-named-django-coreComment by Sirish Kumar on No Module named django.coreSirish Kumar2008-11-23T14:39:38Z2008-11-23T14:39:38ZYes I am able to do both without any errorhttp://stackoverflow.com/questions/304267/django-deployment/304408#304408Comment by Sirish Kumar on Django DeploymentSirish Kumar2008-11-20T05:26:04Z2008-11-20T05:26:04ZHi,
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-deploymentComment by Sirish Kumar on Django DeploymentSirish Kumar2008-11-20T04:47:25Z2008-11-20T04:47:25ZYes 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#303143Comment by Sirish Kumar on Vector iterator not dereferencableSirish Kumar2008-11-20T04:04:44Z2008-11-20T04:04:44ZI 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.