User kinjal - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T19:15:44Zhttp://stackoverflow.com/feeds/user/6629http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/81584/what-ide-to-use-for-python/81603#8160311Answer by kinjal for What IDE to use for Pythonkinjal2008-09-17T09:56:44Z2009-10-06T09:48:58Z<p>There is Komodo from ActiveState which is commercial, there is also <a href="http://www.activestate.com/komodo%5Fedit/" rel="nofollow">Komodo Edit</a> which is free.</p>
http://stackoverflow.com/questions/1317985/dynamic-html-table-rows-added-and-filled-and-inserted-in-to-databse/1318013#13180130Answer by kinjal for Dynamic HTML Table rows added and filled and inserted in to databse kinjal2009-08-23T07:43:12Z2009-08-23T07:43:12Z<ol>
<li>client side javascript. functions like add row, remove row, move row up, move row down as required. <a href="http://stackoverflow.com/questions/171027/jquery-add-table-row">Elsewhere on SO</a></li>
<li>remember to name the controls that are added uniquely, like name1, name2, name3... Optionally store count of rows in some hidden field which gets updated and submitted along with the form.</li>
<li>on the server side use that counter or otherwise loop through all the request variables to find name*, and insert name*, age*, gender* etc. to the database in the loop.</li>
</ol>
http://stackoverflow.com/questions/168736/how-do-you-set-a-default-value-for-a-mysql-datetime-column/631689#6316894Answer by kinjal for How do you set a default value for a MySQL Datetime column?kinjal2009-03-10T18:38:48Z2009-03-10T18:38:48Z<p>this is indeed terrible news.<a href="http://bugs.mysql.com/bug.php?id=27645" rel="nofollow">here is a long pending bug/feature request for this</a>. that discussion also talks about the limitations of timestamp data type.</p>
<p>I am seriously wondering what is the issue with getting this thing implemented.</p>
http://stackoverflow.com/questions/462345/format-specifier-for-long-long/462352#462352-1Answer by kinjal for Format specifier for 'long long'kinjal2009-01-20T17:55:01Z2009-01-20T17:55:01Z<p>did this a long time ago... maybe %L or %Ld worked then. sorry, but i can't test that.</p>
http://stackoverflow.com/questions/453030/how-can-i-create-a-product-key-for-my-c-app/454674#4546741Answer by kinjal for How can I create a Product Key for my C# Appkinjal2009-01-18T04:50:40Z2009-01-18T04:50:40Z<p>if you are asking about the keys that you can type in likes windows product keys, then they are based on some checks. if you are talking about the keys that you have to copy paste, then they are based on digitial signature (private key encryption)</p>
<p>a simple product key logic could be to start with saying that product key is four 5 digit groups like abcde-fghij-kljmo-pqrst, and then go on to specify internal relationships like f+k+p should equal a, meaning the first digits of the 2, 3 and 4 group should total to a. this means that 8xxxx-2xxxx-4xxxx-2xxxx is valid, so is 8xxxx-1xxxx-0xxxx-7xxxx. Of course, there would be other relationships as well, including complex relations like, if the second digit of the first group is odd, then the last digit of the last group should be odd too. this way there would be generators for product keys and verification of product keys would simply check if it matches all the rules.</p>
<p>encryption are normally the string of information about the license encrypted using a private key (== digitally signed) and converted to base 64. the public key is distributed with the application. when the base64 string arrives, it is verified (==decrypted) by the public key and if found valid, the product is activated.</p>
http://stackoverflow.com/questions/397377/c-c-compiler-for-windows/397805#3978051Answer by kinjal for C/C++ Compiler for windowskinjal2008-12-29T14:22:33Z2008-12-29T14:22:33Z<p>Just to be different.</p>
<p>There is openwatcom and LCC. Though they come with IDEs attached, they are also usable from the commandline.</p>
http://stackoverflow.com/questions/221474/how-do-you-prevent-downloads-from-being-run-instead-of-saved-in-ie/221517#2215172Answer by kinjal for How do you prevent downloads from being run instead of saved in IEkinjal2008-10-21T11:29:20Z2008-10-21T11:29:20Z<p>The non-technical way to do this would be to put in download instructions in the form of an image of the dialog box in question, with a friendly circle around the save button, and some text that tells the user to click on the Save button. This leaves everything to the user and nothing to the programmer. When trying to achieve things like this, the #1 problem is verifying if it really works. There are so many differences in configurations that testing in all situations becomes unrealistic, in which case any solution cannot be guaranteed to work, which means that any time/money spent is a waste.</p>
<p>Also, this means that there is some non-core functionality which requires specialised knowledge to maintain. This is asking for trouble.</p>
http://stackoverflow.com/questions/183377/does-mono-net-support-and-compile-c-cli/183444#1834441Answer by kinjal for Does Mono .NET support and compile C++ / CLI?kinjal2008-10-08T15:41:53Z2008-10-08T15:41:53Z<p>go <a href="http://www.mono-project.com/Languages" rel="nofollow" title="here">here</a> and look under "Missing Languages". But just because you cant compile does not mean that you cant <em>run</em>. You can compile your C++ code using the framework sdk and try running it using mono. Worth trying anyway.</p>
http://stackoverflow.com/questions/178320/do-you-validate-your-url-variables/178448#1784482Answer by kinjal for Do you validate your URL variables?kinjal2008-10-07T13:30:18Z2008-10-07T13:30:18Z<p>not just what the others are saying. Imagine a querystring variable called nc, which can be seen to have values of 10, 50 and 100 when the user selects 10, 50 and 100 results per page respectively. Now imagine someone changing this to 50000. If you are just checking that to be an integer, you will be showing 50000 results per page, affecting your pageviews, server loads, script times and so on. Plus this could be your entire database. When you have such rules (10, 50 or 100 results per page), you should additionaly check to see if the value of nr is 10, 50 or 100 only, and if not, set it to a default. This can simply be a min(nc, 100), so it will work if nc is changed to 25, 75 and so on, but will default to 100 if it sees anything above 100.</p>
http://stackoverflow.com/questions/153064/why-isnt-bittorrent-more-widespread/153300#1533006Answer by kinjal for Why isn't bittorrent more widespread?kinjal2008-09-30T14:28:09Z2008-09-30T14:54:03Z<p>first of all: <a href="http://torrent.ubuntu.com/" rel="nofollow">http://torrent.ubuntu.com/</a> for torrents on ubuntu.</p>
<p>second of all: opera has a built in torrent client.</p>
<p>third: I agree with the stigma attached to p2p. So much so that we have sites that need to be called legaltorrents and such like because by default a torrent would be an illegal thing, and let us not kid ourselves, it is.</p>
<p>getting torrents into the main stream is an excellent idea. you can't tamper with the files you are seeding so there is no risk there.</p>
<p>the big reason is not really stigma. the big reason is analytics, and their protection. with torrents these people (companies like microsoft and such like) would not be able to gather important information about who is doing the downloads (not personally identifiable information, and quickly aggregated away). with torrents, other people would be able to see this information, at least partially. A company would love to seed the torrent of an evaluation version of a competing companys product, just to get an idea of how popular it is and where it is getting downloaded from. It is not as good as hosting the download on your webservers, but it is the next best thing.</p>
<p>this is possibly the reason why the vista download on microsofts sites, or its many service packs and SDKs are not in torrents.</p>
<p>Another thing is that people just wont participate, and that is not difficult to figure out why because of the number of hoops you have to jump through. you got to figure out the firewall, the NAT thing, and then uPNP thing, and then maybe your ISP is throttling your bandwidth, and so on.</p>
<p>Again, I would (and I do) seed my 1.5 times or beyond for the torrents that I download, but that is because these are linux, openoffice that sort of thing. I would probably feel funny seeding adobe acrobat, or some evaluation version or something, because those guys are making profits and I am not a fool to save money for them. Let them pay for http downloads.</p>
<p>edit: (based on the comment by monoxide)
For the freeware out there and for SF.net downloads, their problem is that they cannot rely on seeders and will need their fallback on mirrors anyway, so for them torrents is adding to their expense. One more reason that pops to mind is that even in software shops, Internet access is now thoroughly controlled, and ports on which torrents rely plus the upload requirement is absolutely no-no. Since most people who need these sites and their downloads are in these kinds of offices, they will continue to use http.</p>
<p>BUT even that is not the answer. These people have in their licensing terms restrictions on redistribution. And so their problem is this: if you are seeding their software you are redistributing it. That is a violation of their licensing terms so if they host a torrent download and allow you to seed it, that is entrapment and they can be sued (I am not a lawyer, I learn from watching TV). They have to then delicately change their licensing to allow distribution by seeding torrents but not otherwise. This is an easy enough concept for most of us, but the vagaries of the English language and the dumb hard look on the face of the judge make it a very tricky thing to do. The judge may personally understand torrents, but sitting up their in the court he has to frown and pretend not to because it is not documented in legalese.</p>
<p>That there is the ditch they have dug and there they fall into it. Let us laugh at them and their misery. Yesterdays smart is todays stupid.</p>
<p>Cheers!</p>
http://stackoverflow.com/questions/97388/what-is-the-best-exercise-for-good-posture/100018#1000181Answer by kinjal for What is the Best Exercise for Good Posture?kinjal2008-09-19T06:18:36Z2008-09-19T06:18:36Z<p>Look at <a href="http://en.wikipedia.org/wiki/Alexander_Technique" rel="nofollow">Alexander Technique</a>.</p>
http://stackoverflow.com/questions/81656/where-do-i-find-the-current-x-standard/82187#821870Answer by kinjal for Where do I find the current {X} standard?kinjal2008-09-17T11:29:57Z2008-09-17T11:29:57Z<p>for what kind of questions can the answer be found in "the standard"? usually the standard is referred to by people who have something to do with the C compiler, either implementing it, or testing it, or writing standard libraries.</p>
<p>It would be more helpful for this site if you can ask the questions in question!</p>
<p>Mostly, you should check with the documentation you get with your compiler. If you want help on the while keyword, and you are on visual studio, the better place to look would be msdn. The standard will just throw you off with a lot of BNF grammar rules that are supposed to make sense.</p>
<p>also, as another poster pointed out, there are lot of things which are "implementation defined", which means it is more useful to consult the documentation that came with your compiler than the standard.</p>
http://stackoverflow.com/questions/81283/asp-net-how-to-detect-file-upload-mime-type/81312#813122Answer by kinjal for ASP.NET : How to detect file upload Mime type?kinjal2008-09-17T09:04:40Z2008-09-17T09:04:40Z<p>in the aspx page:</p>
<pre><code><asp:FileUpload ID="FileUpload1" runat="server" />
</code></pre>
<p>in the codebehind (c#):</p>
<pre><code>string contentType = FileUpload1.PostedFile.ContentType
</code></pre>
http://stackoverflow.com/questions/80714/servlet-not-in-root-applications-servlet-context/81284#812840Answer by kinjal for servlet not in root application's servlet contextkinjal2008-09-17T08:59:18Z2008-09-17T08:59:18Z<p>I can't guarantee this, but try undeploying, then renaming the ROOT folder and then deploying again.</p>
http://stackoverflow.com/questions/69403/advice-on-buidling-an-interactive-voice-response-ivr-system-using-asterisk/69533#695331Answer by kinjal for Advice on buidling an Interactive Voice Response (IVR) system using Asteriskkinjal2008-09-16T05:07:59Z2008-09-16T05:07:59Z<p>get the free ebook from o'reilly: Asterisk: The future of telephony.<br />
lots of info at: <a href="http://www.voip-info.org" rel="nofollow">http://www.voip-info.org</a>
download "asterisk appliance" distribution like asterisknow. It comes with os, dependencies and asterisk already setup, so you can focus on dial plan and onwards</p>
http://stackoverflow.com/questions/69430/is-there-a-way-to-make-text-unselectable-on-an-html-page/69476#694761Answer by kinjal for Is there a way to make text unselectable on an html page?kinjal2008-09-16T04:51:48Z2008-09-16T04:51:48Z<p>images can be selected too.
there are limits to using javascript to deselect text, as it might happen even in places where you want to select. To ensure a rich and successful career, steer clear of all requirements that need ability to influence or manage the browser beyond the ordinary... unless, of course, they are paying you extremely well.</p>
http://stackoverflow.com/questions/64882/how-does-highrise-handle-e-mail-addresses-like-dropbox123456-foobar-highrisehq/65088#650881Answer by kinjal for How does Highrise handle e-mail addresses like: dropbox@123456.foobar.highrisehq.com?kinjal2008-09-15T17:49:46Z2008-09-15T17:49:46Z<p>I do believe that it is not totally a smtp server level thing. Like the mails where the ticket id is in the subject line and you have to keep that there, there would mostly be another application that would be checking TO address, doing a database lookup and then doing something useful.</p>
<p>I haven't signed up for highrise,but I imagine that the dropbox address, given in the sample as "dropbox@12345678.highrisehq.com",the 12345678 part would be a randomly generated but unique number (means that they will not be sequentially generated, like 0000001,0000002, ... but like 28902734, 1029383, ...) and connected to your account. This way if you mistype that part, the chances of it landing up in the wrong account are lowered, and mostly the mail would bounce back. All the mails sent to the dropbox address are added that members account, in that sense, the dropbox email address is not to be made public. The dropbox address would not be easy to remember, but it is not meant to be. This lends more credence to the theory that there is a separate application which processes the mails and files them in the correct account.</p>
http://stackoverflow.com/questions/62784/should-you-design-websites-that-require-javascript-in-this-day-age/63900#639000Answer by kinjal for Should you design websites that require JavaScript in this day & age?kinjal2008-09-15T15:23:27Z2008-09-15T15:23:27Z<p>The accessibility issue is the only important technical issue, all other issues can be socially engineered. When one says that javascript reduced accessibility and another says that Web Applications can use javascript, can we take these two together to imply that all blind people are unemployed? There has to be some kind of momentum in making javascript accessible. Maybe a Screenreader object on the javascript side which can detect the presence of a screenreader and then maybe send hints to the screenreader, Screenreaders which can hook onto the browser, and maybe it gets glued together with a screenreader toolbar.</p>
http://stackoverflow.com/questions/42785/how-do-you-retrofit-unit-tests-into-a-code-base/63740#637400Answer by kinjal for How do you retrofit unit tests into a code base ?kinjal2008-09-15T15:07:41Z2008-09-15T15:07:41Z<p>Is it possible that we are in a panic and are getting confused between unit tests and performance tests? Is it that your application works fine with few users, but starts throwing errors when under heavier load? If so, unit tests are not the answer. Unit tests != Load tests.</p>
<p>If unit tests are in fact the answer, retrofitting unit tests is a good idea as it will help clean up the code. Just be prepared to refactor a lot. Code written with TDD turns out looking a lot different than code written without TDD. In my case, I had a method HandleDisposition() which took care of a lot of cases. This kind of method would not have existed if we had written the code with TDD. When retrofitting unit tests, we refactored that function and now have methods like XDisposition(), YDisposition(), ZDisposition(), which are a lot easier to write unit tests against.</p>
http://stackoverflow.com/questions/62816/what-could-be-good-ways-to-deploy-asp-net-web-applications3What could be good ways to deploy ASP.Net Web Applications?kinjal2008-09-15T13:23:11Z2008-09-15T13:31:52Z
<p>We currently deploy web applications by creating a database and running SQL scripts through query analyzer. Then we copy the output from "publish website" and set up that website in IIS.</p>
<p>We have seen websetup in visual studio, but that part seems to be thinly documented. For example, we are not clear how to ask the user for IP and password of SQL server. We also tend to get websites deployed this way coming up under folders like <a href="http://example.com/project" rel="nofollow">http://example.com/project</a>, instead of just <a href="http://example.com" rel="nofollow">http://example.com</a>.</p>
<p>Then there are issues with AJAX.Net not being installed or some or the other patch not applied.</p>
<p>So far, we have physical access to the servers. Pretty soon though we are going to be shipping CDROMs. What is the practical tradeoff between manual intervention and automation?</p>
http://stackoverflow.com/questions/62389/what-are-the-differences-between-visual-c-6-0-and-visual-c-2008/62660#626600Answer by kinjal for What are the differences between Visual C++ 6.0 and Visual C++ 2008?kinjal2008-09-15T13:06:56Z2008-09-15T13:06:56Z<p>one tough thing we encountered was that "value" became a keyword.</p>
http://stackoverflow.com/questions/62188/stack-overflow-code-golf/62609#626090Answer by kinjal for Stack overflow code golfkinjal2008-09-15T13:01:30Z2008-09-15T13:01:30Z<p>recursion is old hat. here is mutual recursion. kick off by calling either function.</p>
<pre><code>a()
{
b();
}
b()
{
a();
}
</code></pre>
<p>PS: but you were asking for shortest way.. not most creative way!</p>
http://stackoverflow.com/questions/62153/reasons-not-to-build-your-own-bug-tracking-system/62469#624691Answer by kinjal for Reasons not to build your own bug tracking systemkinjal2008-09-15T12:46:44Z2008-09-15T12:46:44Z<p>If "Needing some highly specialised report, or the ability to tweak some feature in some allegedly unique way", the best and cheapest way to do that is to talk to the developers of existing bug tracking systems. Pay them to put that feature in their application, make it available to the world. Instead of reinventing the wheel, just pay the wheel manufacturers to put in spokes shaped like springs.</p>
<p>Otherwise, if trying to showcase a framework, its all good. Just make sure to put in the relevant disclaimers.</p>
<p>To the people who believe bug tracking system are not difficult to build, follow the waterfall SDLC strictly. Get all the requirements down up front. That will surely help them understand the complexity. These are typically the same people who say that a search engine isn't that difficult to build. Just a text box, a "search" button and a "i'm feeling lucky" button, and the "i'm feeling lucky" button can be done in phase 2.</p>
http://stackoverflow.com/questions/1619511/why-are-most-us-companies-not-process-certifiedComment by kinjal on Why are most US companies not process certified?kinjal2009-10-30T09:25:35Z2009-10-30T09:25:35ZThere is even a god for visa [<a href="http://www.garamchai.com/HyderabadVisaGod.htm]" rel="nofollow">garamchai.com/HyderabadVisaGod.htm]</a>.http://stackoverflow.com/questions/1613507/should-programmers-read-the-spec-before-codingComment by kinjal on Should programmers read the spec before coding?kinjal2009-10-23T14:24:34Z2009-10-23T14:24:34Zif you do have a spec for the programmers to read, you should put in at least 20 intentional obvious mistakes before handing them over. if the programmers catch all 20 of them, you are sure that they have read and understood them.http://stackoverflow.com/questions/1304112/dialplan-question/1433639#1433639Comment by kinjal on Dialplan questionkinjal2009-10-23T13:56:28Z2009-10-23T13:56:28ZI think it is '_.' extension which is 'dangerous' because it will match 'everything', including the special extensions like t, h, i, s, etc. _X. will not match those special extensions.http://stackoverflow.com/questions/462877/inserting-datetime-with-activerecord-and-mysql/463001#463001Comment by kinjal on Inserting DATETIME with ActiveRecord and MySQLkinjal2009-10-23T13:27:14Z2009-10-23T13:27:14Zfor some reason i was doing CallLog.callstart = Date.new. that set the value to 0000-00-00 00:00:00. based on this answer, I changed it to CallLog.callstart = Time.now and I am feeling much better now.http://stackoverflow.com/questions/495271/setup-an-ivr-with-asterisk/495290#495290Comment by kinjal on setup an IVR with Asteriskkinjal2009-09-07T14:13:11Z2009-09-07T14:13:11Zthe hyperlink to FreePBX is pointing to Free-B-P-X. The poster might want to fix that.http://stackoverflow.com/questions/397754/record-video-of-screen-using-net-technologies/397771#397771Comment by kinjal on Record Video of Screen using .NET technologieskinjal2008-12-29T14:31:05Z2008-12-29T14:31:05ZIn the jing license agreement: Separation of components - [...] Its component parts may not be separated for use [...].
My advice: be safe.
try searching google for: c# screen capture
http://stackoverflow.com/questions/397754/record-video-of-screen-using-net-technologies/397771#397771Comment by kinjal on Record Video of Screen using .NET technologieskinjal2008-12-29T14:26:53Z2008-12-29T14:26:53ZI am trying to check out the jing project. I was given the impression that jing has a limit on the duration of recording that you can do. Maybe that limit is built right into the dll you are talking about. Also, it might not be under gpl/lgpl so it may not be "free" strictly speaking.http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/237825#237825Comment by kinjal on What is your best programmer joke?kinjal2008-12-29T14:03:58Z2008-12-29T14:03:58Zfix for modern versions of Windows:
>copy con if.cmd
@echo Syntax error
^Z
>.\if you are happy and you know it, syntax error!
http://stackoverflow.com/questions/221467/c-generics-question/221511#221511Comment by kinjal on C# generics questionkinjal2008-10-21T11:57:16Z2008-10-21T11:57:16ZIf you are on dotnet framework 2.0 or above, you might want to take a look at System.Diagnostics.Stopwatch to do your timing. [<a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.stopwatch.aspx]" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>http://stackoverflow.com/questions/32876/whats-the-best-way-to-extricate-yourself-from-a-soul-destroying-internal-it-job/32887#32887Comment by kinjal on What's the best way to extricate yourself from a soul-destroying internal IT job?kinjal2008-09-17T03:09:56Z2008-09-17T03:09:56Zjust please clarify #2 as "then quit your current job"http://stackoverflow.com/questions/62816/what-could-be-good-ways-to-deploy-asp-net-web-applications/62864#62864Comment by kinjal on What could be good ways to deploy ASP.Net Web Applications?kinjal2008-09-15T15:10:08Z2008-09-15T15:10:08Zweb deployment project does not help me sync the databases. Good thing about web deployment project is that it uncovers more errors during build.