User harshath.jr - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T16:19:46Zhttp://stackoverflow.com/feeds/user/51332http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1420029/how-to-break-out-of-a-loop-from-inside-a-switch9How to break out of a loop from inside a switch?harshath.jr2009-09-14T06:51:09Z2009-11-12T09:06:38Z
<p>Hi,</p>
<p>I'm writing some code that looks like this:</p>
<pre><code>while(true) {
switch(msg->state) {
case MSGTYPE: // ...
break;
// ... more stuff ...
case DONE:
break; // **HERE, I want to break out of the loop itself**
}
}
</code></pre>
<p>Is there any direct way to do that?</p>
<p>I know I can use a flag, and break from the loop by putting a conditional break just after the switch. I just want to know if C++ has some construct for this already.</p>
<p>Thanks,<br />
jrh</p>
http://stackoverflow.com/questions/1538398/how-do-i-use-qmake-to-build-multiple-binaries-in-a-single-project0How do I use qmake to build multiple binaries in a single project?harshath.jr2009-10-08T15:01:11Z2009-10-09T09:29:43Z
<p>I'm writing a small qt app suite that consists of a set of small programs that work on the same set of files. They are organized like this:</p>
<blockquote>
<pre><code>/
app1/
main.cpp
app2/
main.cpp
app3/
main.cpp
common/
project.h
project.cpp
somemore.h
somemore.cpp
appsuite.pro
</code></pre>
</blockquote>
<p>When I do <code>qmake && make</code>, I want the following binaries to be built:</p>
<ul>
<li>app1/app1</li>
<li>app2/app2</li>
<li>app3/app3</li>
</ul>
<p>How do I write <code>appsuite.pro</code> to work like this?<br />
I have heard something about <code>.pri</code> files, but I could not figure out how to use them in my "situation".</p>
<p>Help appreciated,<br />
jrh</p>
http://stackoverflow.com/questions/1538243/in-jquery-if-you-remove-an-element-will-any-events-on-it-be-removed/1538433#1538433-2Answer by harshath.jr for In jQuery if you remove an element will any events on it be removed?harshath.jr2009-10-08T15:06:53Z2009-10-08T15:06:53Z<p>For the record, you need not worry about memory leaks in javascript. (chill man, not c++!)</p>
<p>The browser's javascript engine manages all objects, and garbage collects them. When I say objects, that means event-handling-functions too, because functions are also objects in javascript.</p>
<p>Unrelated: I love how everything is an object in javascript :D</p>
<p>Cheers!<br />
jrh</p>
http://stackoverflow.com/questions/1485848/java-getter-and-setter-method/1485878#14858782Answer by harshath.jr for Java Getter and Setter Methodharshath.jr2009-09-28T07:44:59Z2009-09-28T07:44:59Z<p>Getter and setter methods are methods that are used to manipulate the value of a single "property" of an object. </p>
<p>Usually, the names of these methods are <code>getProperty()</code> and <code>setProperty(PropertyType value)</code>, where Property is the name of the property which these methods modify/access.</p>
<p>Example</p>
<pre><code>class Person {
private String name; // the property "name"
public String getName(); // getter for the property "name"
public void setName(String newName); // setter for the property "name"
}
</code></pre>
<p>And, "setter" and "getter" are/have now become universally consistent terms in the programming world. As far as I know, they are the technical terms. If they are not, you can still use them without fear of being misunderstood. </p>
<p>Cheers,<br />
jrh</p>
http://stackoverflow.com/questions/1472123/qt-signals-and-slots-threads-app-exec-and-related-queries1Qt signals and slots, threads, app.exec(), and related queriesharshath.jr2009-09-24T14:36:02Z2009-09-24T15:57:37Z
<p>[related to <a href="http://stackoverflow.com/questions/1450500">this question</a>]</p>
<p>I wrote this piece of code to understand how qt signals and slots work. I need someone to explain the behaviour, and to tell me if I'm right about my own conclusions.</p>
<p>My program:</p>
<p><code>connectionhandler.h</code></p>
<pre><code>#ifndef CONNECTIONHANDLER_H
#define CONNECTIONHANDLER_H
#include <QTcpServer>
class ConnectionHandler : public QObject
{
Q_OBJECT
public:
ConnectionHandler();
public slots:
void newConn();
private:
QTcpServer *server;
};
#endif // CONNECTIONHANDLER_H
</code></pre>
<p><code>connectionhandler.cpp</code></p>
<pre><code>#include "connectionhandler.h"
#include <QTextStream>
ConnectionHandler::ConnectionHandler() {
server = new QTcpServer;
server->listen(QHostAddress::LocalHost, 8080);
QObject::connect(server, SIGNAL(newConnection()),this, SLOT(newConn()));
}
void ConnectionHandler::newConn() {
QTextStream out(stdout);
out << "new kanneksan!\n";
out.flush();
}
</code></pre>
<p><code>main.cpp</code></p>
<pre><code>#include <QCoreApplication>
#include "connectionhandler.h"
int main(int argc, char* argv[]) {
QCoreApplication app(argc,argv);
ConnectionHandler handler;
return app.exec();
}
</code></pre>
<p>Now, running this program sends it into an infinite loop looking for new connections.</p>
<p><code>Observation:</code> if I don't call <code>app.exec()</code>, the program returns immediately (as it should).<br />
<code>Question:</code> why?</p>
<p><code>Question:</code> if I had connected the slot as a queued connection, when would the slot invocation be performed?<br />
<code>Question:</code> if <code>app.exec()</code> is an infinite loop of sorts, how does the <code>newConnection()</code> signal ever get emitted?</p>
<p><code>Big Question:</code> Is their any "second thread" involved here? (I expect a no, and a stunningly elegant explanation :) )</p>
<p>Thanks,<br />
jrh</p>
<p>PS: who else has this nested parenthesis syndrome? like "(.. :))" or "(.. (..))"?</p>
http://stackoverflow.com/questions/1450500/how-many-threads-does-qt-create-to-work-in-the-background1How many threads does Qt create to work in the background?harshath.jr2009-09-20T07:18:04Z2009-09-22T07:41:54Z
<p>Hi,</p>
<p>I use qt a lot. I want to know something: how many threads does Qt create do to things in the background? like handling signals and slots.. </p>
<p>Also, any GUI toolkit creates Event threads too (i seem to remember java does). Does Qt create one too?</p>
<p>EDIT: when I say "how many threads", I really mean which threads</p>
<p>Thanks,<br />
jrh</p>
http://stackoverflow.com/questions/1450497/c-argc-and-argv-arguments/1450514#14505143Answer by harshath.jr for C++ `argc` and `argv` argumentsharshath.jr2009-09-20T07:26:54Z2009-09-20T13:30:57Z<p>When you invoke a program, you can supply command line arguments to it. E.g.:</p>
<pre><code>prog-name arg1 arg2
</code></pre>
<p>So if you write a program and want to access command line arguments sent to it, you use <code>argc</code> and <code>argv</code>.</p>
<p>In the previous example, arg1 and arg2 are command line arguments. So,</p>
<pre><code>argc = 3
argv[0] = "prog-name"
argv[1] = "arg1"
argv[2] = "arg2"
</code></pre>
<p>Real life example:</p>
<pre><code>rm -r doc/
</code></pre>
<p>Here,</p>
<pre><code>argc = 3
argv[0] = "rm"
argv[1] = "-r"
argv[2] = "doc/"
</code></pre>
<p>Hope that helps!</p>
http://stackoverflow.com/questions/1450499/how-to-convert-text-to-images-on-the-fly/1450509#14505093Answer by harshath.jr for How to convert text to images on the fly?harshath.jr2009-09-20T07:23:03Z2009-09-20T07:23:03Z<p>Another option: try <a href="http://pecl.php.net/package/imagick" rel="nofollow">imagick</a></p>
http://stackoverflow.com/questions/1422145/c-how-should-i-organize-test-cases-in-my-project0[C++] How should I organize test cases in my project?harshath.jr2009-09-14T15:06:35Z2009-09-14T15:23:46Z
<p>Hi,</p>
<p>I have a project that looks like this:</p>
<pre>
xdc/
hubactions/
hubconnection.cpp
hubconnection.h
uiinterface/
readme
uiconnection.cpp
uiconnection.h
...
uiactions/
readme
connectaction.cpp
connectaction.h
quitaction.cpp
quitaction.h
...
utils/
parser.cpp
parser.h
...
</pre>
<p>Now I want to start testing before the project becomes too big.</p>
<p>So how should I got about organising my tests? I have come up with two options:</p>
<p><strong>Option 1</strong></p>
<pre>
xdc/
hubactions/
hubconnection.cpp
hubconnection.h
uiinterface/
readme
uiconnection.cpp
uiconnection.h
...
uiactions/
readme
connectaction.cpp
connectaction.h
quitaction.cpp
quitaction.h
...
utils/
parser.cpp
parser.h
...
tests/
utils/
parsertest.cpp
uiinterface/
uiconnectiontest.cpp
uiactions/
connectactiontest.cpp
quitactiontest.cpp
hubactions/
fakehubconnection.cpp
fakehubconnection.h
...
</pre>
<p><strong>Option 2</strong></p>
<pre>
xdc/
hubactions/
tests/
fakehubconnection.cpp
fakehubconnection.h
hubconnection.cpp
hubconnection.h
uiinterface/
tests/
uiconnectiontest.cpp
readme
uiconnection.cpp
uiconnection.h
...
uiactions/
tests/
connectactiontest.cpp
quitactiontest.cpp
readme
connectaction.cpp
connectaction.h
quitaction.cpp
quitaction.h
...
utils/
tests/
parsertest.cpp
parser.cpp
parser.h
...
</pre>
<p>Which method is better? Can I do it in a different/better way?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1419519/css-nested-divs-margins-vs-padding/1419542#14195420Answer by harshath.jr for CSS, nested divs & margins vs. paddingharshath.jr2009-09-14T03:17:03Z2009-09-14T03:17:03Z<p>Personally, I'd go with option a of <code>#container {padding: 12px;}</code> because it makes amply clear that <strong>all</strong> child elements must stay 12px away from the border of this div.</p>
<p>If I want other elements to stay more than 12px away from the <code>#container</code>'s border, then I apply as much more margin to that element.</p>
<p>Cheers!</p>
http://stackoverflow.com/questions/1419307/close-windows-or-tabs-on-a-button-click/1419375#14193750Answer by harshath.jr for Close windows or tabs on a button clickharshath.jr2009-09-14T01:50:27Z2009-09-14T01:50:27Z<p>You can use <a href="http://www.javascript-coder.com/window-popup/javascript-window-open.phtml" rel="nofollow">window.open()</a> to create new windows, and to control when to close them.</p>
<p>Example:</p>
<pre><code>function mypopup() {
mywindow = window.open ("http://www.javascript-coder.com",
"mywindow",
"location=1,status=1,scrollbars=1,"+
"width=100,height=100");
mywindow.moveTo(0,0); // move the window to a particular location
// do your stuff ...
mywindow.close(); // close that popup when you are done
}
</code></pre>
<p>As you can see, you can control when you want to close the windows using <a href="http://www.javascript-coder.com/window-popup/javascript-window-close.phtml" rel="nofollow">window.close()</a>.</p>
<p>You can have links open in new tabs simply by using <code>target="_blank"</code> in the link, but you say that you have a form whose submission will cause a new window to be opened. But instead of using a submit button, use a plain button and attach an event handler to it being clicked. When it is clicked, open your window and work your mojo.</p>
<p>Regarding your query about opening tabs instead of windows, I'm not entirely sure it can be done. I can think of a couple of bad ways to do it using server side participation, but I'm pretty sure you are not looking for that. Even using <code>target="_blank"</code> just tells the browser not to open the link in the same page. Its upto the browser to choose a new window or a new tab (mostly, its a new tab).</p>
<p>Cheers!</p>
http://stackoverflow.com/questions/1419310/use-ajax-to-populate-page-after-page-loads-using-jquery/1419339#14193390Answer by harshath.jr for Use AJAX to populate page after page loads using jQueryharshath.jr2009-09-14T01:35:20Z2009-09-14T01:35:20Z<p>Use <a href="http://docs.jquery.com/Ajax/load" rel="nofollow">jQuery.load()</a>.</p>
<p>This will populate the DOM of the target div (any element, as a matter of fact). But if you want to attach special functions to them, you need to do that explicitly after the load is completed (in the callback).</p>
<p>Simple event handlers can bet set to bind themselves automatically to new fetched content using <a href="http://docs.jquery.com/Events/live" rel="nofollow">jQuery.live()</a> (as opposed to usig <a href="http://docs.jquery.com/Events/bind" rel="nofollow">jQuery.bind()</a>)</p>
<p>Cheers!</p>
http://stackoverflow.com/questions/1416839/form-gets-submitted-even-if-javascript-fun-returns-false/1416991#14169910Answer by harshath.jr for Form gets submitted even if JavaScript fun returns falseharshath.jr2009-09-13T06:10:35Z2009-09-13T06:10:35Z<p>alternatively, you make the click handler on the submit button to return false.</p>
http://stackoverflow.com/questions/1416908/how-can-i-populate-a-javascript-array-with-values-from-a-database-using-php/1416977#14169773Answer by harshath.jr for How can I populate a javascript array with values from a database using PHP?harshath.jr2009-09-13T06:02:01Z2009-09-13T06:02:01Z<p>Answer 1: yes, it can be done.</p>
<p>Answer 2: Here's how:</p>
<pre><code>$js_array = "[";
$result = mysql_query("some query of yours");
while( $row=mysql_fetch_array($result, MYSQL_NUM) ) {
$js_array .= $row[0]; // assuming you just want the first field
// of each row in the array
$js_array .= ",";
}
$js_array{ strlen($js_array)-1 } = ']';
echo "var db_array = $js_array ;";
</code></pre>
<p>Cheers!</p>
http://stackoverflow.com/questions/1415609/from-where-can-i-download-gcc-compiler-fpr-windows-i-m-using-vista-os/1415646#14156462Answer by harshath.jr for From where can i download gcc compiler fpr windows?? i m using vista OSharshath.jr2009-09-12T17:23:20Z2009-09-12T17:23:20Z<p>for the beginner, I would suggest <a href="http://www.bloodshed.net/devcpp.html" rel="nofollow">DevCPP</a>.</p>
<p>It comes bundled with the <a href="http://www.mingw.org/" rel="nofollow">mingw compiler</a>.</p>
http://stackoverflow.com/questions/1415606/get-the-value-of-onclick-with-jquery/1415629#14156292Answer by harshath.jr for get the value of "onclick" with jQuery?harshath.jr2009-09-12T17:16:51Z2009-09-12T17:16:51Z<p><code>mkoryak</code> is correct.</p>
<p>But, if events are bound to that DOM node using more modern methods (not using <code>onclick</code>), then this method will fail.</p>
<p>If that is what you really want, check out <a href="http://stackoverflow.com/questions/446892">this question</a>, and its accepted answer.</p>
<p>Cheers!</p>
<p><hr /></p>
<p>I read your question again.<br />
I'd like to tell you this: don't use <code>onclick</code>, <code>onkeypress</code> and the likes to bind events.</p>
<p>Using better methods like <code>addEventListener()</code> will enable you to: </p>
<ol>
<li>Add more than one event handler to a particular event</li>
<li>remove some listeners selectively</li>
</ol>
<p>Instead of actually using <code>addEventListener()</code>, you could use <code>jQuery</code> wrappers like <code>$('selector').click()</code>.</p>
<p>Cheers again!</p>
http://stackoverflow.com/questions/1415520/div-positioning-based-on-view-port/1415604#14156041Answer by harshath.jr for div positioning based on view portharshath.jr2009-09-12T17:07:51Z2009-09-12T17:07:51Z<p>maybe you are looking for CSS <code>{ position: fixed }</code> ?</p>
http://stackoverflow.com/questions/1414692/how-to-avoid-signal-11-segmentation-violation/1414848#14148483Answer by harshath.jr for how to avoid signal 11 (segmentation violation)?harshath.jr2009-09-12T10:46:01Z2009-09-12T10:46:01Z<p>At the risk of getting down-voted, could I sincerely suggest <a href="http://catb.org/~esr/faqs/smart-questions.html" rel="nofollow">this</a>?</p>
<p>Best of everything,<br />
jrh</p>
http://stackoverflow.com/questions/1414713/creating-form-in-javascript-without-html-form/1414837#14148371Answer by harshath.jr for Creating 'form' in javascript without html form.harshath.jr2009-09-12T10:39:27Z2009-09-12T10:39:27Z<p>I think you mean one of the following two things:</p>
<ol>
<li><p>Can I create a <code><form></code> element using javascript?<br />
A: Yes, you can.<br />
Use <a href="http://docs.jquery.com/Manipulation" rel="nofollow">jQuery DOM manipulation functions</a> to do that.</p></li>
<li><p>Can I submit values to a server side script like a <code><form></code> would?<br />
A: Yes, you can.<br />
Use <a href="http://docs.jquery.com/Ajax" rel="nofollow">jQuery Ajax functions</a> to do so. More specifically, <a href="http://docs.jquery.com/Ajax/jQuery.post" rel="nofollow">jQuery.post()</a> is your friend.<br />
<a href="http://malsup.com/jquery/form/" rel="nofollow">jQuery form plugin</a> can come in handy if you want to do something in between these two options.</p></li>
</ol>
<p>Cheers!</p>
http://stackoverflow.com/questions/1414780/query-regarding-website-design-using-jsp/1414822#14148222Answer by harshath.jr for query regarding website design using jspharshath.jr2009-09-12T10:32:07Z2009-09-12T10:32:07Z<p>javascript has absolutely nothing to do with jsp.</p>
<p><code>jsp</code> is a server side technology, and use to write programs on the web server. The language used in jsp is Java.<br />
<code>javascript</code> is a language on the client side (browser).</p>
<p>It is said:</p>
<blockquote>
<p>Java is to javascript what car is to carpet.</p>
</blockquote>
<p>On that note, we can safely conclude, javascript does not depend on the server side technology.</p>
<p>Cheers!</p>
http://stackoverflow.com/questions/1403410/c-how-to-solve-the-problem-of-global-access1[C++] How to solve the problem of global access?harshath.jr2009-09-10T04:45:07Z2009-09-11T02:59:52Z
<p>Hi, </p>
<p>I'm building an app, and I need the wisdom of the SO community on a design issue.</p>
<p>In my application, there needs to be EXACTLY one instance of the class <code>UiConnectionList</code>, <code>UiReader</code> and <code>UiNotifier</code>.</p>
<p>Now, I have figured two ways to do this:</p>
<p><strong>Method 1:</strong>
Each file has a global instance of that class in the header file itself.</p>
<p><strong>Method 2:</strong> there is a separate globals.h file that contains single global instances of each class.
<br/></p>
<h2>Example code:</h2>
<p><strong>Method 1</strong></p>
<p>file: <code>uiconnectionlist.h</code></p>
<pre><code>#ifndef UICONNECTIONLIST_H
#define UICONNECTIONLIST_H
#include <QObject>
#include <QList>
class UiConnection;
class UiConnectionList : public QObject
{
Q_OBJECT
public:
UiConnectionList();
void addConnection(UiConnection* conn);
void removeConnection(UiConnection* conn);
private:
QList<UiConnection*> connList;
};
namespace Globals {
UiConnectionList connectionList;
}
#endif // UICONNECTIONLIST_H
</code></pre>
<p>file: <code>uinotifier.h</code></p>
<pre><code>#ifndef UINOTIFIER_H
#define UINOTIFIER_H
class UiNotifier
{
public:
UiNotifier();
};
namespace Globals {
UiNotifier uiNotifier;
}
#endif // UINOTIFIER_H
</code></pre>
<p><strong>Method 2:</strong></p>
<p>file: <code>uiconnectionlist.h</code></p>
<pre><code>#ifndef UICONNECTIONLIST_H
#define UICONNECTIONLIST_H
#include <QObject>
#include <QList>
class UiConnection;
class UiConnectionList : public QObject
{
Q_OBJECT
public:
UiConnectionList();
void addConnection(UiConnection* conn);
void removeConnection(UiConnection* conn);
private:
QList<UiConnection*> connList;
};
#endif // UICONNECTIONLIST_H
</code></pre>
<p>file: <code>uinotifier.h</code></p>
<pre><code>#ifndef UINOTIFIER_H
#define UINOTIFIER_H
class UiNotifier
{
public:
UiNotifier();
};
#endif // UINOTIFIER_H
</code></pre>
<p>file: <code>globals.h</code></p>
<pre><code>#ifndef GLOBALS_H
#define GLOBALS_H
#include "uiconnectionlist.h"
#include "uinotifier.h"
namespace Globals {
UiConnectionList connectionList;
UiNotifier uiNotifier;
}
#endif // GLOBALS_H
</code></pre>
<h2>My Question</h2>
<p>What is the better/right way to do this?</p>
<p>PS: I don't think that singleton is the right answer here, is it?</p>
<p>Thanks</p>
<p><hr /></p>
<p>Okay, so two answers have told me to make instances of <code>UiConnectionList</code> and <code>UiNotifier</code>, optionally wrap it in a <code>UiContext</code> and pass it around wherever required.</p>
<p>Could someone enumerate reasons (with examples) why passing around the context is better than having globally accessible variables.</p>
<p>This will help me judge what method is better (or better suited for my app).</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1404434/how-gmail-makes-ie-back-work-without-refresh/1404481#14044816Answer by harshath.jr for How Gmail makes IE Back work without refresh?harshath.jr2009-09-10T10:22:29Z2009-09-10T12:41:41Z<p>I can give you the answer to this, because I've faced and solved this problem.</p>
<p>There are a few concepts to understand here first:</p>
<ol>
<li>javascript cannot alter the browser history directly.</li>
<li>whenever the base URL of an iframe in the page changes, the history gets updated. (but this has some quirks with different browsers).</li>
<li>the url has a "hashed" part: eg, in the URL <code>http://mail.google.com/mail#inbox</code>, <code>#inbox</code> is the hashed part. Lets call it the "hash". so <code>http://mail.google.com/mail</code> will be our "base URL".</li>
</ol>
<p>Tracking history by GMail is mainly done using tricks based on this "hash".</p>
<p>So, a few more concepts:</p>
<ol>
<li>when the URL in the address bar changes, the history gets updated (the previous URL goes into the history)</li>
<li>when the base URL gets changed, the page is reloaded.</li>
<li>when the hash part of the URL changes without the base URL changing, the page is not reloaded.</li>
</ol>
<p>So, when you go from <code>http://mail.google.com/mail#inbox</code> to <code>http://mail.google.com/mail#sent</code>, the page <em>does not get refreshed</em>.</p>
<p>Now, if GMail were to get an event notification when the hash changed, then gmail could take actions based on that. Unfortunately, there are no DOM events that can help us capture history actions. So instead (this is the part which shows how I overcame the problem), we run an infinite loop that checks for changes to the hash. If it observes a change, then we detect a click to the "back" or "forward" button of the browser.</p>
<p>In solving this, I made a handy tool: the <a href="http://jrharshath.qupis.com/urlparser/" rel="nofollow">URL parser</a>. It can parse GET params in the URL, as well as params encoded in the Hash. Give the demo a go!</p>
<p>Cheers!</p>
<p><hr /></p>
<p>About this problem in IE: I did not realize that this 'hash' based solution does not work on IE (poor old linux developer). </p>
<p>But for IE, you can use a hidden iframe, and use its "url affects history" property to implement history. I know this statement lacks details, but that stems from my own lack of experience with IE.</p>
<p><s>I will try this solution, and follow up :)</s></p>
<p>I found a host of links on the internet, that do proper implementations of history using iframes/location hash. I did not have the patience to dig up the differences between iframe interface on various browsers.</p>
<p>I guess I'd prefer the <a href="http://stilbuero.de/jquery/history/" rel="nofollow">jquery plugin</a>. YUI has a history manager too.</p>
<p>Cheers!</p>
http://stackoverflow.com/questions/1404376/what-is-client-side-javascript-and-what-is-server-side-javascript/1404511#14045112Answer by harshath.jr for what is client side javascript and what is server side javascript ?harshath.jr2009-09-10T10:31:46Z2009-09-10T10:31:46Z<p>For most part in the modern web, javascript is 99% times client side (yes I made up the statistic).</p>
<p>That said, javascript is just another language. Back in the olden days, there was the Netscape Enterprise Server (<em>NES</em> it was called) which allowed scripting in javascript.</p>
<p>Modern web servers support scripting langauges like php, python etc. Its unfortunate that js is not big on the server side. Its the single most beautiful language I've encountered: the syntax of C, with the power of something like Lisp.</p>
<p>The conventional client side usage of javascript alludes to its use in the web. I'm sure you know all about javascript on the web (if you are intelligent enough to ask about ssjs).</p>
<p>But some unconventional uses of javascript:</p>
<ul>
<li>However, Qt has found use for javascript in its framework. Qt applications can be written to be extensible by addons written in javascript. I think its pretty cool.</li>
<li>There is also Rhino, that compiles javascript into Java.</li>
</ul>
<p>Cheers!</p>
http://stackoverflow.com/questions/1398723/disable-firebug-on-site-when-loaded/1398750#13987504Answer by harshath.jr for disable firebug on site when loadedharshath.jr2009-09-09T10:13:43Z2009-09-09T10:13:43Z<p>I don't know think you can disable firebug completely from your own javascript. If you could, then ght GMail team would have included that in their code [;)]. Instead they proffer a warning that says "firebug makes me slow".</p>
<p>But, perhaps <a href="http://davidwalsh.name/how-to-sniff-firebug-disable" rel="nofollow">this</a> will help?</p>
http://stackoverflow.com/questions/1398688/can-i-use-miglayout-with-c/1398709#13987091Answer by harshath.jr for Can I use MiGLayout with C++?harshath.jr2009-09-09T10:06:25Z2009-09-09T10:06:25Z<p>I don't know if miglayout has a port to C++, but <a href="http://qt.nokia.com/" rel="nofollow">Qt</a> has decent layout tools. If you don't find good tools, maybe you can consider Qt as an option?</p>
<p>Also, you can use Qt in many languages other than C++.</p>
http://stackoverflow.com/questions/1398571/html-inside-xml-should-i-use-cdata-or-encode-the-html/1398694#13986940Answer by harshath.jr for Html inside XML. Should I use CDATA or encode the HTMLharshath.jr2009-09-09T10:04:17Z2009-09-09T10:04:17Z<p>It makes sense to wrap HTML in CDATA. The HTML text will probably constitute on single value in XML.</p>
<p>So not wrapping it in CDATA will cause all xml parsers to read it as a part of the XML document. While it is easy to circumvent this problem while using the xml, why the extra headache?</p>
<p>If you want to actually parse the HTML into a DOM, then its better to read the HTML text, and setup a parser to read the test separately.</p>
<p>Hope that came out the way I intended it to.</p>
http://stackoverflow.com/questions/1398601/can-i-rely-on-this-to-judge-a-square-number-in-c/1398648#1398648-2Answer by harshath.jr for Can I rely on this to judge a square number in C++?harshath.jr2009-09-09T09:51:49Z2009-09-09T09:51:49Z<p>Floating point math is inaccurate by nature.</p>
<p>So consider this code:</p>
<pre><code>int a=35;
float conv = (float)a;
float sqrt_a = sqrt(conv);
if( sqrt_a*sqrt_a == conv )
printf("perfect square");
</code></pre>
<p>this is what will happen:</p>
<pre><code>a = 35
conv = 35.000000
sqrt_a = 5.916079
sqrt_a*sqrt_a = 34.999990734
</code></pre>
<p>this is amply clear that sqrt_a^2 is not equal to a.</p>
http://stackoverflow.com/questions/1398582/how-to-disable-parent-click/1398608#13986085Answer by harshath.jr for how to disable parent clickharshath.jr2009-09-09T09:43:19Z2009-09-09T09:43:19Z<p>prevent event from propagating up.</p>
<pre><code>function handler(event) {
event.stopPropagation();
// now do your stuff
}
$('#a').add('#b').click(handler);
</code></pre>
<p>This way clicks to <code>'#b'</code> will not propagate to <code>'#a'</code>. Neither will clicks to <code>'#c'</code> go to <code>'#b'</code>, and hence not to <code>'#a'</code>.</p>
<p>Cheers!</p>
http://stackoverflow.com/questions/1398331/c-how-do-i-implement-a-single-instance-like-design0[C++] How do I implement a "single instance"-like design?harshath.jr2009-09-09T08:31:47Z2009-09-09T09:24:06Z
<p>Hi,</p>
<p>I'm writing an application which will run as a daemon. UIs will connect to it over TCP. Now, there is a class called <code>UiTcpInterface</code> which will handle all communication between the UI and this daemon.</p>
<p>Now, I'm faced with the problem of ensuring there is only one instance of <code>UiTcpInterface</code>. What would be the best way to do it? Currently, I've thought of two ways:</p>
<ol>
<li>This is the classic singleton pattern: make the constructor private, and provide a static <code>instance()</code> method to the class <code>UiTcpInterface</code></li>
<li>Implement all functionality as static members of <code>UiTcpInterface</code>. The main method will make sure that all initialization is done.</li>
</ol>
<p>Which of these two should I follow? Can you please give me a pro-con list of the two methods? </p>
<p>Thanks :)</p>
http://stackoverflow.com/questions/1388018/jquery-attaching-an-event-to-multiple-elements-at-one-go/1388058#13880580Answer by harshath.jr for jQuery : Attaching an event to multiple elements at one goharshath.jr2009-09-07T07:44:49Z2009-09-07T07:44:49Z<p>try this: sweet and simple.</p>
<pre><code>var handler = function() {
alert('hi!');
}
$.each([a,b], function() {
this.click(handler);
}
</code></pre>
<p>BTW, this method is not worth the trouble.</p>
<p>If you already know there are just two of these methods, then I guess the best bet would be</p>
<pre><code>a.click(handler);
b.click(handler);
</code></pre>
<p>Cheers!</p>
http://stackoverflow.com/questions/1538398/how-do-i-use-qmake-to-build-multiple-binaries-in-a-single-project/1538639#1538639Comment by harshath.jr on How do I use qmake to build multiple binaries in a single project?harshath.jr2009-10-09T02:50:02Z2009-10-09T02:50:02Z+1 for pointing out that <code>common</code> should be a <code>lib</code>. Thanks!http://stackoverflow.com/questions/1538243/in-jquery-if-you-remove-an-element-will-any-events-on-it-be-removed/1538433#1538433Comment by harshath.jr on In jQuery if you remove an element will any events on it be removed?harshath.jr2009-10-09T02:47:50Z2009-10-09T02:47:50ZHmm.. thanks for the info guyshttp://stackoverflow.com/questions/1538243/in-jquery-if-you-remove-an-element-will-any-events-on-it-be-removed/1538292#1538292Comment by harshath.jr on In jQuery if you remove an element will any events on it be removed?harshath.jr2009-10-08T15:08:13Z2009-10-08T15:08:13Z+1 for "insider info" :)http://stackoverflow.com/questions/1485857/ways-of-calling-method-in-javaComment by harshath.jr on ways of calling method in javaharshath.jr2009-09-28T07:48:11Z2009-09-28T07:48:11Zdude you are really in the wrong place. Some communities are not so against homework questions, but SO is not one of them.http://stackoverflow.com/questions/1475914/multi-language-testing-framework/1475957#1475957Comment by harshath.jr on Multi language testing frameworkharshath.jr2009-09-25T12:05:56Z2009-09-25T12:05:56Zwhat is DSL ?http://stackoverflow.com/questions/1472123/qt-signals-and-slots-threads-app-exec-and-related-queries/1472579#1472579Comment by harshath.jr on Qt signals and slots, threads, app.exec(), and related queriesharshath.jr2009-09-25T05:02:37Z2009-09-25T05:02:37Zstill there remains one thing: if the main event loop is busy getting events from the system, who is generating them? how is the <code>newConnection()</code> signal ever emitted, if the main loop is busy waiting in this loop?http://stackoverflow.com/questions/1368593/qt-question-how-do-signals-and-slots-workComment by harshath.jr on Qt question: How do signals and slots work?harshath.jr2009-09-24T14:25:44Z2009-09-24T14:25:44Zi get itchy about this spelling too.. god knows whyhttp://stackoverflow.com/questions/1368593/qt-question-how-do-signals-and-slots-work/1371958#1371958Comment by harshath.jr on Qt question: How do signals and slots work?harshath.jr2009-09-24T14:24:50Z2009-09-24T14:24:50Zlot of cleverness, but no magic! reminds me of <a href="http://catb.org/esr/jargon/html/magic-story.html" rel="nofollow">catb.org/esr/jargon/html/magic-story.html</a>http://stackoverflow.com/questions/1087379/multithreaded-html-to-pdf-conversion-via-single-threaded-qt/1167431#1167431Comment by harshath.jr on Multithreaded Html to Pdf conversion via Single-Threaded Qtharshath.jr2009-09-20T08:40:52Z2009-09-20T08:40:52Zthe "trolls" :D I like the slurhttp://stackoverflow.com/questions/1450500/how-many-threads-does-qt-create-to-work-in-the-background/1450515#1450515Comment by harshath.jr on How many threads does Qt create to work in the background?harshath.jr2009-09-20T08:39:28Z2009-09-20T08:39:28Zokay, i verified this by writing a program... thanks http://stackoverflow.com/questions/1450459/which-one-of-these-php-and-mysql-scripts-is-safer-security-wiseComment by harshath.jr on Which one of these PHP and Mysql scripts is safer security wise?harshath.jr2009-09-20T07:30:41Z2009-09-20T07:30:41ZI wonder if any one read through all that code. I didn't!http://stackoverflow.com/questions/1422145/c-how-should-i-organize-test-cases-in-my-project/1422255#1422255Comment by harshath.jr on [C++] How should I organize test cases in my project?harshath.jr2009-09-20T07:19:52Z2009-09-20T07:19:52Zthanks, I chose this method for the project I'm working on right now :)http://stackoverflow.com/questions/1426335/qt-with-c-net-in-visual-studio-v-09Comment by harshath.jr on Qt with C#/.NET in Visual Studio v.09?harshath.jr2009-09-15T10:59:11Z2009-09-15T10:59:11ZHow come you "must" use C#?http://stackoverflow.com/questions/1420029/how-to-break-out-of-a-loop-from-inside-a-switch/1420100#1420100Comment by harshath.jr on How to break out of a loop from inside a switch?harshath.jr2009-09-14T11:04:51Z2009-09-14T11:04:51Zthanks for the great explanation :)http://stackoverflow.com/questions/1419519/css-nested-divs-margins-vs-paddingComment by harshath.jr on CSS, nested divs & margins vs. paddingharshath.jr2009-09-14T03:14:59Z2009-09-14T03:14:59Zi thought there was a question.. is there one?