User Niyaz - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T01:57:58Zhttp://stackoverflow.com/feeds/user/184http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design23Are Foreign Keys really necessary in a database design?Niyaz2008-08-20T20:18:08Z2009-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-notepad31What are the best alternatives to notepad?Niyaz2008-08-29T09:07:05Z2009-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-browser18Is there some way to PUSH data from web server to browser?Niyaz2008-08-21T14:04:55Z2009-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-across11What are the best programming puzzles you came across?Niyaz2008-09-18T07:29:13Z2009-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-numbers7Most efficient code for the first 10000 prime numbers?Niyaz2008-08-03T05:45:21Z2009-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 >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-scripting3What tools and languages are available for windows shell scripting?Niyaz2008-08-28T12:32:43Z2009-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-technology1Compatibility of Comet with current technologyNiyaz2009-02-07T09:57:13Z2009-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-out1SVN commit fails beacuse I did not check out.Niyaz2009-10-31T20:58:59Z2009-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-html2How to highlight source code in HTML?Niyaz2008-09-16T07:48:51Z2009-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-name1Use of wildcards in mysql table nameNiyaz2009-10-23T10:05:07Z2009-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#161172210Answer by Niyaz for PHP Error: Function name must be a string.Niyaz2009-10-23T06:42:20Z2009-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#16117000Answer by Niyaz for Need CSS sidebar height to expand with content.Niyaz2009-10-23T06:35:06Z2009-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-cost7Should Tables be avoided in HTML at any cost?Niyaz2008-09-17T12:09:46Z2009-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-databases1Does Adobe Flash support databases?Niyaz2008-09-02T01:15:47Z2009-10-19T15:11:35Z
<p>Which databases does Adobe Flash support, if any?</p>
http://stackoverflow.com/questions/13786/should-we-support-ie6-anymore7Should we support IE6 anymore?Niyaz2008-08-17T18:15:14Z2009-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-application6What exactly consists of 'Business Logic' in an application?Niyaz2008-09-02T11:40:00Z2009-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#5004813Answer by Niyaz for What are some good resources for programming Artificial Intelligence?Niyaz2009-02-01T09:23:09Z2009-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-multithreading4Why doesn't JavaScript support multithreading?Niyaz2008-09-02T16:03:23Z2009-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-value2What is the simplest SQL Query to find the second largest value?Niyaz2008-08-28T12:39:53Z2009-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-puzzles7Any recommended websites for SQL puzzles?Niyaz2009-02-15T08:53:21Z2009-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-application5How do I receive email and process it in a web applicationNiyaz2009-06-08T14:33:07Z2009-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-webpage0How to handle all the events in a webpageNiyaz2009-08-30T10:44:28Z2009-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-webpage1How to display "12 minutes ago" etc in a PHP webpage?Niyaz2008-08-20T19:59:57Z2009-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-developers18What does Google Chrome mean to web developers?Niyaz2008-09-02T15:12:55Z2009-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#62307223Answer by Niyaz for Why was Google's Chrome browser written almost entirely in C++ and not C# or Java?Niyaz2009-03-08T04:58:02Z2009-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-bottlenecks4How to test java application for performance bottlenecks?Niyaz2008-09-01T13:22:19Z2009-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-1Answer by Niyaz for recursion: cut array of integers in two parts of equal sum - in a single passNiyaz2009-07-15T17:32:33Z2009-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 && s1==s2)
return i;
else if(i==j && s1!=s2)
return -1;
else if(s1>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-program2How to get whois information of a domain name in my program?Niyaz2008-09-10T08:27:45Z2009-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-threads5JavaScript and ThreadsNiyaz2008-08-27T13:09:10Z2009-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-languages2Windows API and .net languagesNiyaz2009-02-07T20:20:46Z2009-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-tableComment by Niyaz on How do I retrieve every Nth record from a table?Niyaz2009-11-07T09:13:44Z2009-11-07T09:13:44ZWhat are you trying to do?http://stackoverflow.com/questions/1686858/how-to-get-the-plane-out-of-a-arbitrary-collection-of-points/1686883#1686883Comment by Niyaz on How to get the plane out of a arbitrary collection of points?Niyaz2009-11-06T11:22:35Z2009-11-06T11:22:35ZOf course the three points should be non-linear.http://stackoverflow.com/questions/1655620/svn-commit-fails-beacuse-i-did-not-check-out/1655657#1655657Comment by Niyaz on SVN commit fails beacuse I did not check out.Niyaz2009-10-31T21:28:44Z2009-10-31T21:28:44ZWow. 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-outComment by Niyaz on SVN commit fails beacuse I did not check out.Niyaz2009-10-31T21:09:30Z2009-10-31T21:09:30ZI thought the error was "svn: '/home/name/folder' is not a working copy". You need something else?
http://stackoverflow.com/questions/1353616/how-to-handle-all-the-events-in-a-webpage/1353622#1353622Comment by Niyaz on How to handle all the events in a webpageNiyaz2009-08-30T10:52:44Z2009-08-30T10:52:44ZI 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#971886Comment by Niyaz on How do I receive email and process it in a web applicationNiyaz2009-06-12T04:03:10Z2009-06-12T04:03:10ZThanks for the help Shoan!http://stackoverflow.com/questions/917239/where-can-i-find-an-alternative-for-yahoo-pipesComment by Niyaz on Where can I find an alternative for Yahoo Pipes?Niyaz2009-05-27T18:22:44Z2009-05-27T18:22:44ZThis is not programming related either.http://stackoverflow.com/questions/893571/why-does-my-ajax-validation-code-not-work-properly/893589#893589Comment by Niyaz on Why does my AJAX validation code not work properly?Niyaz2009-05-21T16:58:04Z2009-05-21T16:58:04ZI think you should have written this as a comment.http://stackoverflow.com/questions/871947/am-i-going-to-like-working-in-itComment by Niyaz on Am I going to like working in IT?Niyaz2009-05-16T08:08:48Z2009-05-16T08:08:48Z80% 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-woComment 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 neededNiyaz2009-05-16T07:28:45Z2009-05-16T07:28:45Z"but they just won't accept it". 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-woComment 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 neededNiyaz2009-05-16T07:26:15Z2009-05-16T07:26:15ZWhy don't they accept your claims? Is there some reason?http://stackoverflow.com/questions/549/the-definitive-guide-to-website-authentication-beta/477578#477578Comment by Niyaz on The Definitive Guide To Website Authentication (beta)Niyaz2009-05-13T17:31:05Z2009-05-13T17:31:05ZWhy 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#842861Comment by Niyaz on Is there any Java API available to compare two microsoft word documents?Niyaz2009-05-09T08:17:07Z2009-05-09T08:17:07ZI 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-thisComment by Niyaz on how to do thisNiyaz2009-05-09T07:36:43Z2009-05-09T07:36:43ZSome 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-awayComment by Niyaz on How do you prevent javascript page from navigating away?Niyaz2009-05-04T17:22:54Z2009-05-04T17:22:54ZWhat makes this page navigate away?