User Niyaz - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T01:57:58Z http://stackoverflow.com/feeds/user/184 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design 23 Are Foreign Keys really necessary in a database design? Niyaz 2008-08-20T20:18:08Z 2009-12-01T23:22:28Z <p>As far as I know, foreign keys are used to aid the programmer to manipulate data in the correct way. Suppose a programmer is actually doing this in the right manner already, then do we really need the concept of foreign keys?</p> <p>Are there any other uses for foreign keys? Am I missing something here?</p> http://stackoverflow.com/questions/34215/what-are-the-best-alternatives-to-notepad 31 What are the best alternatives to notepad? Niyaz 2008-08-29T09:07:05Z 2009-11-29T07:01:23Z <p>I would like to get syntax highlighting support for major languages. Other desired properties are:</p> <ol> <li>Simple to use</li> <li>Light weight</li> </ol> http://stackoverflow.com/questions/19995/is-there-some-way-to-push-data-from-web-server-to-browser 18 Is there some way to PUSH data from web server to browser? Niyaz 2008-08-21T14:04:55Z 2009-11-27T15:59:04Z <p>Of course I am aware of Ajax, but the problem with Ajax is that the browser should poll the server frequently to find whether there is new data. This increases server load.</p> <p>Is there any better method (even using Ajax) other than polling the server frequently?</p> http://stackoverflow.com/questions/90715/what-are-the-best-programming-puzzles-you-came-across 11 What are the best programming puzzles you came across? Niyaz 2008-09-18T07:29:13Z 2009-11-22T08:32:58Z <p>Every single programmer worth his salt is inspired by great programming puzzles. Some puzzles are intended to sharpen your analytical abilities while some others make your programming abilities better.</p> <p>Programming puzzles are the soul of infotainment in the programming community.</p> <p>What are your favorite programming puzzles?</p> <p><em>For the validity of this question, you may want to check out: <a href="http://stackoverflow.com/questions/34257/posting-programmingalgorithmic-puzzles-on-so">Posting programming/algorithmic puzzles on SO</a></em></p> <h3>EDIT (From Rob Cooper - NOT OP)</h3> <blockquote> <p><strong>Can we please not have lots of links for "Project Euler" and the like, post the "ACTUAL" puzzles that you find difficult/good - Please get <em>CONTENT</em> on StackOverflow, not just links.</strong></p> </blockquote> http://stackoverflow.com/questions/622/most-efficient-code-for-the-first-10000-prime-numbers 7 Most efficient code for the first 10000 prime numbers? Niyaz 2008-08-03T05:45:21Z 2009-11-21T17:00:48Z <p>I want to print the first 10000 prime numbers. Can anyone give me the most efficient code for this? Clarifications:</p> <ol> <li>It does not matter if your code is inefficient for n &gt;10000.</li> <li>The size of the code does not matter.</li> <li>You cannot just hard code the values in any manner.</li> </ol> http://stackoverflow.com/questions/32087/what-tools-and-languages-are-available-for-windows-shell-scripting 3 What tools and languages are available for windows shell scripting? Niyaz 2008-08-28T12:32:43Z 2009-11-20T14:38:19Z <p>I want to know what are the options to do some scripting jobs in windows platform. I need functionality like file manipulations, registry editing etc. Can files be edited using scripting tools? What other functionality does windows scripting tools offer? Can everything that can be done using the Windows GUI be done using a scripting language?</p> http://stackoverflow.com/questions/523546/compatibility-of-comet-with-current-technology 1 Compatibility of Comet with current technology Niyaz 2009-02-07T09:57:13Z 2009-11-14T22:00:28Z <p>I hear that I can use <a href="http://en.wikipedia.org/wiki/Comet_(programming)" rel="nofollow">Comet</a> as a server push technology along with my Ajax code to increase the performance of my web applications.</p> <p>How mature this Comet technology?</p> <p>Is it supported by all web servers, programming languages and browsers?</p> <p>What are the disadvantages of using Comet?</p> http://stackoverflow.com/questions/1655620/svn-commit-fails-beacuse-i-did-not-check-out 1 SVN commit fails beacuse I did not check out. Niyaz 2009-10-31T20:58:59Z 2009-11-01T01:20:34Z <p>I have some source code and I imported it into SVN. I forgot to update or check out it and made some changes to the files.</p> <p>Now (understandably) SVN does not allow me to commit these changes. It says:</p> <blockquote> <p>svn: '/home/name/folder' is not a working copy</p> </blockquote> <p>What can I do now to commit these changes?</p> http://stackoverflow.com/questions/70169/how-to-highlight-source-code-in-html 2 How to highlight source code in HTML? Niyaz 2008-09-16T07:48:51Z 2009-10-24T16:04:33Z <p>I want to highlight C/C++/Java/C# etc source codes in my website.</p> <p>How can I do this? Is there a library I can use?</p> <p>Is it a CPU intensive job to highlight the source code?</p> http://stackoverflow.com/questions/1612494/use-of-wildcards-in-mysql-table-name 1 Use of wildcards in mysql table name Niyaz 2009-10-23T10:05:07Z 2009-10-23T10:16:17Z <p>The table names in my mysql database are dynamically generated. Is there some way to select data from tables which have a name matching a pattern? I guess it will look like:</p> <pre><code>select * from 'table_id_%' </code></pre> http://stackoverflow.com/questions/1611709/php-error-function-name-must-be-a-string/1611722#1611722 10 Answer by Niyaz for PHP Error: Function name must be a string. Niyaz 2009-10-23T06:42:20Z 2009-10-23T06:42:20Z <p>It should be <code>$_COOKIE['name']</code>, not <code>$_COOKIE('name')</code></p> <p>$_COOKIE is an array, not a function.</p> http://stackoverflow.com/questions/1610710/need-css-sidebar-height-to-expand-with-content/1611700#1611700 0 Answer by Niyaz for Need CSS sidebar height to expand with content. Niyaz 2009-10-23T06:35:06Z 2009-10-23T06:35:06Z <p>I have been haunted by this problem for a while and I wrote an article about this issue: <a href="http://www.diovo.com/2009/08/done-with-faux-columns/" rel="nofollow">Done with faux columns</a>. Here is what I argued:</p> <blockquote> <p>JavaScript based solution for this problem is not worse than any other solution. In fact if you are using JavaScript, you may save a few hours of frustration of trying to get things working. People will warn you against this by saying “What will happen if the user turned off JavaScript?“. Believe me, if the user has turned off JavaScript, most of the web is broken for him anyway. Your sidebar does not matter to him.</p> </blockquote> <p>As cballou mentioned, the simplest way to do this thing is to use JQuery code:</p> <pre><code>$(".sidebar").height(Math.max($(".content").height(),$(".sidebar").height())); </code></pre> http://stackoverflow.com/questions/82391/should-tables-be-avoided-in-html-at-any-cost 7 Should Tables be avoided in HTML at any cost? Niyaz 2008-09-17T12:09:46Z 2009-10-21T16:57:05Z <p>It is advisable to use tables in HTML pages (now that we have CSS)?</p> <p>What are the applications of tables? What features/abilities does tables have that are not in CSS?</p> <h1>Related Questions</h1> <ul> <li><a href="http://stackoverflow.com/questions/30251/tables-instead-of-divs">Tables instead of DIVs</a></li> <li><a href="http://stackoverflow.com/questions/83073/div-vs-table">DIV vs TABLE</a> <ul> <li><a href="http://stackoverflow.com/questions/96137/divs-vs-tables-a-rebuttal-please">DIVs vs. TABLEs a rebuttal please</a></li> </ul></li> </ul> http://stackoverflow.com/questions/38674/does-adobe-flash-support-databases 1 Does Adobe Flash support databases? Niyaz 2008-09-02T01:15:47Z 2009-10-19T15:11:35Z <p>Which databases does Adobe Flash support, if any?</p> http://stackoverflow.com/questions/13786/should-we-support-ie6-anymore 7 Should we support IE6 anymore? Niyaz 2008-08-17T18:15:14Z 2009-10-03T06:12:10Z <p>Are we supposed to find workarounds in our web applications so that they will work in every situation? Is it time to do away with IE6 programming?</p> http://stackoverflow.com/questions/39288/what-exactly-consists-of-business-logic-in-an-application 6 What exactly consists of 'Business Logic' in an application? Niyaz 2008-09-02T11:40:00Z 2009-09-17T20:30:49Z <p>I have heard umpteen times that we 'should not mix business logic with other code' or statements like that. I think every single code I write (processing steps I mean) consists of logic that is related to the business requirements..</p> <p>Can anyone tell me what exactly consists of business logic? How can it be distinguished from other code? Is there some simple test to determine what is business logic and what is not?</p> http://stackoverflow.com/questions/238277/what-are-some-good-resources-for-programming-artificial-intelligence/500481#500481 3 Answer by Niyaz for What are some good resources for programming Artificial Intelligence? Niyaz 2009-02-01T09:23:09Z 2009-09-17T08:17:13Z <p>How to set up a Neural Network for Handwriting/Character Recognition using Back-Propagation Algorithm - <a href="http://www.hoozi.com/post/qo0eh/character-recognition-using-neural-networks" rel="nofollow">Article with source code</a></p> http://stackoverflow.com/questions/39879/why-doesnt-javascript-support-multithreading 4 Why doesn't JavaScript support multithreading? Niyaz 2008-09-02T16:03:23Z 2009-09-16T10:05:53Z <p>Is it a deliberate design decision or a problem with our current day browsers which will be rectified in the coming versions?</p> http://stackoverflow.com/questions/32100/what-is-the-simplest-sql-query-to-find-the-second-largest-value 2 What is the simplest SQL Query to find the second largest value? Niyaz 2008-08-28T12:39:53Z 2009-09-16T00:18:50Z <p>What is the simplest SQL query to find the second largest integer value in a specific column? Of course there may be duplicate values in the column.</p> http://stackoverflow.com/questions/550545/any-recommended-websites-for-sql-puzzles 7 Any recommended websites for SQL puzzles? Niyaz 2009-02-15T08:53:21Z 2009-09-10T20:16:22Z <p>Is there any website that contains <strong>SQL puzzles</strong>, tips/tricks etc?</p> <p>Any version of SQL (Oracle, MSSQL etc) will do. Just want to solve some general SQL puzzles and want to learn more about SQL.</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/965178/how-do-i-receive-email-and-process-it-in-a-web-application 5 How do I receive email and process it in a web application Niyaz 2009-06-08T14:33:07Z 2009-09-03T09:29:26Z <p>I have set up an email id my PHP web application. Users will send emails to this id.</p> <p>I want to process these emails in the application. Ho do I go about doing this?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1353616/how-to-handle-all-the-events-in-a-webpage 0 How to handle all the events in a webpage Niyaz 2009-08-30T10:44:28Z 2009-08-30T10:56:34Z <p>I want to get notified about all the events happening in a webpage.</p> <p>For each single event I am using something like this:</p> <pre><code>if(document.addEventListener){ document.addEventListener('click', function(e) { something(e) } , true); }else{ if(document.attachEvent){ document.attachEvent('onclick', function(e) { something(e) }); } } </code></pre> <p>Is there a simple cross-browser way to get notified about all the events in a webpage instead of listening to each event separately(without using jQuery)?</p> http://stackoverflow.com/questions/18685/how-to-display-12-minutes-ago-etc-in-a-php-webpage 1 How to display "12 minutes ago" etc in a PHP webpage? Niyaz 2008-08-20T19:59:57Z 2009-08-23T20:28:34Z <p>Can anyone tell me how I can display a status message like "12 seconds ago" or "5 minutes ago" etc in a web page?</p> http://stackoverflow.com/questions/39758/what-does-google-chrome-mean-to-web-developers 18 What does Google Chrome mean to web developers? Niyaz 2008-09-02T15:12:55Z 2009-08-22T04:27:05Z <p>From a web developer point of view, what changes are expected in the development arena when Google Chrome is released?</p> <p>Are the developments powerful enough to make another revolution in the web? Will the way we see web programming change?</p> <p>Or is it just another web browser?</p> http://stackoverflow.com/questions/623062/why-was-googles-chrome-browser-written-almost-entirely-in-c-and-not-c-or-java/623072#623072 23 Answer by Niyaz for Why was Google's Chrome browser written almost entirely in C++ and not C# or Java? Niyaz 2009-03-08T04:58:02Z 2009-08-03T11:33:58Z <p>Performance.</p> <p>Java or .NET runtime need to start up and the programs are interpreted by the runtime. This decreases performance.</p> http://stackoverflow.com/questions/37929/how-to-test-java-application-for-performance-bottlenecks 4 How to test java application for performance bottlenecks? Niyaz 2008-09-01T13:22:19Z 2009-07-29T11:21:53Z <p>I am reviewing a big java application to see if there are any performance bottlenecks. The real problem is that I cannot pinpoint the performance issues to any single module. The whole application is slow as such.</p> <p>Is there some tool/technique I can use to help me out in this?</p> http://stackoverflow.com/questions/1132350/recursion-cut-array-of-integers-in-two-parts-of-equal-sum-in-a-single-pass/1132799#1132799 -1 Answer by Niyaz for recursion: cut array of integers in two parts of equal sum - in a single pass Niyaz 2009-07-15T17:32:33Z 2009-07-15T17:42:57Z <p>Code in C/C++/Java:</p> <pre><code>function cut(int i, int j, int s1, int s2, int a[]) { if(i==j &amp;&amp; s1==s2) return i; else if(i==j &amp;&amp; s1!=s2) return -1; else if(s1&gt;s2) return cut(i, j-1, s1, s2 + a[j-1]); else return cut(i+1, j, s1 + a[i+1], s2); } </code></pre> <p>Call using the following syntax:</p> <pre><code>cut(0, array.length, 0, 0, array); </code></pre> http://stackoverflow.com/questions/53623/how-to-get-whois-information-of-a-domain-name-in-my-program 2 How to get whois information of a domain name in my program? Niyaz 2008-09-10T08:27:45Z 2009-07-01T06:37:04Z <p>I want to get whois information of a domain name from my c#/java programs. Is there a simple way to do this? </p> http://stackoverflow.com/questions/30036/javascript-and-threads 5 JavaScript and Threads Niyaz 2008-08-27T13:09:10Z 2009-06-26T11:59:07Z <p>Is there some way to do multi-threading in JavaScript?</p> http://stackoverflow.com/questions/524503/windows-api-and-net-languages 2 Windows API and .net languages Niyaz 2009-02-07T20:20:46Z 2009-06-21T22:00:58Z <p>People always advised me that if I am doing some application that should use some Windows APIs to do any process level job, I must use VC++ and not any other .net language.</p> <p>Is there any truth in that?</p> <p>Can everything that can be done using VC++ be done in other .net languages also?</p> <p>Are all the .net languages the same when their capabilities are compared?</p> http://stackoverflow.com/questions/1692509/how-do-i-retrieve-every-nth-record-from-a-table Comment by Niyaz on How do I retrieve every Nth record from a table? Niyaz 2009-11-07T09:13:44Z 2009-11-07T09:13:44Z What are you trying to do? http://stackoverflow.com/questions/1686858/how-to-get-the-plane-out-of-a-arbitrary-collection-of-points/1686883#1686883 Comment by Niyaz on How to get the plane out of a arbitrary collection of points? Niyaz 2009-11-06T11:22:35Z 2009-11-06T11:22:35Z Of course the three points should be non-linear. http://stackoverflow.com/questions/1655620/svn-commit-fails-beacuse-i-did-not-check-out/1655657#1655657 Comment by Niyaz on SVN commit fails beacuse I did not check out. Niyaz 2009-10-31T21:28:44Z 2009-10-31T21:28:44Z Wow. That is exactly what happened. I am not going to try this tonight. It is 3 am already. Will try it tomorrow, but I have a feeling that this will work. Thanks! http://stackoverflow.com/questions/1655620/svn-commit-fails-beacuse-i-did-not-check-out Comment by Niyaz on SVN commit fails beacuse I did not check out. Niyaz 2009-10-31T21:09:30Z 2009-10-31T21:09:30Z I thought the error was &quot;svn: '/home/name/folder' is not a working copy&quot;. You need something else? http://stackoverflow.com/questions/1353616/how-to-handle-all-the-events-in-a-webpage/1353622#1353622 Comment by Niyaz on How to handle all the events in a webpage Niyaz 2009-08-30T10:52:44Z 2009-08-30T10:52:44Z I DO want to get all the events. I will handle those issues by myself. http://stackoverflow.com/questions/965178/how-do-i-receive-email-and-process-it-in-a-web-application/971886#971886 Comment by Niyaz on How do I receive email and process it in a web application Niyaz 2009-06-12T04:03:10Z 2009-06-12T04:03:10Z Thanks for the help Shoan! http://stackoverflow.com/questions/917239/where-can-i-find-an-alternative-for-yahoo-pipes Comment by Niyaz on Where can I find an alternative for Yahoo Pipes? Niyaz 2009-05-27T18:22:44Z 2009-05-27T18:22:44Z This is not programming related either. http://stackoverflow.com/questions/893571/why-does-my-ajax-validation-code-not-work-properly/893589#893589 Comment by Niyaz on Why does my AJAX validation code not work properly? Niyaz 2009-05-21T16:58:04Z 2009-05-21T16:58:04Z I think you should have written this as a comment. http://stackoverflow.com/questions/871947/am-i-going-to-like-working-in-it Comment by Niyaz on Am I going to like working in IT? Niyaz 2009-05-16T08:08:48Z 2009-05-16T08:08:48Z 80% of the software industry is like what you just described - People are clueless. If you think you do not belong there, there is a good news for you. Look for the other 20% companies that do interesting stuff and recruit awesome people. Since you know what you want, don't compromise for anything else. http://stackoverflow.com/questions/871889/some-students-asked-me-why-do-we-need-to-have-loop-in-a-program-and-they-just-wo Comment by Niyaz on some students asked me why do we need to have loop in a program, and they just won't accept that it is needed Niyaz 2009-05-16T07:28:45Z 2009-05-16T07:28:45Z &quot;but they just won't accept it&quot;. That is a very good strategy for not losing in a argument. Just don't accept whatever the other side tells you. http://stackoverflow.com/questions/871889/some-students-asked-me-why-do-we-need-to-have-loop-in-a-program-and-they-just-wo Comment by Niyaz on some students asked me why do we need to have loop in a program, and they just won't accept that it is needed Niyaz 2009-05-16T07:26:15Z 2009-05-16T07:26:15Z Why don't they accept your claims? Is there some reason? http://stackoverflow.com/questions/549/the-definitive-guide-to-website-authentication-beta/477578#477578 Comment by Niyaz on The Definitive Guide To Website Authentication (beta) Niyaz 2009-05-13T17:31:05Z 2009-05-13T17:31:05Z Why is this post broken into parts? Why not combine it to form a single piece? http://stackoverflow.com/questions/842854/is-there-any-java-api-available-to-compare-two-microsoft-word-documents/842861#842861 Comment by Niyaz on Is there any Java API available to compare two microsoft word documents? Niyaz 2009-05-09T08:17:07Z 2009-05-09T08:17:07Z I think you will have to use some other library for comparing the contents. So [A library for reading DOC files + a library for content comparison] will do the work for you. http://stackoverflow.com/questions/842818/how-to-do-this Comment by Niyaz on how to do this Niyaz 2009-05-09T07:36:43Z 2009-05-09T07:36:43Z Some people don't know that whatever they post will show up in the front page. They just try out the functionality by posting sample content thinking that nobody will notice. :) http://stackoverflow.com/questions/821011/how-do-you-prevent-javascript-page-from-navigating-away Comment by Niyaz on How do you prevent javascript page from navigating away? Niyaz 2009-05-04T17:22:54Z 2009-05-04T17:22:54Z What makes this page navigate away?