User xk0der - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T15:33:55Z http://stackoverflow.com/feeds/user/29096 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/949883/trac-code-review-plugin 3 Trac: code review plugin xk0der 2009-06-04T11:07:20Z 2009-06-25T12:43:29Z <p>I'm looking for a <em>code review plugin</em> for our <a href="http://trac.edgewall.org/" rel="nofollow">trac</a> installation.</p> <p>I found these two as the top result for "<a href="http://google.com/search?q=trac%20code%20review" rel="nofollow">trac code review</a>" query on google</p> <ul> <li><a href="http://trac-hacks.org/wiki/PeerReviewPlugin" rel="nofollow">PeerCodeReview</a> </li> <li><a href="https://contrib.exoweb.net/wiki/CodeReviewPlugin" rel="nofollow">CodeReview</a></li> </ul> <p>I'm leaning towards PeerCodeReview plugin.</p> <p>Requesting the SO community for inputs about these plugins to help me select the one for our trac installation. </p> <p>If you know about any other plugins please let me know about those as well. :)</p> <p><strong>What I'm looking for in the plugin</strong> </p> <ul> <li>A Way to annotate code with comments.</li> <li>Approve/Dis-approve ; kind of like a button to inform that code needs to change. maybe a bug is created. </li> <li>A way to assign code review "Task" to a person(s).</li> </ul> <p>The first feature is required (I guess that's the whole point); others are optional. I can hack trac to get something similar to fit into that workflow. Hopefully! ;)</p> http://stackoverflow.com/questions/939326/how-can-i-execute-javascript-stored-as-a-string/939346#939346 3 Answer by xk0der for How can I execute Javascript stored as a string? xk0der 2009-06-02T12:58:34Z 2009-06-02T13:02:14Z <p>Use <a href="http://www.w3schools.com/jsref/jsref%5Feval.asp" rel="nofollow">eval</a> as below. Eval should be used with caution, a simple search about "<a href="http://www.google.com/search?q=eval%20is%20evil" rel="nofollow">eval is evil</a>" should throw some pointers.</p> <pre><code>function ExecuteJavascriptString() { var s = "alert('hello')"; eval(s); } </code></pre> http://stackoverflow.com/questions/495345/git-removing-selected-commits-from-repository 6 Git: removing selected commits from repository xk0der 2009-01-30T12:23:01Z 2009-05-09T23:41:07Z <p>I would like to remove selected commits from a linear commit tree, so that the commits do not show in the commit log.</p> <p>My commit tree looks something like:</p> <pre><code>R--A--B--C--D--E--HEAD </code></pre> <p>I would like to remove the B and C commits. So that they do not show in the commit log, but changes from A to D should be preserved. Maybe by introducing a single commit, so that B and C become BC and the tree looks like.</p> <pre><code>R--A--BC--D--E--HEAD </code></pre> <p>Or, ideally, after A comes D directly. D' representing changes from A to B, B to C and C to D.</p> <pre><code>R--A--D'--E--HEAD </code></pre> <p>Is this possible? if yes, how?</p> <p><b>Some notes that might be helpful:</b><br /> This is a fairly new project so has no branches as of now, hence no merges as well.</p> <p><i>Side note:</i> It's a personal project, so no, I'm not trying to destroy any evidence :)</p> http://stackoverflow.com/questions/720656/sqlite-and-javascript-checking-for-existence-of-data-before-inserting-or-lettin 2 SQLite and Javascript : Checking for existence of data before inserting OR letting SQLite throw an exception. xk0der 2009-04-06T08:51:36Z 2009-04-06T09:59:42Z <p>My primary question is which approach is faster.</p> <p><strong>Some briefing</strong> </p> <p>I'm developing an application using Mozilla.</p> <p>I have this one module where I capture some data and store it in database. The data comes in intermittently. No duplicates are to be stored. For discussion sake we can assume a table with just one column, and let's name that column is named 'keyword'. So if we get a keyword that's already in database we do not store it again. And yes, we have set this column as PRIMARY KEY and made it UNIQUE. :)</p> <p><strong>The query I have is:</strong></p> <p>1) Before I insert this new data into the database, shall I do a DB call and check if the keyword exists or not; if it doesn't exists put it into DB? Something like:</p> <pre><code>function insert_keyword(keyword) { if(!SQL.exists(keyword)) { SQL.insert(keyword); } } </code></pre> <p>OR</p> <p>2) I just insert and let the database handle the condition, effectively letting it throw an exception, which I catch.</p> <pre><code>function insert_keyword(keyword) { try { SQL.insert(keyword); } catch (e) { // keyword exists! } } </code></pre> <p>I know catching an exception and not doing anything is bad! So I'm not looking for what is good and what is bad :) . What I want to understand is which approach would be the fastest. (Specifically in relation to Mozilla, JavaScript and SQLite but general comments are welcomed!)</p> <p><strong>Sidenotes:</strong> <em>The <strong>SQL.</strong> syntax I've used is just for illustration purpose. You may assume that I create SQL statements, execute them and fetch the result, or assume it is a JavaScript library call which does all the dirty work.</em></p> <p><strong>This question is a bit like this one:</strong></p> <p><a href="http://stackoverflow.com/questions/405359/should-i-check-for-db-constraints-in-code-or-should-i-catch-exceptions-thrown-by">Should I check for DB constraints in code or should I catch exceptions thrown by DB</a></p> <p>But I want to understand the performance related differences specifically, as the application I'm working on needs to be as fast as possible (which application doesn't? ;) )</p> http://stackoverflow.com/questions/661387/recommends-bug-tracking-system/661392#661392 10 Answer by xk0der for Recommends bug tracking system xk0der 2009-03-19T08:00:46Z 2009-03-19T08:59:00Z <p>Take a look at <a href="http://trac.edgewall.org/" rel="nofollow">Trac</a>! It's free, light-weight, web-based interface (of-course you can install it on a local server), has tons of plugins to customize it to your needs.</p> <p><strong>Few plugins that will make it work as you have mentioned</strong> </p> <ul> <li><a href="http://trac-hacks.org/wiki/AccountManagerPlugin" rel="nofollow">TracAccountManager</a> : This plugin allows users to register on your site before they can post bugs. <em>(Also See: 'anonymous account' below)</em></li> <li><a href="http://trac.edgewall.org/wiki/WebAdmin" rel="nofollow">webadmin</a> : Allows you to configure trac using the web-interface instead of the command line trac-admin command.</li> </ul> <p><strong>Permissions</strong><br /> Apart from that you can customize permissions as per your requirement. For example: you can set only TICKET_VIEW, and TICKET_CREATE for users who register online.</p> <p><strong>Anonymous account/Guest account</strong><br /> Trac has a special account (user-name) named "anonymous*, people who are not logged in are assigned this <em>username</em>. If you do not want users to register to create Ticket, you may assign TICKET_VIEW and TICKET_CREATE permissions for "anonymous" account. (I prefer to only set XXXXX_VIEW permissions to this account.)</p> <p><strong>Bug report/Ticket fields</strong><br /> You can also modify/add/delete ticket(bug report) components (field) as per your requirements. Specify default values for fields, so that developers/users are saved from filling each and every field.</p> <p><strong>Email Notification</strong><br /> Setting up mail notifications is as easy as editing the trac.ini file under the conf folder under your Trac project folder. Just fill in your server IP/address, username, field. Customize other fields as per your taste.</p> <p><strong>Other features provided by Trac</strong> </p> <ul> <li><em>Integrated wiki.</em> Yes! You have a full-blown wiki as part of trac. It's great for creating documentation.</li> <li><em>Customized reports/query:</em> You can create custom query, visually (no need to type, although that's an option) and save them for later use. A query/report is nothing more than a search for bug/ticket list. </li> <li><em>Integration with version control systems</em>: By default Trac supports Subversion. you can browse source online, view visual diffs, view commit logs, and a host of other cool stuff. (We are using <a href="http://trac-hacks.org/wiki/GitPlugin" rel="nofollow">GitPlugin</a> to interface it with git)</li> </ul> <p>All these tasks are very simple to do on Trac, (no matter how difficult I make them sound :) )</p> <p><strong>SideNote</strong><br /> <em>There are myriads of Trac plugins, allowing you to change the complete UI layout/colors, adding charting capabilities and what not. Visit <a href="http://trac-hacks.org/" rel="nofollow">TracHacks</a> website for a comprehensive list of 'hacks' (plugins) available for Trac.</em></p> http://stackoverflow.com/questions/653209/will-dos-ever-die/653261#653261 6 Answer by xk0der for Will DOS ever die? xk0der 2009-03-17T07:04:44Z 2009-03-17T07:18:19Z <p>What you are calling DOS is essentialy a command line interface to the Windows Operating Systems (Windows XP onwards, if I remember correctly).</p> <p>There are multitude of reasons why command lines exists and <em>should</em> exists. I'll just list a few here, for you to ponder upon:</p> <ul> <li>The inherent simplicity of command line tools make them the best candidate for debugging and troubleshooting a problem. (Not just programming problems; system configuration etc. all fall under this)</li> <li>Remote diagnostic; Working on a GUI, no matter how cool it may look; is not efficient. You just can't wait for your GUI to load and refresh for you to remotely configure your server. command line is fast, and will remain fast.</li> <li>As much as you hate command line, it will always be easier to write <em>simpler</em> command line scripts than to do fancy GUI via scripting. And why would I want to create a GUI for my automation scripts? it just complicates them and I deviate from my main objective "Automation" and makes me start worrying about (G)UI!</li> </ul> <p>Hope this helps your think beyond, and change your mind about the good old command line. :)</p> <p><strong>Side note</strong>: <em>Although windows command line still sucks big time compared to the linux console, because of the way commands are named and other stuff; It still is cool that you can boot into command line safe mode and without worrying about GUI drivers and stuff and fix-up your problems.</em></p> <p><em>I'll edit the answer as I come-up with more reasons</em></p> http://stackoverflow.com/questions/495694/which-open-source-license-require-re-release-of-modifications/495816#495816 0 Answer by xk0der for Which open source license require re-release of modifications? xk0der 2009-01-30T15:04:49Z 2009-01-30T15:12:34Z <p><a href="http://en.wikipedia.org/wiki/BSD_license" rel="nofollow">BSD</a> and <a href="http://en.wikipedia.org/wiki/MIT_License" rel="nofollow">MIT</a> style license are quite good for this (source re-distribution not required for modifications), but they too require attribution and/or carrying of the license text along with the binary. But always read the full text carefully ,for any changes/additions made by the source code author, to the license.</p> <p>Also GPL V2 (Not sure about v3) <a href="http://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html#GPLRequireSourcePostedPublic" rel="nofollow">allows</a> you to NOT release the modifications if you DO NOT redistribute the code. But in your case I'm not sure about this. Better check with a lawyer.</p> http://stackoverflow.com/questions/480432/do-you-pseudo-code/480475#480475 3 Answer by xk0der for Do you pseudo-code? xk0der 2009-01-26T16:51:02Z 2009-01-26T18:02:59Z <p>Hell No! :) ... I just write short algorithms, max 10(approx) lines (yeah! call 'em pseudo-code). This helps me to put my ideas out in a concrete form, so that I'm clear about the solution I'm about to code. </p> <p>But I just don't jump to write algorithm/pseudo-code for everything I code. I do it when I'm a bit confused, or not able to think about it all in mind.</p> <p>That said; I do create a rough plan on paper with classes/function/objects and other mumbo-jumbo required for my solution, with a short(long enough) note to describe what each of the entity has to do.</p> <p>The above can be an iterative process. Putting more details as required. In plan or in the algo/pseudo-code.</p> http://stackoverflow.com/questions/460613/ifdef-in-switch-statement-bug/460658#460658 0 Answer by xk0der for #ifdef in switch statement bug? xk0der 2009-01-20T09:57:51Z 2009-01-20T10:05:57Z <p>Others have already specified how to check if a macro is defined or not. </p> <p>If the macro is being defined by your build system, a good way to find it out would be; to pipe the build output to grep (or similar text searching tool) to search for macro definition (something like: <code>make | grep "-DSOMEMACRO"</code>). </p> <p>If you don't have grep on your system; redirect the build output to a file and open it in your text editor, to inspect manually using text search.)</p> http://stackoverflow.com/questions/412360/programming-language-choice-longevity-and-community/412457#412457 3 Answer by xk0der for Programming Language Choice - Longevity and Community xk0der 2009-01-05T07:00:32Z 2009-01-05T07:07:02Z <p><strong>PHP</strong><br /> PHP is a nice language, provided you know about the evils it hides in some of it corners. I say evil because it is very easy to write insecure or bad code in general if you are new to PHP. That said, if you spend some time learning the language it is very powerful and allows for speedy development. It's C/C++ like syntax will also help if your team has had previous experience in languages with similar syntax. Even JavaScript counts, which I'm sure your team has tons of experience with, so picking up PHP should be quite easy.</p> <p>PHP provides quite a few frameworks to choose from, I haven't used much of any so a quick google search OR this site might help <a href="http://www.phpframeworks.com/" rel="nofollow">http://www.phpframeworks.com/</a></p> <p>PHP as gazzilions of resources online, <a href="http://php.net/" rel="nofollow">php.net</a> the official site is quite good and has comprehensive documentation and function reference. While referring to the documentation there do checkout the comments on the pages as well. They provide quite good insight at times.</p> <p>PHP has been around for quite some time, so getting developers should be pretty easy. But I should caution you here, there are lot of PHP developers but few (or at least not that much) that are good. By good, I mean who not only know how to code in PHP, but know how to write good and secure code in PHP.</p> <p><strong>Python</strong><br /> Coming to python, it is one of the easiest language to pick and has all you want from a modern scripting language. Don't let the mandatory whitespace requirement scare you, it comes naturally when you start coding.</p> <p>At our place we are using Python with DJango framework. DJango is a very comprehensive MVC style framework. It is power-packed with lot's of features to help you implement common web-related stuff very quickly.</p> <p>Python also has lots of libraries pre-built (downloadable) for most of the things you can think of. So that helps a lot to quickly churn out solutions.</p> <p>Python community is very friendly and you will find adequate online resources. DJango too has good enough documentation and resources. But not as much as PHP I guess.(?)</p> <p>I'm not sure about your location, but finding people with experience of python might be difficult, it will even be more difficult to find one with experience in Django. (At least this is the problem that we faced.) This site might help <a href="http://djangopeople.net/" rel="nofollow">DJangoPeople.net</a>.</p> <p><strong>Ruby</strong><br /> No Idea :) Just toyed with it, that's it.</p> <p>I hope this helped.</p> http://stackoverflow.com/questions/391041/does-flash-support-mp3-audio-format-natively 1 Does flash support MP3 audio format natively? xk0der 2008-12-24T08:51:47Z 2008-12-25T10:25:02Z <p>I was of the idea that flash (more specifically Adobe's flash player browser plugin) probably uses some installed MP3 codecs (on the client machine) using OS APIs. I heard someone say that Flash supports MP3 natively. is that true?</p> <p>I guess flash has it's own video and audio format. (FLV and something similar for audio).</p> <p>This question can also be phrased as "Which audio/video formats does flash (plugin) support natively".</p> <p><em>Thank you.</em></p> http://stackoverflow.com/questions/353670/open-source-ides-with-git-support/374847#374847 1 Answer by xk0der for Open-source IDE's with Git support xk0der 2008-12-17T15:14:31Z 2008-12-17T15:14:31Z <p>I use Vim with <a href="http://www.vim.org/scripts/script.php?script_id=90" rel="nofollow">vcscommand</a> plugin. Although the plugin supports a host of Version Control Systems, I use it specifically for Git.</p> <p>Using VCSCommand, you can (almost) accomplish all the major features exposed by git right from within the vim. </p> <p>VCSVimDiff command is one of the best features of VCSCommand plugin. You can view a colored diff right from inside Vim!</p> <p>What more Vim and VCSCommand both are open source :)</p> <p><strong>Side Note:</strong><br /> *Vim along with NERD_Tree.vim, xml.vim, surround.vim and few other plugins, makes it a complete IDE that works pretty good (at least for me) with git. Search vim.org (or Google!!) for plugins that suits your requirement or taste.*</p> http://stackoverflow.com/questions/345924/tell-me-again-why-we-need-both-net-and-windows-why-cant-windows-morph-into-the/346149#346149 0 Answer by xk0der for Tell me again why we need both .NET and Windows? Why can't Windows morph into the CLR? xk0der 2008-12-06T09:59:13Z 2008-12-06T15:01:05Z <p>CLR or some VM maybe used (VM's are being used) to run an OS on top of it . But then the question is, what should one use to build the VM? Probably C/C++ or some other similar language and (most) probably Assembly in some cases to speed up things.</p> <p>That would mean the VM will still have the problems that Windows (or any OS) faces now. As pointed out by others, some part of the OS and related applications may be ported (or as you said morphed) to be over the VM, but getting the entire OS on top of a VM dosen't serve much purpose. The reason being, the VM will be the real OS then, implementing garbage collection and other protective measures for the Morphed OS.</p> <p>Those are my two cents. :)</p> http://stackoverflow.com/questions/1807827/using-post-array-from-paypal/1807895#1807895 Comment by xk0der on Using post array from paypal xk0der 2009-11-27T11:46:51Z 2009-11-27T11:46:51Z I've re-written my answer, as the question has changed a lot from it's original. :) http://stackoverflow.com/questions/1807827/using-post-array-from-paypal/1807895#1807895 Comment by xk0der on Using post array from paypal xk0der 2009-11-27T10:32:47Z 2009-11-27T10:32:47Z @andrew: Oh! In that case as Paul Dixon suggested, Variable variables are your friends. http://stackoverflow.com/questions/1117967/what-does-mean Comment by xk0der on What does "===" mean? xk0der 2009-07-13T07:05:25Z 2009-07-13T07:05:25Z @TomatoSandwich: What about this - <a href="http://www.google.com/search?q=three+equal+signs+php" rel="nofollow">google.com/search?q=three+equal+signs+php/&hellip;</a> =) http://stackoverflow.com/questions/1033434/how-to-write-my-own-proxy-anonymizer-and-host-it-to-help-when-websites-are-block/1033459#1033459 Comment by xk0der on How to write my own proxy, anonymizer and host it to help when websites are blocked at work xk0der 2009-06-23T16:06:44Z 2009-06-23T16:06:44Z @m3ntat: &quot;data package&quot; ... that allows you to use your phone as a modem for your lappy. http://stackoverflow.com/questions/1016759/reverse-knapsack-problem Comment by xk0der on Reverse Knapsack problem xk0der 2009-06-19T07:38:25Z 2009-06-19T07:38:25Z Mail you? ... wtf! http://stackoverflow.com/questions/949883/trac-code-review-plugin/999416#999416 Comment by xk0der on Trac: code review plugin xk0der 2009-06-16T09:33:14Z 2009-06-16T09:33:14Z Thanks for your answer :) I'll have a look at ReviewBoard. http://stackoverflow.com/questions/949883/trac-code-review-plugin/972630#972630 Comment by xk0der on Trac: code review plugin xk0der 2009-06-10T05:55:38Z 2009-06-10T05:55:38Z Thanks for the information Eric :) http://stackoverflow.com/questions/951347/comparing-files-on-the-unix-command-line/951422#951422 Comment by xk0der on Comparing files on the unix command line.. xk0der 2009-06-04T16:07:28Z 2009-06-04T16:07:28Z +1: nice one! Maybe you can add a line about how to test for exist status 'echo $?' or something :) http://stackoverflow.com/questions/746353/javascript-flip-counter/746370#746370 Comment by xk0der on Javascript Flip Counter xk0der 2009-04-14T14:08:16Z 2009-04-14T14:08:16Z @Tim : ... :) made me laugh ... thanks! :) http://stackoverflow.com/questions/724261/unions-in-c/724270#724270 Comment by xk0der on Unions in C xk0der 2009-04-07T06:15:44Z 2009-04-07T06:15:44Z If the code above is executed, only the last case &quot;usingInt&quot; gets executed always. Putting the switch case block in some function and calling this function, after every assignment to union members, would be better for explanation purpose. IMO :) http://stackoverflow.com/questions/720656/sqlite-and-javascript-checking-for-existence-of-data-before-inserting-or-lettin/720693#720693 Comment by xk0der on SQLite and Javascript : Checking for existence of data before inserting OR letting SQLite throw an exception. xk0der 2009-04-06T10:43:52Z 2009-04-06T10:43:52Z +1 : Thanks for the pointers about conflict clauses ... :) http://stackoverflow.com/questions/701078/how-can-i-enter-a-password-using-perl-and-replace-the-characters-with/701234#701234 Comment by xk0der on How can I enter a password using Perl and replace the characters with '*'? xk0der 2009-03-31T15:40:55Z 2009-03-31T15:40:55Z @Manni - Cool! :) .. now fixing my own typo ... 3th = 3rd :D http://stackoverflow.com/questions/701078/how-can-i-enter-a-password-using-perl-and-replace-the-characters-with/701234#701234 Comment by xk0der on How can I enter a password using Perl and replace the characters with '*'? xk0der 2009-03-31T14:43:34Z 2009-03-31T14:43:34Z +1: Typo: 3th Line - non-bloging = non-blocking! .... cheers! ... I don't have enough reps to edit the post! :) requesting author/someone to modify it. http://stackoverflow.com/questions/661387/recommends-bug-tracking-system/661392#661392 Comment by xk0der on Recommends bug tracking system xk0der 2009-03-19T08:41:43Z 2009-03-19T08:41:43Z @shoosh : Umm ... I beg to differ, I find Trac's interface <i>MUCH</i> better than BugZilla's. Trac's interface is very clean and slick and most of the common tasks are available directly from the home page. Can you mention any usability issues you faced? http://stackoverflow.com/questions/653209/will-dos-ever-die/653221#653221 Comment by xk0der on Will DOS ever die? xk0der 2009-03-17T13:56:12Z 2009-03-17T13:56:12Z +1 : For loving command line! :P