User kinjal - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T19:15:44Z http://stackoverflow.com/feeds/user/6629 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/81584/what-ide-to-use-for-python/81603#81603 11 Answer by kinjal for What IDE to use for Python kinjal 2008-09-17T09:56:44Z 2009-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#1318013 0 Answer by kinjal for Dynamic HTML Table rows added and filled and inserted in to databse kinjal 2009-08-23T07:43:12Z 2009-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#631689 4 Answer by kinjal for How do you set a default value for a MySQL Datetime column? kinjal 2009-03-10T18:38:48Z 2009-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 -1 Answer by kinjal for Format specifier for 'long long' kinjal 2009-01-20T17:55:01Z 2009-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#454674 1 Answer by kinjal for How can I create a Product Key for my C# App kinjal 2009-01-18T04:50:40Z 2009-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#397805 1 Answer by kinjal for C/C++ Compiler for windows kinjal 2008-12-29T14:22:33Z 2008-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#221517 2 Answer by kinjal for How do you prevent downloads from being run instead of saved in IE kinjal 2008-10-21T11:29:20Z 2008-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#183444 1 Answer by kinjal for Does Mono .NET support and compile C++ / CLI? kinjal 2008-10-08T15:41:53Z 2008-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#178448 2 Answer by kinjal for Do you validate your URL variables? kinjal 2008-10-07T13:30:18Z 2008-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#153300 6 Answer by kinjal for Why isn't bittorrent more widespread? kinjal 2008-09-30T14:28:09Z 2008-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#100018 1 Answer by kinjal for What is the Best Exercise for Good Posture? kinjal 2008-09-19T06:18:36Z 2008-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#82187 0 Answer by kinjal for Where do I find the current {X} standard? kinjal 2008-09-17T11:29:57Z 2008-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#81312 2 Answer by kinjal for ASP.NET : How to detect file upload Mime type? kinjal 2008-09-17T09:04:40Z 2008-09-17T09:04:40Z <p>in the aspx page:</p> <pre><code>&lt;asp:FileUpload ID="FileUpload1" runat="server" /&gt; </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#81284 0 Answer by kinjal for servlet not in root application's servlet context kinjal 2008-09-17T08:59:18Z 2008-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#69533 1 Answer by kinjal for Advice on buidling an Interactive Voice Response (IVR) system using Asterisk kinjal 2008-09-16T05:07:59Z 2008-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#69476 1 Answer by kinjal for Is there a way to make text unselectable on an html page? kinjal 2008-09-16T04:51:48Z 2008-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#65088 1 Answer by kinjal for How does Highrise handle e-mail addresses like: dropbox@123456.foobar.highrisehq.com? kinjal 2008-09-15T17:49:46Z 2008-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#63900 0 Answer by kinjal for Should you design websites that require JavaScript in this day & age? kinjal 2008-09-15T15:23:27Z 2008-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#63740 0 Answer by kinjal for How do you retrofit unit tests into a code base ? kinjal 2008-09-15T15:07:41Z 2008-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-applications 3 What could be good ways to deploy ASP.Net Web Applications? kinjal 2008-09-15T13:23:11Z 2008-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#62660 0 Answer by kinjal for What are the differences between Visual C++ 6.0 and Visual C++ 2008? kinjal 2008-09-15T13:06:56Z 2008-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#62609 0 Answer by kinjal for Stack overflow code golf kinjal 2008-09-15T13:01:30Z 2008-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#62469 1 Answer by kinjal for Reasons not to build your own bug tracking system kinjal 2008-09-15T12:46:44Z 2008-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-certified Comment by kinjal on Why are most US companies not process certified? kinjal 2009-10-30T09:25:35Z 2009-10-30T09:25:35Z There 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-coding Comment by kinjal on Should programmers read the spec before coding? kinjal 2009-10-23T14:24:34Z 2009-10-23T14:24:34Z if 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#1433639 Comment by kinjal on Dialplan question kinjal 2009-10-23T13:56:28Z 2009-10-23T13:56:28Z I 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#463001 Comment by kinjal on Inserting DATETIME with ActiveRecord and MySQL kinjal 2009-10-23T13:27:14Z 2009-10-23T13:27:14Z for 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#495290 Comment by kinjal on setup an IVR with Asterisk kinjal 2009-09-07T14:13:11Z 2009-09-07T14:13:11Z the 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#397771 Comment by kinjal on Record Video of Screen using .NET technologies kinjal 2008-12-29T14:31:05Z 2008-12-29T14:31:05Z In 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#397771 Comment by kinjal on Record Video of Screen using .NET technologies kinjal 2008-12-29T14:26:53Z 2008-12-29T14:26:53Z I 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 &quot;free&quot; strictly speaking. http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/237825#237825 Comment by kinjal on What is your best programmer joke? kinjal 2008-12-29T14:03:58Z 2008-12-29T14:03:58Z fix for modern versions of Windows: &gt;copy con if.cmd @echo Syntax error ^Z &gt;.\if you are happy and you know it, syntax error! http://stackoverflow.com/questions/221467/c-generics-question/221511#221511 Comment by kinjal on C# generics question kinjal 2008-10-21T11:57:16Z 2008-10-21T11:57:16Z If 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/&hellip;</a> http://stackoverflow.com/questions/32876/whats-the-best-way-to-extricate-yourself-from-a-soul-destroying-internal-it-job/32887#32887 Comment by kinjal on What's the best way to extricate yourself from a soul-destroying internal IT job? kinjal 2008-09-17T03:09:56Z 2008-09-17T03:09:56Z just please clarify #2 as &quot;then quit your current job&quot; http://stackoverflow.com/questions/62816/what-could-be-good-ways-to-deploy-asp-net-web-applications/62864#62864 Comment by kinjal on What could be good ways to deploy ASP.Net Web Applications? kinjal 2008-09-15T15:10:08Z 2008-09-15T15:10:08Z web deployment project does not help me sync the databases. Good thing about web deployment project is that it uncovers more errors during build.