User Swaroop C H - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T00:28:00Zhttp://stackoverflow.com/feeds/user/4869http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/95727/how-to-convert-floats-to-human-readable-fractions11How to convert floats to human-readable fractions?Swaroop C H2008-09-18T19:00:09Z2009-11-27T00:32:25Z
<p>Let's say we have 0.33, we need to output "1/3". <br />
If we have "0.4", we need to output "2/5".</p>
<p>The idea is to make it human-readable to make the user understand "x parts out of y" as a better way of understanding data.</p>
<p>I know that percentages is a good substitute but I was wondering if there was a simple way to do this?</p>
http://stackoverflow.com/questions/1287319/is-there-an-autoincrement-per-user-field-in-django1Is there an autoincrement-per-user field in Django?Swaroop C H2009-08-17T10:56:09Z2009-08-18T06:14:03Z
<p>I was wondering if there is already a way to create a separate autoincrement-ID-per-user field in Django?</p>
<p>Basically, I'm storing many related models and I need the IDs generated to be autoincrement <em>per user</em>.</p>
<p>I don't want to change how <code>id</code> works, just need a new field that I can add which is unique=True <em>per user</em>.</p>
<p>Any suggestions (other than overriding save and implementing it myself)?</p>
http://stackoverflow.com/questions/1275736/is-there-any-command-to-go-to-the-end-or-beginning-of-a-ruby-block-using-vim/1275972#1275972-1Answer by Swaroop C H for Is there any command to go to the end (or beginning) of a Ruby block using vimSwaroop C H2009-08-14T03:56:35Z2009-08-14T03:56:35Z<p>Try this - <a href="http://www.vim.org/scripts/script.php?script%5Fid=303" rel="nofollow">http://www.vim.org/scripts/script.php?script%5Fid=303</a> (Disclaimer: untested)</p>
http://stackoverflow.com/questions/1074614/why-does-vi-behave-differently-in-ubuntu-than-in-centos/1074653#10746530Answer by Swaroop C H for Why does vi behave differently in Ubuntu than in CentOS?Swaroop C H2009-07-02T14:17:55Z2009-07-02T14:17:55Z<p>(1) Check if <code>showmode</code> setting is different on both.</p>
<p>(2) Don't know about this one, I think this has more to do with the terminal than Vi itself.</p>
<p>(3) Maybe try using <code>:map <BS> :normal d</code> ?</p>
http://stackoverflow.com/questions/1047400/how-to-make-vim-continue-bullet-points2How to make Vim continue bullet points?Swaroop C H2009-06-26T04:49:03Z2009-06-26T07:44:28Z
<p>When I use Mediawiki-syntax first-level bullet points, pressing enter key shows a bullet point for the next line as well:</p>
<pre><code>* <CR>
*
</code></pre>
<p>But when I have the second-level bullet points, it just starts a new blank line</p>
<pre><code>** <CR>
(blank line)
</code></pre>
<p>What option/expression do I have to change/program to make it put <code>**</code> in the second line?</p>
<p><br /></p>
<p>I have <code>set autoindent</code> in my vimrc, not sure if that is the one that does the repeating of <code>*</code> with the enter key.</p>
http://stackoverflow.com/questions/133528/first-impressions-of-the-fan-programming-language6First impressions of the Fan programming language?Swaroop C H2008-09-25T14:02:56Z2009-06-13T05:36:16Z
<p>Hi,</p>
<p>Has anyone here given the <a href="http://www.fandev.org" rel="nofollow">Fan programming language</a> a whirl? (pun intended).</p>
<p>My first impression:</p>
<ul>
<li>I like the ability to have the code run on either the .NET or Java VM.</li>
<li>The syntax is nice and clean and does not try anything fancy.</li>
<li>I have a belief that "the library is the language" and the developers of Fan <a href="http://fandev.org/doc/docIntro/WhyFan.html" rel="nofollow">believe that their USP is their APIs</a>:</li>
</ul>
<blockquote>
<p>But getting a language to run on both Java and .NET is the easy part - in fact there are many solutions to this problem. The hard part is getting portable APIs. Fan provides a set of APIs which abstract away the Java and .NET APIs. We actually consider this one of Fan's primary benefits, because it gives us a chance to develop a suite of system APIs that are elegant and easy to use compared to the Java and .NET counter parts.</p>
</blockquote>
<p>Any other thoughts, first impressions, pros and cons?</p>
http://stackoverflow.com/questions/939912/django-cant-http-request-its-own-pages/940095#9400951Answer by Swaroop C H for Django can't http request its own pages?Swaroop C H2009-06-02T15:08:46Z2009-06-02T15:08:46Z<p>Why not just use <code>render_to_string</code>?</p>
http://stackoverflow.com/questions/903720/which-is-the-better-of-the-django-event-apps1Which is the better of the django event apps?Swaroop C H2009-05-24T12:58:07Z2009-05-26T07:35:07Z
<p>I've been looking at <a href="http://code.google.com/p/django-swingtime/" rel="nofollow">django-swingtime</a>, <a href="http://thauber.com/blog/post/django-schedule/" rel="nofollow">django-schedule</a> and <a href="http://github.com/dokterbob/django-agenda" rel="nofollow">django-agenda</a>.</p>
<p>Any recommendations of which is them easier to use, and if so any practical code examples out there? Couldn't find useful examples in the respective projects.</p>
<p>My requirement is to have a number of events and track their occurrences, but the events are custom things, for example, a project management system where a regular amount of time is spent on each project where an event is a task and the occurrences are the hours spent regularly on each task.</p>
http://stackoverflow.com/questions/905020/resources-concerning-python-scripting-in-vim/905088#9050881Answer by Swaroop C H for Resources concerning Python scripting in VimSwaroop C H2009-05-25T02:01:24Z2009-05-25T02:01:24Z<p>Refer the <a href="http://www.swaroopch.com/notes/Vim%5Fen:Scripting#Using%5Fexternal%5Fprogramming%5Flanguages" rel="nofollow">Scripting chapter in 'A Byte of Vim'</a>.</p>
http://stackoverflow.com/questions/872290/most-efficient-way-to-find-whether-a-large-list-contains-a-specific-string-pytho/872295#8722950Answer by Swaroop C H for Most Efficient Way to Find Whether a Large List Contains a Specific String (Python)Swaroop C H2009-05-16T12:04:42Z2009-05-16T12:04:42Z<p>You're basically testing whether a member is in a set or not, right?</p>
<p>If so, and because you said you have lots of memory, why not just load all the words as keys in memcache, and then for every word, just check if it is present in memcache or not.</p>
<p>Or use that data structure that is used by bash to autocomplete command names - this is fast and highly efficient in memory (can't remember the name).</p>
http://stackoverflow.com/questions/839777/svn-project-management-wiki-todo-list/839955#8399550Answer by Swaroop C H for SVN + PROJECT MANAGEMENT + WIKI + TODO LISTSwaroop C H2009-05-08T14:09:29Z2009-05-08T14:09:29Z<p>How about <a href="http://opensource.washingtontimes.com/projects/django-projectmgr/" rel="nofollow">django-projectmgr from The Washington Times</a> ? It has SVN integration, feature requests, tasks, bug reports, wiki, and even a timeline.</p>
http://stackoverflow.com/questions/823754/how-can-i-wrap-text-to-some-length-in-vim/824531#8245314Answer by Swaroop C H for How can I wrap text to some length in Vim?Swaroop C H2009-05-05T11:47:06Z2009-05-05T11:47:06Z<pre><code>:set textwidth=30
</code></pre>
http://stackoverflow.com/questions/804368/blogging-system-which-runs-on-the-google-app-engine/806035#8060353Answer by Swaroop C H for Blogging System which runs on the Google App EngineSwaroop C H2009-04-30T09:08:14Z2009-04-30T09:08:14Z<p>There's <a href="http://bitbucket.org/ianb/pickywiki/" rel="nofollow">PickyWiki (a CMS) by Ian Bicking</a> (haven't used it myself)</p>
http://stackoverflow.com/questions/708702/why-are-most-web-services-in-rest-style-and-not-also-in-xml-rpc3Why are most web services in REST style, and not (also) in XML-RPC?Swaroop C H2009-04-02T07:43:11Z2009-04-29T23:56:19Z
<p>I know that Flickr provides both XML-RPC and REST ways of working with it.</p>
<p>There are standard XML-RPC libraries for every language (For example, Python has a built-in one <code>xmlrpclib</code>).</p>
<p>Standard XML-RPC libraries takes care of the serializing/deserializing as well as sending/receiving the responses.</p>
<p>It seems to me that websites that use the REST style for the same API would end up writing their own libraries in each language. Example: the Yahoo! Search SDK.</p>
<p>To me, it seems that the XML-RPC way is better, but all the evidence is to the contrary. Why?</p>
<p>So:</p>
<ol>
<li>Why are most web services in REST style, and not in XML-RPC?</li>
<li>Are there downsides to XML-RPC that is not apparent?</li>
</ol>
http://stackoverflow.com/questions/656979/django-and-restful-apis/737509#7375090Answer by Swaroop C H for Django and Restful APIsSwaroop C H2009-04-10T12:40:00Z2009-04-10T12:40:00Z<p>Check out <a href="http://github.com/ingenieroariel/dapi/tree/master" rel="nofollow">django-api</a>.</p>
http://stackoverflow.com/questions/668627/any-open-source-examples-of-offline-online-synchronization2Any open source examples of offline-online synchronization?Swaroop C H2009-03-21T02:34:59Z2009-04-09T09:36:04Z
<p>Are there any open source applications that demonstrate good techniques of <a href="http://stackoverflow.com/questions/271610/strategy-for-offline-online-data-synchronization">online-offline synchronization</a> <strong>of databases</strong>, something like <a href="http://www.rememberthemilk.com" rel="nofollow">Remember The Milk</a> does with their iPhone app, Google Gears offline mode, etc.?</p>
http://stackoverflow.com/questions/712510/using-csv-as-a-mutable-database/713425#7134250Answer by Swaroop C H for Using CSV as a mutable database?Swaroop C H2009-04-03T10:39:52Z2009-04-03T10:39:52Z<p>It's technically possible. For example, Perl has <a href="http://search.cpan.org/~jzucker/DBD-CSV/lib/DBD/CSV.pm" rel="nofollow">DBD::CSV</a> that provides a driver that runs SQL queries on the CSV file.</p>
<p><em>That being said</em>, why not run off a SQLite database on your server?</p>
http://stackoverflow.com/questions/665630/can-oauth-work-with-mobile-phone-applications0Can OAuth work with mobile phone applications?Swaroop C H2009-03-20T10:36:42Z2009-04-02T08:32:49Z
<p>Can we make OAuth work from applications on mobile phones where there is no browser available?</p>
<p>Without a browser, is it still possible for a user to approve the token requests (so that the consumer can proceed to fetch the protected resources from the service provider)?</p>
http://stackoverflow.com/questions/665630/can-oauth-work-with-mobile-phone-applications/708813#7088131Answer by Swaroop C H for Can OAuth work with mobile phone applications?Swaroop C H2009-04-02T08:32:49Z2009-04-02T08:32:49Z<p><a href="http://getsatisfaction.com/oauth/topics/can%5Fwe%5Fmake%5Foauth%5Fwork%5Ffrom%5Fapplications%5Fon%5Fmobile%5Fphones%5Fwhere%5Fthere%5Fis%5Fno%5Fbrowser%5Favailable?utm%5Fmedium=widget&utm%5Fsource=widget%5Foauth" rel="nofollow">Chris Messina answered this question</a> referring to <a href="http://www.hueniverse.com/hueniverse/2009/02/beyond-the-oauth-web-redirection-flow.html" rel="nofollow">this blog post</a> that explains the possibilities.</p>
http://stackoverflow.com/questions/706799/mit-license/708790#7087900Answer by Swaroop C H for MIT licenseSwaroop C H2009-04-02T08:23:42Z2009-04-02T08:23:42Z<p>From the <a href="http://oreilly.com/catalog/osfreesoft/book/ch02.pdf" rel="nofollow">"Understanding Open Source and Free Software Licensing" O'Reilly book</a> (PDF):</p>
<blockquote>
<p>These licenses, as applied to the original licensed code, allow that code to be used in
proprietary software and do not require that open source versions of the code be dis-
tributed. Code created under these licenses, or derived from such code, may go
“closed” and developments can be made under that proprietary license, which are
lost to the open source community. For the same reason, however, these licenses are
very flexible and compatible with almost every form of open source license.</p>
</blockquote>
http://stackoverflow.com/questions/708649/python-comments-vs-strings/708668#7086683Answer by Swaroop C H for Python comments: # vs stringsSwaroop C H2009-04-02T07:32:53Z2009-04-02T07:32:53Z<p>The disadvantage, of course, is that someone else reading it will find that the code strings and comment strings are interleaved, which could be confusing.</p>
http://stackoverflow.com/questions/700186/text-editors-with-vim-mode/700201#7002012Answer by Swaroop C H for Text editors with "vim mode"?Swaroop C H2009-03-31T06:07:57Z2009-03-31T06:07:57Z<p>It seems the <a href="http://eclim.sourceforge.net/eclimd.html#gvim-embedded" rel="nofollow">eclim plugin can help you embed the real GVim into Eclipse</a>.</p>
http://stackoverflow.com/questions/688096/including-python-standard-libraries-in-your-distribution/688207#6882075Answer by Swaroop C H for Including Python standard libraries in your distributionSwaroop C H2009-03-27T01:38:17Z2009-03-27T01:38:17Z<p>According to the <a href="http://wiki.python.org/moin/PythonSoftwareFoundationLicenseFaq" rel="nofollow">PSF License FAQ</a>:</p>
<blockquote>
<p>Can I bundle Python with my non-open-source application?</p>
<p>Yes. Unlike some open source licenses, the PSF License allows Python to be included in non-open applications, either in unmodified or modified form.</p>
</blockquote>
<p>The FAQ goes on to explain about third-party module licensing.</p>
<p>In effect, I think the answer is 'Yes'.</p>
<p>DISCLAIMER: IANAL.</p>
http://stackoverflow.com/questions/422140/how-to-access-the-user-profile-in-a-django-template4How to access the user profile in a Django template?Swaroop C H2009-01-07T21:19:13Z2009-03-19T16:47:58Z
<p>I'm storing some additional per-user information using the <a href="http://docs.djangoproject.com/en/dev/topics/auth/#storing-additional-information-about-users" rel="nofollow"><code>AUTH_PROFILE_MODULE</code></a>.</p>
<p>We can access the user in a Django template using <code>{{ request.user }}</code> but how do we access fields in the profile since the profile is only accessible via a function <code>user.get_profile()</code> ?</p>
<p>Is it really required to explicitly pass the profile into the template every time?</p>
http://stackoverflow.com/questions/661584/is-there-a-parser-way-available-to-parser-wikipedia-dump-files-using-python/661625#6616252Answer by Swaroop C H for Is there a parser/way available to parser Wikipedia dump files using Python?Swaroop C H2009-03-19T10:00:28Z2009-03-19T10:00:28Z<p>There is example code for the same at <a href="http://jjinux.blogspot.com/2009/01/python-parsing-wikipedia-dumps-using.html" rel="nofollow">http://jjinux.blogspot.com/2009/01/python-parsing-wikipedia-dumps-using.html</a></p>
http://stackoverflow.com/questions/601600/how-to-get-the-number-of-rows-of-the-selected-result-from-sqlite3/601605#6016050Answer by Swaroop C H for How to get the number of rows of the selected result from sqlite3?Swaroop C H2009-03-02T08:18:26Z2009-03-02T08:18:26Z<p>Once you already have the <code>select * from XXX</code> results, you can just find the array length in your program right?</p>
http://stackoverflow.com/questions/512173/how-to-copy-a-directory-and-its-contents-to-an-existing-location-using-python/512232#5122320Answer by Swaroop C H for How to copy a directory and its contents to an existing location using Python?Swaroop C H2009-02-04T16:56:19Z2009-02-04T16:56:19Z<p>Why not implement it on your own using <code>os.walk</code>?</p>
http://stackoverflow.com/questions/498576/what-is-the-best-way-to-handle-configuration-files-with-git/498607#4986073Answer by Swaroop C H for What is the best way to handle configuration files with git?Swaroop C H2009-01-31T10:17:07Z2009-01-31T10:17:07Z<p>There's a convention followed in the Django world that you could use - there is a standard <code>settings.py</code> file that imports a <code>local_settings</code> module at the end if there is one available.</p>
<p>Have all your secret stuff in that <code>local_settings.py</code> file and add it to <code>.gitignore</code> so that it doesn't go to the repository. This way, people will know that they can add their own settings to <code>local_settings</code>.</p>
<p>For example,</p>
<p><code>settings.py</code>:</p>
<pre><code>DATABASE_USERNAME = 'your username here'
DATABASE_PASSWORD = 'your password here'
</code></pre>
<p><code>local_settings.py</code>:</p>
<pre><code>DATABASE_USERNAME = 'my top secret username'
DATABASE_PASSWORD = 'my top secret password'
</code></pre>
<p>The best part is that whatever you've defined in <code>settings.py</code> will get overridden by the same name in <code>local_settings.py</code>.</p>
http://stackoverflow.com/questions/366528/syntax-highlighting-library-in-actionscript/465078#4650781Answer by Swaroop C H for Syntax Highlighting library in ActionScriptSwaroop C H2009-01-21T12:26:42Z2009-01-21T12:26:42Z<p>Update on 21 Jan, 2009:</p>
<p>Check out <a href="http://anirudhs.chaosnet.org/blog/2009.01.12.html" rel="nofollow">Anirudh's port of google-code-prettify to ActionScript3</a>, it has a very good example app as well.</p>
http://stackoverflow.com/questions/460496/whats-the-most-elegant-way-of-commenting-uncommenting-blocks-of-ruby-code-in-v/460534#4605343Answer by Swaroop C H for What's the most elegant way of commenting / uncommenting blocks of ruby code in Vim?Swaroop C H2009-01-20T09:06:05Z2009-01-20T09:06:05Z<p>Have you tried out <a href="http://www.vim.org/scripts/script.php?script_id=23" rel="nofollow">EnhCommentify.vim</a> or <a href="http://www.vim.org/scripts/script.php?script_id=1173" rel="nofollow">tComment.vim</a>?</p>
http://stackoverflow.com/questions/442343/generic-catch-for-python/442348#442348Comment by Swaroop C H on Generic catch for pythonSwaroop C H2009-11-07T13:17:28Z2009-11-07T13:17:28Z@nosklo You're righthttp://stackoverflow.com/questions/1287319/is-there-an-autoincrement-per-user-field-in-django/1288479#1288479Comment by Swaroop C H on Is there an autoincrement-per-user field in Django?Swaroop C H2009-08-18T04:28:02Z2009-08-18T04:28:02ZMy use case is exactly what @uswaretech mentioned :)http://stackoverflow.com/questions/1069816/is-there-a-way-to-override-a-perl-use-constant-in-your-unit-testingComment by Swaroop C H on Is there a way to override a Perl "use constant" in your unit testing?Swaroop C H2009-07-02T14:21:46Z2009-07-02T14:21:46ZWhy would you do this instead of having a config file?http://stackoverflow.com/questions/668627/any-open-source-examples-of-offline-online-synchronization/733510#733510Comment by Swaroop C H on Any open source examples of offline-online synchronization?Swaroop C H2009-06-06T13:49:24Z2009-06-06T13:49:24ZThank you for this information. I didn't know that there was a whole field dedicated to this!
I found this interesting also in the context of the [Google Waves "Under The Hood" talk](<a href="http://www.youtube.com/watch?v=uOFzWZrsPV0" rel="nofollow">youtube.com/watch?v=uOFzWZrsPV0</a>) where they talk about Operational Transform for the first 20 mins.http://stackoverflow.com/questions/903720/which-is-the-better-of-the-django-event-apps/905715#905715Comment by Swaroop C H on Which is the better of the django event apps?Swaroop C H2009-05-25T11:45:55Z2009-05-25T11:45:55ZNope, this is not what I'm looking for. I've added more details to the question to explain what I'm doing.http://stackoverflow.com/questions/903720/which-is-the-better-of-the-django-event-appsComment by Swaroop C H on Which is the better of the django event apps?Swaroop C H2009-05-25T11:44:08Z2009-05-25T11:44:08ZLet me update the description to be more precise.http://stackoverflow.com/questions/903711/reading-an-mbox-file-in-c/903734#903734Comment by Swaroop C H on Reading an mbox file in C#Swaroop C H2009-05-24T13:09:44Z2009-05-24T13:09:44ZThen use IronPython?http://stackoverflow.com/questions/384076/how-can-i-make-the-python-logging-output-to-be-colored/384125#384125Comment by Swaroop C H on How can I make the Python logging output to be colored?Swaroop C H2009-05-22T16:20:31Z2009-05-22T16:20:31ZWhere is YELLOW, WHITE, BLUE, etc. defined?http://stackoverflow.com/questions/847032/python-equivalent-of-perls-dbi-dbdproxy-access-perl-dbi-dbdproxy-for-pythoComment by Swaroop C H on Python equivalent of perl's dbi/DBD::Proxy access? (Perl DBI/DBD::Proxy for Python)Swaroop C H2009-05-11T07:28:53Z2009-05-11T07:28:53ZIs the same Perl code running on the same Windows machine without errors?http://stackoverflow.com/questions/823754/how-can-i-wrap-text-to-some-length-in-vim/824531#824531Comment by Swaroop C H on How can I wrap text to some length in Vim?Swaroop C H2009-05-05T18:24:59Z2009-05-05T18:24:59Z@Andy <code>textwidth</code> will not handle a no-spaces situation. You can write your own <code>formatexpr</code> function to do that.http://stackoverflow.com/questions/823754/how-can-i-wrap-text-to-some-length-in-vim/823771#823771Comment by Swaroop C H on How can I wrap text to some length in Vim?Swaroop C H2009-05-05T11:55:01Z2009-05-05T11:55:01ZThis assumes a <code>fold</code> command is installed.http://stackoverflow.com/questions/668627/any-open-source-examples-of-offline-online-synchronizationComment by Swaroop C H on Any open source examples of offline-online synchronization?Swaroop C H2009-04-09T06:56:43Z2009-04-09T06:56:43Z@Marc Preferably Python.http://stackoverflow.com/questions/708702/why-are-most-web-services-in-rest-style-and-not-also-in-xml-rpc/708735#708735Comment by Swaroop C H on Why are most web services in REST style, and not (also) in XML-RPC?Swaroop C H2009-04-02T08:17:02Z2009-04-02T08:17:02ZFor the client or the server? If it is the server, I think that is also pretty standardized - <a href="http://docs.python.org/library/simplexmlrpcserver.html" rel="nofollow">docs.python.org/library/simplexmlrpcserver.html/…</a> , isn't it?http://stackoverflow.com/questions/549/the-definitive-guide-to-website-authentication-beta/37014#37014Comment by Swaroop C H on The Definitive Guide To Website Authentication (beta)Swaroop C H2009-03-31T06:16:41Z2009-03-31T06:16:41Z@Robert "but just allowing people to edit the same post doesn't make SO a wiki." ... forgive me for a naive question but isn't that the definition of a wiki?http://stackoverflow.com/questions/668627/any-open-source-examples-of-offline-online-synchronization/670229#670229Comment by Swaroop C H on Any open source examples of offline-online synchronization?Swaroop C H2009-03-22T04:37:40Z2009-03-22T04:37:40ZThanks Norman, the paper should be helpful, will take a look. However, can the concepts in the paper be used to work for database synchronization (naive question?), sorry if I wasn't clear before that I'm specifically looking at synchronization of structured data.