User ardsrk - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T07:13:07Zhttp://stackoverflow.com/feeds/user/6488http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1775785/how-to-compare-sizet-and-pidt-with-int/1775854#17758540Answer by ardsrk for How to compare size_t and pid_t with int ardsrk2009-11-21T15:55:44Z2009-11-21T15:55:44Z<p>In C, size_t is an unsigned type and its size is the size an int type takes on the underlying architecture.</p>
<p>Because C is weakly typed you could however assign signed integers to a size_t type. The responsibility of using the types properly partly rests on the programmer.</p>
<p>In your case since you are comparing the size_t type to zero it is fine. Try comparing it to a negative number. You would be surprised.</p>
http://stackoverflow.com/questions/1775578/reading-code-of-real-production-projects-how-to-find/1775607#17756071Answer by ardsrk for Reading code of real production projects. How to find?ardsrk2009-11-21T14:21:20Z2009-11-21T14:21:20Z<p>Django is both object oriented and MVC based framework written in Python. The <a href="http://www.djangobook.com/en/2.0/chapter05/" rel="nofollow">Chapter 5: Models</a> of the free Django book explains the MVC pattern as applied to Django. </p>
<p>Also look at <a href="http://stackoverflow.com/questions/364015/mvc-and-django-fundamentals">this SO question</a>. </p>
http://stackoverflow.com/questions/1737460/how-to-find-shift-reduce-conflict-in-this-yacc-file/1737613#17376133Answer by ardsrk for How to find shift/reduce conflict in this yacc file?ardsrk2009-11-15T14:11:25Z2009-11-15T14:11:25Z<p>As mientefuego pointed out you grammar has the classic "dangling else" problem.
You could beat the problem by assigning precedence to the rules that causes conflict.</p>
<p>The rule causing conflict is:</p>
<pre><code>selection_stmt : IF '(' expression ')' statement
| IF '(' expression ')' statement ELSE statement ;
</code></pre>
<p>First start by making ELSE and LOWER_THAN_ELSE ( a pseudo-token ) non associative:</p>
<pre><code>%nonassoc LOWER_THAN_ELSE
%nonassoc ELSE
</code></pre>
<p>This gives ELSE more precedence over LOWER_THAN_ELSE simply because LOWER_THAN_ELSE is declared first.</p>
<p>Then in the conflicting rule you have to assign a precedence to either the shift or reduce action:</p>
<pre><code>selection_stmt : IF '(' expression ')' statement %prec LOWER_THAN_ELSE ;
| IF '(' expression ')' statement ELSE statement ;
</code></pre>
<p>Here, higher precedence is given to shifting. I have incorporated the above mentioned corrections and listed the complete grammar below:</p>
<pre><code>/* C-Minus BNF Grammar */
%token ELSE
%token IF
%token INT
%token RETURN
%token VOID
%token WHILE
%token ID
%token NUM
%token LTE
%token GTE
%token EQUAL
%token NOTEQUAL
%nonassoc LOWER_THAN_ELSE
%nonassoc ELSE
%%
program : declaration_list ;
declaration_list : declaration_list declaration | declaration ;
declaration : var_declaration | fun_declaration ;
var_declaration : type_specifier ID ';'
| type_specifier ID '[' NUM ']' ';' ;
type_specifier : INT | VOID ;
fun_declaration : type_specifier ID '(' params ')' compound_stmt ;
params : param_list | VOID ;
param_list : param_list ',' param
| param ;
param : type_specifier ID | type_specifier ID '[' ']' ;
compound_stmt : '{' local_declarations statement_list '}' ;
local_declarations : local_declarations var_declaration
| /* empty */ ;
statement_list : statement_list statement
| /* empty */ ;
statement : expression_stmt
| compound_stmt
| selection_stmt
| iteration_stmt
| return_stmt ;
expression_stmt : expression ';'
| ';' ;
selection_stmt : IF '(' expression ')' statement %prec LOWER_THAN_ELSE ;
| IF '(' expression ')' statement ELSE statement ;
iteration_stmt : WHILE '(' expression ')' statement ;
return_stmt : RETURN ';' | RETURN expression ';' ;
expression : var '=' expression | simple_expression ;
var : ID | ID '[' expression ']' ;
simple_expression : additive_expression relop additive_expression
| additive_expression ;
relop : LTE | '<' | '>' | GTE | EQUAL | NOTEQUAL ;
additive_expression : additive_expression addop term | term ;
addop : '+' | '-' ;
term : term mulop factor | factor ;
mulop : '*' | '/' ;
factor : '(' expression ')' | var | call | NUM ;
call : ID '(' args ')' ;
args : arg_list | /* empty */ ;
arg_list : arg_list ',' expression | expression ;
</code></pre>
http://stackoverflow.com/questions/1733397/javascript-code-unterminated-string-literal/1733500#17335000Answer by ardsrk for Javascript code,unterminated string literalardsrk2009-11-14T06:34:36Z2009-11-14T06:34:36Z<p>You could use arrays to store fragments of your markup and then use the join method to get the complete markup:</p>
<pre><code>a = new Array(20);
a[0]='<li><div class="above">'
a[1]= $question_number
a[2]= 'Question Title</div>'
a[3]= '<div class="middle">'
a[4]= '<input type="text" name="question'
a[5]= $question_number
a[6]= '" size="55"/></div>'
a[7]= '<div class="below">'
a[8]= $question_number
a[9]= '<input type="text" name="option'
a[10]=$question_number
a[11]= '" size="6"/>'
a[12]=$question_number
a[13]='<input type="text" name="option'
a[14]=$question_number
a[15]='" size="6"/>'
a[16]='<input class="btn" type="button" name="Submit" value="Add" />'
a[17]='<input class="btn" type="button" name="Submit" value="Remove" />'
a[18]='</div>'
a[19]='</li>'
$html = a.join('');
</code></pre>
http://stackoverflow.com/questions/1728472/i-want-to-start-reading-the-python-source-code-where-should-i-start/1733340#17333400Answer by ardsrk for I want to start reading the Python source code. Where should I start.ardsrk2009-11-14T05:07:13Z2009-11-14T05:07:13Z<p>Download the <a href="http://python.org/ftp/python/3.1.1/Python-3.1.1.tar.bz2" rel="nofollow">source</a> from the python website. Say you unzipped the source into a directory named Python-3.1.1. I suggest you two starting points within Python source code that would help you explore how Python works under the hood:</p>
<ul>
<li><p>Examine how the Python Virtual Machine executes the bytecode generated from the interperter. The Python VM is in the file named Python-3.1.1/Python/ceval.c. The core of the VM is an eval loop that starts at the function PyEval_EvalFrameEx in ceval.c. Read through the source and the inline comments. I am sure you would enjoy it.</p></li>
<li><p>Another option is to look at how built-in python data types like lists, dictionaries and sets are implemented. For instance sets are implemented in Python-3.1.1/Objects/setobject.c. The Objects directory contains implementations of other data types as well.</p></li>
</ul>
<p>Hope this helps.</p>
<p>Enjoy!!</p>
http://stackoverflow.com/questions/1729798/memory-full-on-calling-a-method-through-its-method-pointer1Memory full on calling a method through its method pointerardsrk2009-11-13T15:10:48Z2009-11-13T23:23:09Z
<p>I have a method pointer like below:</p>
<pre><code>typedef void (MMsnInternalCallBacks::* FuncPtr)();
FuncPtr iSoapActionComplete;
</code></pre>
<p>I call the method below through the pointer iSoapActionComplete like below:</p>
<pre><code>(iCallbacks.*iSoapActionComplete)( );
</code></pre>
<p>While the function is being called a message "Memory Full. Try closing some applications" flashes on my Symbian S60 3rd Ed emulator.</p>
<p>Any idea why this could be happening.</p>
http://stackoverflow.com/questions/1717393/is-this-simple-python-code-thread-safe/1717536#17175360Answer by ardsrk for Is this simple python code thread safe?ardsrk2009-11-11T19:36:53Z2009-11-11T19:36:53Z<p>Are you sure that the functions increment and decrement execute without any error?</p>
<p>I think it should raise an UnboundLocalError because you have to explicitly tell Python that you want to use the global variable named 'c'.</p>
<p>So change increment ( also decrement ) to the following:</p>
<pre><code>def increment():
global c
c += 1
</code></pre>
<p>I think as is your code is thread unsafe. <a href="http://effbot.org/zone/thread-synchronization.htm" rel="nofollow">This article</a> about thread synchronisation mechanisms in Python may be helpful.</p>
http://stackoverflow.com/questions/1716855/what-is-operation-overloading/1716972#17169720Answer by ardsrk for what is operation overloading?ardsrk2009-11-11T17:55:36Z2009-11-11T17:55:36Z<p>I guess you have got the wrong understanding about operator overloading. The idea of operator overloading is to present user-defined types with operations similar to those that could be performed on primitive types ( like integers ).</p>
<p>Of course you could use operator overloading to overload the increment operator ( ++ ) that would actually decrement some member variable's value but you would surprise the users of your class just the way you would if you reported the objects being compared as unequal even though you have found them to be equal under certain conditions.</p>
<p>Doing such things may be fine for learning the concepts but don't take them anywhere beyond.</p>
http://stackoverflow.com/questions/1715025/function-to-read-files-one-by-one-in-a-directory/1715357#1715357-1Answer by ardsrk for Function to read files one by one in a directoryardsrk2009-11-11T14:02:45Z2009-11-11T14:02:45Z<p>By what I get from your question its a good case for interprocess communication. </p>
<p>You say that you need to be notified when a file in a directory is created. Now, doing interprocess communication through files is bad in my opinion. </p>
<p>In Unix you have several alternatives for interprocess communication as <a href="http://www.ecst.csuchico.edu/~beej/guide/ipc/" rel="nofollow">this guide</a> details. Using <a href="http://www.ecst.csuchico.edu/~beej/guide/ipc/usock.html" rel="nofollow">Unix sockets</a> would be the simplest way to go. </p>
<p>If you have written the other process that now creates a file for interprocess communication you could change the implementation to write it to the socket.</p>
http://stackoverflow.com/questions/1686606/finding-out-the-time-taken-to-execute-a-function0Finding out the time taken to execute a function ardsrk2009-11-06T10:07:04Z2009-11-06T10:43:55Z
<p>I wrote a function to match fingerprint templates using VC++.NET.</p>
<p>Now I want to know the time it takes to execute the function. </p>
<p>I tried surrounding the function call statement with <a href="http://msdn.microsoft.com/en-us/library/4e2ess30%28VS.71%29.aspx" rel="nofollow">clock</a> ( Standard C Library ) and computing the difference in the values returned. For some reason it always returns zero. Am I missing something here or are there alternatives?</p>
http://stackoverflow.com/questions/1675383/store-some-text-persistently-in-a-browser-using-javascript0Store some text persistently in a browser using Javascriptardsrk2009-11-04T17:26:09Z2009-11-04T18:13:23Z
<p>I am developing a Javascript library to <a href="http://doc.fluidinfo.com/fluidDB/api/http.html" rel="nofollow">FluidDB HTTP API.</a> </p>
<p>Since FluidDB API does not support JSONP I am forced to use AJAX and hence to develop a firefox extension to workaround AJAX's same origin policy. </p>
<p>My solution is to include a HTML file inside the extension. That HTML file displays a simple form where the user could enter the username, password and the other GET/POST data that forms a request. </p>
<p>I load the HTML file using the chrome URL. </p>
<p>When the user enters his username and password I want to store it somewhere persistently and spare him the trouble of having to enter it everytime. I tried creating cookies but it did not work as the webpage is not a valid domain. </p>
<p>Are there any alternatives?</p>
http://stackoverflow.com/questions/1477072/behavior-of-c-after-destruction0Behavior of C++ after destructionardsrk2009-09-25T12:41:00Z2009-09-25T12:53:59Z
<p>I have an object that reads from a socket continuously like below:</p>
<pre><code>void CSocketReader::ReadComplete ( )
{
messageProcessor->ResponseReceived ( response );
read ();
}
void CSocketReader::read()
{
socket.read(response);
}
</code></pre>
<p>My problem is, depending on the response and on the protocol that I am executing the ResponseReceived method could lead to deletion of the CSocketReader object. When the ResponseReceived method returns the object the this pointer points to would have been deleted ( but for some reason not known to me the this pointer is not NULL even after its deleted!! ). Next the read method executes and the program crashes within read. How can I reliably detect that the method that's been executing on an object has been deleted.</p>
<p>Please help.</p>
http://stackoverflow.com/questions/1050253/help-me-understand-this-programming-pearls-bitsort-program4Help me understand this "Programming pearls" bitsort programardsrk2009-06-26T17:23:37Z2009-09-14T12:01:20Z
<p>Jon Bentley in Column 1 of his book programming pearls introduces a technique for sorting a sequence of non-zero positive integers using bit vectors. </p>
<p>I have taken the program bitsort.c from <a href="http://www.cs.bell-labs.com/cm/cs/pearls/code.html" rel="nofollow">here</a> and pasted it below:</p>
<pre><code>/* Copyright (C) 1999 Lucent Technologies */
/* From 'Programming Pearls' by Jon Bentley */
/* bitsort.c -- bitmap sort from Column 1
* Sort distinct integers in the range [0..N-1]
*/
#include <stdio.h>
#define BITSPERWORD 32
#define SHIFT 5
#define MASK 0x1F
#define N 10000000
int a[1 + N/BITSPERWORD];
void set(int i)
{
int sh = i>>SHIFT;
a[i>>SHIFT] |= (1<<(i & MASK));
}
void clr(int i) { a[i>>SHIFT] &= ~(1<<(i & MASK)); }
int test(int i){ return a[i>>SHIFT] & (1<<(i & MASK)); }
int main()
{ int i;
for (i = 0; i < N; i++)
clr(i);
/*Replace above 2 lines with below 3 for word-parallel init
int top = 1 + N/BITSPERWORD;
for (i = 0; i < top; i++)
a[i] = 0;
*/
while (scanf("%d", &i) != EOF)
set(i);
for (i = 0; i < N; i++)
if (test(i))
printf("%d\n", i);
return 0;
}
</code></pre>
<p>I understand what the functions clr, set and test are doing and explain them below: ( please correct me if I am wrong here ).</p>
<ul>
<li>clr clears the ith bit</li>
<li>set sets the ith bit</li>
<li>test returns the value at the ith bit</li>
</ul>
<p>Now, I don't understand how the functions do what they do. I am unable to figure out all the bit manipulation happening in those three functions. </p>
<p>Please help.</p>
http://stackoverflow.com/questions/1345115/c-class-design-problem0C++ class design problemardsrk2009-08-28T05:06:19Z2009-08-30T04:00:27Z
<p>I have a class that executes the <a href="http://msnpiki.msnfanatic.com/index.php/MSNP15" rel="nofollow">MSNP15</a> protocol. The protocol requires clients to perform frequent connection/disconnection to various servers like the dispatch server, login server and the switchboard server. </p>
<p>I decided to store the protocol related variables ( like ticket tokens, nonce etc ) as static member variables in a utility class like below:</p>
<pre><code>class MsnUtility
{
public:
static void SetChallengeStringL ( const char *string );
static const char* GetChallengeString ( );
static void SetContactTicketL ( const char *ticket );
static const char* GetContactTicket ( );
private:
MsnUtility();
static char *iChallengeString;
static char *iContactTicket;
};
</code></pre>
<p>The static variables above are initialized to NULL at startup and then newed when the tokens become available as the protocol executes. </p>
<p>Since I don't have access to C++ standard library ( as I am developing on Symbian S60 platform ) I cannot use the string library. Will the allocated character pointers be freed when the program exits or is there any other mechanism by which I could ensure they are freed. </p>
<p>I am also open to alternative design suggestions.</p>
http://stackoverflow.com/questions/510545/firefox-sidebar-extension-link-loaded-into-a-new-browser-tab-how-to1Firefox sidebar extension link loaded into a new browser tab. How-To?ardsrk2009-02-04T08:42:15Z2009-08-20T16:40:16Z
<p>I have a friefox sidebar extension. If its opened by clicking on the toolbar icon I load it with a webpage ( that I have authored ). Now, if the user clicks on the link on the webpage ( thats loaded into the sidebar ) I want the linked webpage to open up in a new tab of the main window. I tried with this in my webpage markup:</p>
<pre><code><a target="_content" href="http://www.google.com">Google</a>
</code></pre>
<p>But the link opens up in the tab that has focus and not in a new tab.</p>
<p>Please help.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1192434/how-to-parse-a-url-in-c/1194096#11940961Answer by ardsrk for How to parse a URL in C?ardsrk2009-07-28T13:26:52Z2009-07-28T13:26:52Z<p>Looking at wget would be worth it. Download the <a href="http://ftp.gnu.org/gnu/wget/" rel="nofollow">source</a> and look at url_parse function in src/url.c.</p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/1187687/what-undefined-behaviour-does-this-c-code-contain4What undefined behaviour does this C++ code containardsrk2009-07-27T11:37:40Z2009-07-28T07:34:10Z
<p>I wrote up this code after reading item 11 of Effective C++ ( Third Edition ).</p>
<pre><code>#include <iostream>
using namespace std;
#define MAX_COLORS 20
class Widget
{
public:
Widget ( int seed );
~Widget ( );
Widget& operator=( const Widget& rhs );
void ToString ( );
private:
Widget& SelfAssignmentUnsafe ( const Widget& rhs );
Widget& SelfAssignmentSafe ( const Widget& rhs );
Widget& SelfAssignmentAndExceptionSafe ( const Widget& rhs );
void MakeDeepCopy ( const Widget& rhs );
int *colorPallete;
};
void Widget::ToString()
{
int i = 0;
for ( i = 0; i < MAX_COLORS; i++ )
{
cout << "colorPallete[" << i << "]: " << colorPallete[i] << endl;
}
}
Widget::Widget ( int seed ):
colorPallete ( new int[MAX_COLORS])
{
int i = 0;
for ( i = 0; i < MAX_COLORS; i++ )
{
colorPallete[i] = seed + i;
}
}
Widget& Widget::operator=( const Widget& rhs )
{
// return SelfAssignmentUnsafe ( rhs );
// return SelfAssignmentSafe( rhs );
return SelfAssignmentAndExceptionSafe ( rhs );
}
Widget& Widget::SelfAssignmentUnsafe ( const Widget& rhs )
{
delete[] colorPallete;
colorPallete = 0;
MakeDeepCopy( rhs );
return *this;
}
Widget& Widget::SelfAssignmentSafe ( const Widget& rhs )
{
if ( this == &rhs ) return *this;
delete[] colorPallete;
colorPallete = 0;
MakeDeepCopy ( rhs );
return *this;
}
void Widget::MakeDeepCopy ( const Widget& rhs )
{
int i = 0;
colorPallete = new int [MAX_COLORS];
for ( i = 0;i < MAX_COLORS; i++ )
{
colorPallete[i] = rhs.colorPallete[i];
}
}
Widget& Widget::SelfAssignmentAndExceptionSafe ( const Widget& rhs )
{
int *origColorPallete = colorPallete;
MakeDeepCopy ( rhs );
delete[] origColorPallete;
origColorPallete = 0;
return *this;
}
Widget::~Widget()
{
delete[] colorPallete;
}
int main()
{
Widget b(10);
Widget a(20);
b.ToString();
b = b;
cout << endl << "After: " << endl;
b.ToString();
}
</code></pre>
<p>The author talks about handling assignment to self in the assignment operator:</p>
<pre><code>Widget a(10);
a = a;
</code></pre>
<p>From the assignment operator for Widget I call <em>Widget::SelfAssignmentAndExceptionSafe.</em></p>
<p>In <em>Widget::SelfAssignmentAndExceptionSafe</em> the idea is to save the colorPallete pointer in origColorPallete. Then make a deep copy of rhs.colorPallete. When the copy succeeds I delete the original pointer and return reference to self.</p>
<p>The above mechanism is supposed to be self assignment and exception safe.</p>
<p>However, <em>Widget::SelfAssignmentAndExceptionSafe</em> is not able to handle assignment to self properly. The colorPallete array contains junk after self-assignment. Its handling the other cases very well.</p>
<p>Why could this be?</p>
<p>Please help.</p>
<p>[EDIT: After examining all the answers]</p>
<p>Thanks for your answers. I have updated the MakeDeepCopy method and the example's working fine now. Below, I have pasted the updated code:</p>
<pre><code>#include <iostream>
using namespace std;
#define MAX_COLORS 20
class Widget
{
public:
Widget ( int seed );
~Widget ( );
Widget& operator=( const Widget& rhs );
void ToString ( );
private:
Widget( Widget& rhs );
Widget& SelfAssignmentUnsafe ( const Widget& rhs );
Widget& SelfAssignmentSafe ( const Widget& rhs );
Widget& SelfAssignmentAndExceptionSafe ( const Widget& rhs );
void MakeDeepCopy ( const int* rhs );
int *colorPallete;
};
void Widget::ToString()
{
int i = 0;
for ( i = 0; i < MAX_COLORS; i++ )
{
cout << "colorPallete[" << i << "]: " << colorPallete[i] << endl;
}
}
Widget::Widget ( int seed ):
colorPallete ( new int[MAX_COLORS])
{
int i = 0;
for ( i = 0; i < MAX_COLORS; i++ )
{
colorPallete[i] = seed + i;
}
}
Widget& Widget::operator=( const Widget& rhs )
{
// return SelfAssignmentUnsafe ( rhs );
// return SelfAssignmentSafe( rhs );
return SelfAssignmentAndExceptionSafe ( rhs );
}
Widget& Widget::SelfAssignmentUnsafe ( const Widget& rhs )
{
delete[] colorPallete;
colorPallete = 0;
MakeDeepCopy( rhs.colorPallete );
return *this;
}
Widget& Widget::SelfAssignmentSafe ( const Widget& rhs )
{
if ( this == &rhs ) return *this;
delete[] colorPallete;
colorPallete = 0;
MakeDeepCopy ( rhs.colorPallete );
return *this;
}
void Widget::MakeDeepCopy ( const int* rhs )
{
int i = 0;
colorPallete = new int [MAX_COLORS];
for ( i = 0;i < MAX_COLORS; i++ )
{
colorPallete[i] = rhs[i];
}
}
Widget& Widget::SelfAssignmentAndExceptionSafe ( const Widget& rhs )
{
int *origColorPallete = colorPallete;
MakeDeepCopy ( rhs.colorPallete );
delete[] origColorPallete;
origColorPallete = 0;
return *this;
}
Widget::~Widget()
{
delete[] colorPallete;
}
int main()
{
Widget b(10);
Widget a(20);
b.ToString();
b = b;
cout << endl << "After: " << endl;
b.ToString();
}
</code></pre>
<p>[EDIT: Modified code based on Charles's response ]</p>
<p>The idea is to implement "copy-and-swap" idiom to make code both self assignment and exception safe. Note that copy is implemented only in the copy constructor. If the copy succeeds we swap in the assignment operator.</p>
<p>Another improvement over the previous update is that MakeDeepCopy's interface depended on correct usage. We had to store/delete the colorPallete pointer before calling MakeDeepCopy. No such dependencies exist now. </p>
<pre><code>#include <iostream>
using namespace std;
#define MAX_COLORS 20
class Widget
{
public:
Widget ( int seed );
~Widget ( );
Widget& operator=( const Widget& rhs );
void ToString ( );
Widget( const Widget& rhs );
private:
int *colorPallete;
};
void Widget::ToString()
{
int i = 0;
for ( i = 0; i < MAX_COLORS; i++ )
{
cout << "colorPallete[" << i << "]: " << colorPallete[i] << endl;
}
}
Widget::Widget ( int seed ):
colorPallete ( new int[MAX_COLORS])
{
int i = 0;
for ( i = 0; i < MAX_COLORS; i++ )
{
colorPallete[i] = seed + i;
}
}
Widget::Widget( const Widget& rhs ):
colorPallete( new int[MAX_COLORS] )
{
std::copy ( rhs.colorPallete, rhs.colorPallete + MAX_COLORS, colorPallete );
}
Widget& Widget::operator=( const Widget& rhs )
{
Widget tmp(rhs);
std::swap ( colorPallete, tmp.colorPallete );
return *this;
}
Widget::~Widget()
{
delete[] colorPallete;
}
int main()
{
Widget b(10);
Widget a(20);
b.ToString();
b = b;
cout << endl << "After: " << endl;
b.ToString();
}
</code></pre>
http://stackoverflow.com/questions/1184419/firefox-addon-installation-issue/1184809#11848091Answer by ardsrk for firefox addon installation issueardsrk2009-07-26T15:13:34Z2009-07-26T15:13:34Z<p>I assume that you are letting the users download your add-on through some install button.</p>
<p>Unfortunately, its not as simple as pointing the browser to the xpi file on the server's file system. Below, I have pasted the script that installs Omture when the user presses on the "Download Omture" button on the add-on's <a href="http://www.omture.com/" rel="nofollow">website</a> which you could also find using firebug.</p>
<pre><code>function installExt()
{
var url="omture_current.xpi";
InstallTrigger.install({
"Omture": { URL: url,
toString : function() { return this.URL; } } });
return false;
}
</code></pre>
http://stackoverflow.com/questions/1123700/projects-for-c-beginner-intermediate/1123833#11238330Answer by ardsrk for Projects for C++ Beginner/Intermediate?ardsrk2009-07-14T06:51:36Z2009-07-14T06:51:36Z<p>Read <a href="http://catb.org/esr/writings/taoup/html/" rel="nofollow">The Art of Unix Programming</a> ( TAOUP ). Its available online, well written and has lots of case studies that represent well designed programs. You may also find some good C++ opensource software amongst those case studies. </p>
<p>Apart from TAOUP, take a look at <a href="http://www.boost.org/" rel="nofollow">Boost C++ Libraries</a>. They provide peer reviewed source libraries that are very well documented.</p>
<p>Another one, I have heard is <a href="http://www.postfix.org/" rel="nofollow">Postfix</a> ( an Open source email server for Unix ) that is said to have well written C++ code. Though, I must admit I do not have any direct experience with it.</p>
<p>Hope this helps :)</p>
http://stackoverflow.com/questions/1099697/user-input-php-javascript-and-security0User input, PHP, Javascript and securityardsrk2009-07-08T18:08:59Z2009-07-08T18:32:55Z
<p>Hi,</p>
<p>I am working on a directions service where users enter the from and to addresses and get the directions table ( that gives turn by turn information ) along with a map showing the route.</p>
<p>Below is the complete source code ( getdirections.php ):</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Directions</title>
<style>
* { font-family: Verdana; font-size: 96%; }
label { width: 15em; float: left; }
label.error { display: block; float: none; color: red; vertical-align: top; }
p { clear: both; }
.submit { margin-left: 12em; }
em { font-weight: bold; padding-right: 1em; vertical-align: top; }
</style>
<script src="jquery-1.3.1.js" type="text/javascript">
</script>
<script src="http://maps.google.com/maps?file=api&amp;v=2&amp;sensor=false& amp;key=[Your Key Here]"
type="text/javascript">
</script>
</head>
<body onunload="GUnload()">
<div id="container">
<div id="directform">
<form id="direct" action="getdirections.php" method="get">
<p><label for="loc1">From Here:</label>
<input id="loc1" type="text" name="location1" class="required" /></p>
<p><label for="loc2">To Here:</label>
<input id="loc2" type="text" name="location2" class="required" /></p>
<p><input type="submit" value="Search" /></p>
</form>
</div>
<?php
function filterInput ( $input ) {
$replacement = ',';
$input = preg_replace('/(\n|\r)+/', $replacement, $input);
$replacement = " ";
$input = preg_replace('/(\t)+/', $replacement, $input);
$inputarray = explode(' ', $input);
foreach ( $inputarray as $i => $value ) {
$ch = '';
if ( $value[strlen($value)-1] == ',') {
$ch = ',';
$value = substr($value, 0, -1);
}
$value =
preg_replace('/^(\&|\(|\)|\[|\]|\{|\}|\"|\.|\!|\?|\'|\:|\;)+/', "", $value);
$inputarray[$i] =
preg_replace('/(\&|\(|\)|\[|\]|\{|\}|\"|\.|\!|\?|\'|\:|\;)+$/', "", $value);
$inputarray[$i] = $inputarray[$i].$ch;
}
$filteredString = implode(" ", $inputarray);
return $filteredString;
}
?>
</div>
<table class="directions">
<tr>
<td valign="top">
<div id="directions" style="width: 100%"></div>
</td>
</tr>
<tr>
<td valign="top">
<div id="map_canvas" style="width: 250px; height: 400px"></div>
</td>
</tr>
<td valign="top">
<div id="directions_url"></div>
</td>
</table>
<noscript><b>JavaScript must be enabled in order for you to use Google Maps.</b>
However, it seems JavaScript is either disabled or not supported by your browser.
To view Google Maps, enable JavaScript by changing your browser options, and then
try again.
</noscript>
<script type="text/javascript">
// This programming pattern limits the number of global variables
// Thus it does not pollute the global namespace
// for_directions is the only global object here.
for_directions = function(){
// The map is loaded into the div element having id specified by mapid
// private variable
var mapid = "map_canvas";
// The direction listing is loaded into the div element having id specified by directionsid.
// private variable
var directionsid = "directions";
// From here
// private variable
var location1;
// To here
// private variable
var location2;
// The functions ( init and addevent ) are public methods of for_directions object
return {
// Called on loading of this page
// public method
init: function (){
location1 = "<?= filterInput($_GET['location1']) ?>" || 0;
location2 = "<?= filterInput($_GET['location2']) ?>" || 0;
var directions = document.getElementById(directionsid);
directions.innerHTML = "Please check the address and try again";
if ( GBrowserIsCompatible() && location1 != 0 && location2 != 0){
mapAddress(location1, location2);
}
},
// This method is cross browser compliant and is used to add an event listener
// public method
addEvent:function(elm,evType,fn,useCapture){
if(elm.addEventListener){
elm.addEventListener(evType, fn, useCapture);
return true;
} else if (elm.attachEvent) {
var r = elm.attachEvent('on' + evType, fn);
return r;
} else {
elm['on' + evType] = fn;
}
}
};
// Called from init
// private method
function mapAddress ( address1, address2 ){
var geocoder = new GClientGeocoder();
var directions = document.getElementById(directionsid);
var i = 0;
geocoder.getLatLng( address1, function(point1){
if (point1){
geocoder.getLatLng ( address2, function(point2){
if (point2){
getDirections();
} else {
directions.innerHTML = "Please check the address and try again";
}
});
} else {
directions.innerHTML = "Please check the address and try again";
}
});
}
// Called from mapAddress to load the directions and map
// private method
function getDirections( ){
var gmap = new GMap2(document.getElementById(mapid));
var gdir = new GDirections(gmap,document.getElementById(directionsid));
gdir.load("from: " + location1 + " to: " + location2,
{ "locale": "en_US" });
generateURL();
}
function generateURL(){
var url = "http://maps.google.com/maps?saddr=";
url += location1;
url += "&daddr=";
url += location2;
var a = $("<a></a>").attr('href',url);
$(a).text("Google Maps");
$("#directions_url").append(a);
}
}();
// The (); above results in the function being interpreted by the browser just before the page is loaded.
// Make for_directions.init as the listener to load event
// Note that the init method is public that why its accessible outside the object scope
for_directions.addEvent(window, 'load', for_directions.init, false);
</script>
</body>
</html>
</code></pre>
<p>If you try out this code on your system name it as getdirections.php. The only thing you would need to change is the google maps api key. You can get the key <a href="http://code.google.com/apis/maps/signup.html" rel="nofollow">here</a>.</p>
<p>Once you generate your key put in the key parameter ( reproduced the line below for convenience ):</p>
<pre><code><script src="http://maps.google.com/maps?file=api&amp;v=2&amp;sensor=false& amp;key=[Your key here]"
type="text/javascript">
</code></pre>
<p>As is seen from the code above, I get the input through PHP and do the processing in Javascript. Now, I don't want users to get away with any kind of input ( javscript, dangerous HTML, etc ). I tried using the urlencode function in PHP. However, the encoded user input is not accepted by the javascript code and fails even on good input.</p>
<p>As a workaround to this problem I wrote a filterInput function in PHP that will replace/delete certain characters and thwart any attempt by the user to try and execute Javascript code through input. </p>
<p>This worked well. However, when the user did try give malicious input, say like "+alert("hello")+" with both the beginning and ending quotes included, the filterInput function trimmed the leading and tailing quotes and the resulting string is below:</p>
<pre><code>+alert("hello")+
</code></pre>
<p>Now when code below is executed:</p>
<pre><code>location1 = "<?= filterInput($_GET['location1']) ?>" || 0;
</code></pre>
<p>PHP substitues the function call with its return value like below:</p>
<pre><code>location1 = "+alert("hello")+" || 0;
</code></pre>
<p>Execution of the script halts with the line above with an error ( missing ; before statement )</p>
<p>Note, had I not trimmed the quotes and used $_GET['location1'] directly I would get.</p>
<pre><code>location1 = ""+alert("hello")+"" || 0;
</code></pre>
<p>alert("hello") would get executed!!</p>
<p>So, I am in a fix. If I filter input I get a javascript error on certain user input and if I don't filter input I allow users to execute any kind of javascript. </p>
<p>My questions then are:</p>
<ul>
<li>What is a proper and secure way to handle input on the web?</li>
<li>Is this kind of user input crossing languages ( from PHP to Javascript ) ok?</li>
<li>Apart from the user being able to execute javascript what other kinds of security threats does is this piece of code vulnerable?</li>
</ul>
<p>Thanks for reading!! </p>
<p>Please help.</p>
http://stackoverflow.com/questions/1033898/why-do-you-have-to-link-the-math-library-in-c/1034214#10342141Answer by ardsrk for Why do you have to link the math library in C?ardsrk2009-06-23T18:13:08Z2009-06-23T18:13:08Z<p>As ephemient said, the C library libc is linked by default and this library contains the implementations of stdlib.h, stdio.h and several other standard header files. Just to add to it, according to "<a href="http://www.network-theory.co.uk/docs/gccintro/" rel="nofollow">An Introduction to GCC</a>" the linker command for a basic "Hello World" program in C is as below:</p>
<pre><code>ld -dynamic-linker /lib/ld-linux.so.2 /usr/lib/crt1.o
/usr/lib/crti.o /usr/libgcc-lib /i686/3.3.1/crtbegin.o
-L/usr/lib/gcc-lib/i686/3.3.1 hello.o -lgcc -lgcc_eh -lc
-lgcc -lgcc_eh /usr/lib/gcc-lib/i686/3.3.1/crtend.o /usr/lib/crtn.o
</code></pre>
<p>Notice the option <strong>-lc</strong> in the third line that links the C library.</p>
http://stackoverflow.com/questions/968751/i-had-written-a-simple-cobol-prog-in-eclipse-but-i-am-unable-to-compile-run-that/968925#9689250Answer by ardsrk for I had written a simple cobol prog in ECLIPSE. But i am unable to compile,run that programardsrk2009-06-09T08:47:45Z2009-06-09T08:47:45Z<p>Though I have never compiled Cobol programs on Eclipse there are somethings that is common in program compilation irrespective of the programming language used and the IDE used to program in. Every IDE needs some stuff to compile/build the program you created using it:</p>
<ul>
<li>Access to the compiler for the programming language ( the colon/semi-colon separated directory paths listed in $PATH environment variable is used to figure out the location of the compiler ). Try <strong>echo $PATH</strong> on Linux or <strong>path</strong> on Windows command shell and see whether the cobol compiler is accessible from your $PATH variable</li>
<li>There could be a way to configure the compiler you use on a per project basis. Just look under Project->Properties from the menu bar and see if there is an option for configuring the compiler.</li>
<li>Next is setting the build variables to help the IDE find the libraries to compile and execute the program. Even this could be configured from the Project->Properties dialog. In that dialog look for <strong>Build Variables</strong> or something similar and set the necessary paramaters. In case of COBOL that would be the path needed to find the <strong>copy libraries</strong> you use in your programs.</li>
</ul>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/891504/programmatically-change-phone-symbian-speaker-volume1Programmatically change phone ( symbian ) speaker volumeardsrk2009-05-21T05:26:38Z2009-06-04T17:17:04Z
<p>I have been developing a radio application for Symbian phones ( 2nd , 3rd and 5th editions ).
It seems to me that changing the volume of the phone speaker programmatically is not straightforward. </p>
<p>Please help me in understanding how the phone volume could be controlled in Symbian.</p>
<p>Is there an API for controlling the phone volume?</p>
<p>I have looked at <strong>CAknVolumeControl</strong> and my impression is that its just a UI control depicting volume levels for the user to set. I think setting the phone volume to the level the user selects requires doing something more.</p>
<p>Please clarify</p>
http://stackoverflow.com/questions/939110/glatlngbounds-wrong-center-and-zoom-level/939158#9391581Answer by ardsrk for GLatLngBounds - wrong center and zoom levelardsrk2009-06-02T12:07:54Z2009-06-02T12:07:54Z<p>The last argument of the function call below specifies the zoom level:</p>
<pre><code>map.setCenter(new GLatLng(54.729378425601766, 25.279541015625), 15);
</code></pre>
<p><a href="http://www.codeproject.com/KB/scrapbook/googlemap.aspx" rel="nofollow">This article</a> talks a bit about zooming. So the zooming level is a bit too high.</p>
<p>Further <a href="http://econym.org.uk/gmap/basic14.htm" rel="nofollow">this tutorial</a> tells you how to fit the map zooming to properly display a set of markers.</p>
<p>Hope this helps</p>
http://stackoverflow.com/questions/924517/caknslider-control-within-a-caknview-container-not-as-a-setting-item1CAknSlider control within a CAknView container ( not as a Setting item )ardsrk2009-05-29T05:31:26Z2009-06-02T10:58:22Z
<p>I am amazed at how well the native Symbian components are implemented. One of them is CAknSlider. CAknSlider is a control that has a slider that users can use to slide it along a bar whose orientation can be vertical or horizontal.</p>
<p>Now when you slide the slider the sliding is very smooth and does not flicker. But if for some reason I were to implement a custom slider control I would not get it as neat as CAknSlider. </p>
<p>So my question is how can I figure out how CAknSlider is implemented under the hood. I want to implement a custom slider for my radio application to control the volume of audio stream.</p>
<p>Any idea how should I go about it.</p>
<p><hr /></p>
<p>[EDIT: In response to the comment from laalto]</p>
<p>The CAknSlider control is often implemented as a <a href="http://www.forum.nokia.com/info/sw.nokia.com/id/3eeab5af-ce57-4c25-bac0-d71d620bf6ad/S60%5FPlatform%5FSettings%5FScreen%5FExample.html" rel="nofollow">setting item in the settings screen</a>.</p>
<p>I have never seen it implemented as a component control within a compound control container ( like CCoeControl or CAknView ). This is what I have tried so far:</p>
<p>First I created a resource file describing the slider control like below:</p>
<pre><code>RESOURCE SLIDER r_volume_slider
{
layout=EAknCtSlider;
minvalue=0;
maxvalue=10;
step=1;
valuetype=EAknSliderValuePercentage;
minlabel="mute";
maxlabel="full";
}
</code></pre>
<p>Then I am using the resource file in my source to create the slider like below:</p>
<pre><code>void CVolumePopupAppView::ConstructL(const TRect& aRect)
{
// Create a window for this application view
CreateWindowL();
InitComponentArrayL( );
iSlider = new ( ELeave ) CAknSlider( );
TResourceReader reader;
iEikonEnv->CreateResourceReaderLC( reader, R_VOLUME_SLIDER );
iSlider->ConstructFromResourceL( reader );
CleanupStack::PopAndDestroy ( );
iSlider->SetContainerWindowL( *this );
iSlider->SetParent( this );
Components().AppendLC( iSlider );
CleanupStack::Pop ( iSlider );
// Set the windows size
SetRect(aRect);
// Activate the window, which makes it ready to be drawn
ActivateL();
}
</code></pre>
<p>Now here is the comparison between the CAknSlider as a setting item ( <a href="http://picasaweb.google.com/ardsrk/Misc#" rel="nofollow">Screenshot1</a> ) and the CAknSlider that gets created by the above described technique ( <a href="http://picasaweb.google.com/ardsrk/Misc#" rel="nofollow">Screenshot2</a> ). Notice that the one I create does not have a percentage value indicator and the minimum and maximum text labels even though I specified them in the resource. The look and feel is also pathetic. </p>
<p>Please help.</p>
http://stackoverflow.com/questions/919833/what-is-difference-between-windows-drivers-and-linux-drivers/919901#9199011Answer by ardsrk for What is difference between windows drivers and linux drivers?ardsrk2009-05-28T09:05:20Z2009-05-28T09:05:20Z<p>I think conceptually there is not much difference. Code in application programs make calls to the underlying API ( system calls ) and these APIs talk with the drivers that talk with the hardware.</p>
<p>Given that the language of implementation is C/C++ the only difference would be the way in which the drivers interact with the kernel code. This is where you would notice the biggest differences because the Windows API is GUI aware whereas the Linux API ( POSIX ) is not GUI aware. </p>
<p>One other difference however is that Linux drivers can be loaded as modules onto a running kernel without needing a restart. </p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/909084/appending-to-json-notation/909104#9091041Answer by ardsrk for Appending to JSON notation ?ardsrk2009-05-26T05:59:47Z2009-05-26T05:59:47Z<p>Assume that the JSON object is named as obj in the Ajax.Request Javascript function. You could now add to the parameters object like this:</p>
<pre><code>obj['parameters']['someproperty'] = 'somevalue';
</code></pre>
<p>Hope this helps</p>
http://stackoverflow.com/questions/510545/firefox-sidebar-extension-link-loaded-into-a-new-browser-tab-how-to/556809#5568090Answer by ardsrk for Firefox sidebar extension link loaded into a new browser tab. How-To?ardsrk2009-02-17T13:36:46Z2009-05-21T05:47:51Z<p>Actually, there is no way to load a webpage ( whose link was in another webpage loaded into the sidebar extension ) onto a new tab in the browser. The only way is to use javascript. That has to execute under privileged conditions ( meaning as part of an extension ) like below:</p>
<pre><code>gBrowser.addTab("http://www.google.com/");
</code></pre>
<p>EDIT:</p>
<p>The above technique of adding a browser tab did not work in this case. According to <a href="https://developer.mozilla.org/En/Code%5Fsnippets/Tabbed%5Fbrowser" rel="nofollow">this article</a> code running in the sidebar does not have access to the main window. So first up I got access to the browser window before using gBrowser. Here is the code taken from the website that I used and works properly:</p>
<pre><code>var mainWindow = window.QueryInterface(Components.interfaces.nsIInterfaceRequestor)
.getInterface(Components.interfaces.nsIWebNavigation)
.QueryInterface(Components.interfaces.nsIDocShellTreeItem)
.rootTreeItem
.QueryInterface(Components.interfaces.nsIInterfaceRequestor)
.getInterface(Components.interfaces.nsIDOMWindow);
</code></pre>
<p>After I got access to the browser window I accessed gBrowser through the getBrowser function like below: </p>
<pre><code>mainWindow.getBrowser().addTab("http://www.google.com/");
</code></pre>
<p>The opens up a new tab in the main window browser.</p>
http://stackoverflow.com/questions/857395/alternatives-to-preprocessor-directives4Alternatives to preprocessor directivesardsrk2009-05-13T11:21:32Z2009-05-14T10:25:08Z
<p>Hi,</p>
<p>I am engaged in developing a C++ mobile phone application on the Symbian platforms. One of the requirement is it has to work on all the Symbian phones right from 2nd edition phones to 5th edition phones. Now across editions there are differences in the Symbian SDKs. I have to use preprocessor directives to conditionally compile code that are relevant to the SDK for which the application is being built like below:</p>
<pre><code>#ifdef S60_2nd_ED
Code
#elif S60_3rd_ED
Code
#else
Code
</code></pre>
<p>Now since the application I am developing is not trivial it will soon grow to tens of thousands of lines of code and preprocessor directives like above would be spread all over. I want to know is there any alternative to this or may be a better way to use these preprocessor directives in this case.</p>
<p>Please help.</p>
http://stackoverflow.com/questions/334733/modify-replace-exe-on-the-fly0Modify/Replace Exe On the Flyardsrk2008-12-02T17:16:37Z2009-05-02T12:06:56Z
<p>Hi,</p>
<p>Whenever I download an update to firefox and apply it Kaspersky Antivirus alerts me that the file FIREFOX.EXE has been modified. I want to know how do they do it. Is it possible to do a simple program to demonstrate this trick. Like the executable would initially display "Hello, World!" on the prompt and when I replace/modify the sample executable it must display "Hello, World! Mod".</p>
<h2>Thank you.</h2>
http://stackoverflow.com/questions/1779331/how-to-build-the-programComment by ardsrk on how to build the programardsrk2009-11-22T17:30:17Z2009-11-22T17:30:17ZIf its a homework problem then please tag it as one. And what programming language do you want the program written in?http://stackoverflow.com/questions/1729798/memory-full-on-calling-a-method-through-its-method-pointer/1732528#1732528Comment by ardsrk on Memory full on calling a method through its method pointerardsrk2009-11-18T13:28:41Z2009-11-18T13:28:41Zlaalto: Though hard to find the leave was caused by a failed memory allocation. The lesson I have learned is to TRAP every call that can leave. Thanks.http://stackoverflow.com/questions/1737710/c-structs-dont-define-types/1737720#1737720Comment by ardsrk on C structs don't define types?ardsrk2009-11-15T14:58:41Z2009-11-15T14:58:41ZMikael is right, C++ does not require you to use struct while declaring types of the structure. Why was the answer down voted?http://stackoverflow.com/questions/1729242/good-c-code-to-read-for-learning/1730561#1730561Comment by ardsrk on Good C code to read for learningardsrk2009-11-14T13:16:31Z2009-11-14T13:16:31ZI would personally ask you to look at wget. It is a useful utility backed by friendly and talented bunch of programmers.http://stackoverflow.com/questions/1715224/very-fast-memcpy-for-image-processing/1715385#1715385Comment by ardsrk on Very fast memcpy for image processing?ardsrk2009-11-11T14:48:22Z2009-11-11T14:48:22Zbanister: don't forget to mail him that you used his code in your project ;) [ <a href="http://williamchan.ca/portfolio/assembly/ssememcpy/source/viewsource.php?id=readme.txt" rel="nofollow">williamchan.ca/portfolio/assembly/…</a> ] http://stackoverflow.com/questions/1686606/finding-out-the-time-taken-to-execute-a-function/1686639#1686639Comment by ardsrk on Finding out the time taken to execute a function ardsrk2009-11-06T11:48:12Z2009-11-06T11:48:12ZI think the library function that I call for actually matching the templates has a very sophisticated and efficient implementation. It just takes few hundred nanoseconds to complete. Thanks!http://stackoverflow.com/questions/1477072/behavior-of-c-after-destruction/1477089#1477089Comment by ardsrk on Behavior of C++ after destructionardsrk2009-09-30T17:25:07Z2009-09-30T17:25:07Z@ChrisW - yeh this would have been even more easier to implement. Its not the messageProcessor I want to delete but the CSocketReader object. Anyway, I got your idea. Thanks.
http://stackoverflow.com/questions/1477072/behavior-of-c-after-destruction/1477134#1477134Comment by ardsrk on Behavior of C++ after destructionardsrk2009-09-29T05:27:17Z2009-09-29T05:27:17ZThis solution worked without needing significant changes to the source. Thanks.http://stackoverflow.com/questions/1477072/behavior-of-c-after-destruction/1477089#1477089Comment by ardsrk on Behavior of C++ after destructionardsrk2009-09-29T05:26:21Z2009-09-29T05:26:21ZThis is a neat solution. Except that if ResponseReceived method leads to a chain of method calls and the decision to delete the SocketReader object is made at the last call I would need to return bool all along the chain of calls.http://stackoverflow.com/questions/1345115/c-class-design-problem/1345136#1345136Comment by ardsrk on C++ class design problemardsrk2009-08-29T05:10:41Z2009-08-29T05:10:41Z@rocknroll: I would call MsnUtility::Instance() method during single threaded startup of the application, say in one of the class's constructors. I think that would suffice to make it thread safe. What say?http://stackoverflow.com/questions/1345115/c-class-design-problem/1345225#1345225Comment by ardsrk on C++ class design problemardsrk2009-08-28T05:57:54Z2009-08-28T05:57:54ZVijay, does instance need to be a static class variable? What are the drawbacks if I make instace a local static variable and declare it in the MsnUtility::Instance() method itself as Abhay suggests.http://stackoverflow.com/questions/1345115/c-class-design-problem/1345147#1345147Comment by ardsrk on C++ class design problemardsrk2009-08-28T05:20:22Z2009-08-28T05:20:22ZMaciek: I am not going to need multiple instances of MsnUtility. Just a single instance that contains all necessary protocol variables and the associated setter/getter methods.http://stackoverflow.com/questions/1222244/loop-through-get-resultsComment by ardsrk on loop through $_GET resultsardsrk2009-08-03T13:06:04Z2009-08-03T13:06:04Zsanitize the user input before doing anything with them
http://stackoverflow.com/questions/1187687/what-undefined-behaviour-does-this-c-code-containComment by ardsrk on What undefined behaviour does this C++ code containardsrk2009-07-27T17:22:39Z2009-07-27T17:22:39Zoops! I will forever remain a dyslexichttp://stackoverflow.com/questions/1187687/what-undefined-behaviour-does-this-c-code-contain/1187763#1187763Comment by ardsrk on What undefined behaviour does this C++ code containardsrk2009-07-27T12:59:56Z2009-07-27T12:59:56ZThis was the Eureka moment