User kgiannakakis - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T18:51:50Zhttp://stackoverflow.com/feeds/user/24054http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1914317/post-method-not-working-in-firefox/1914343#19143431Answer by kgiannakakis for Post method not working in firefoxkgiannakakis2009-12-16T12:21:23Z2009-12-16T12:21:23Z<p>Make sure you are returning the correct content-type header from the server. You will need <code>"content-type: 'application/json'"</code>. Also make sure that JSON is properly formatted, although usually IE is more strict than Firefox.</p>
http://stackoverflow.com/questions/1914195/changing-the-color-of-p-elements-with-clickfunction/1914207#19142070Answer by kgiannakakis for changing the color of p elements with .click(function)kgiannakakis2009-12-16T11:50:52Z2009-12-16T11:50:52Z<p>Try:</p>
<pre><code>$("p").not(this)
</code></pre>
http://stackoverflow.com/questions/1896064/recommended-integration-mechanism-for-bi-directional-authenticated-encrypted-co/1914162#19141620Answer by kgiannakakis for Recommended integration mechanism for bi-directional, authenticated, encrypted connection in C client/JVM server setup?kgiannakakis2009-12-16T11:42:34Z2009-12-16T11:42:34Z<p>I would go with the Asynchronous Messaging. TCP socket connections don't work in an enterprise environment, using a database for asynchronous communication is an awful idea and with the RESTful Web Service you will need to implement an awful lot of things yourself.</p>
<p>Perhaps you could use a JEE server that offers messaging capabilities (like Glassfish or JBoss) and implement your Java application there. Chances of the message server failing are likely far less than the chances of your own applications failing (provided that are installed in the same or similar machines). </p>
http://stackoverflow.com/questions/1895101/asp-net-chat-with-wcf/1914116#19141160Answer by kgiannakakis for ASP.NET Chat with WCFkgiannakakis2009-12-16T11:33:55Z2009-12-16T11:33:55Z<p>Silverlight is the natural choice for a WCF chat application, since you can build a richer User Interface and most importantly you interact directly with the WCF services. If you choose Ajax, then all the client programming needs to be done in Javascript. You can create an <a href="http://msdn.microsoft.com/en-us/library/bb924552.aspx" rel="nofollow">Ajax enabled WCF service</a>, but in reality you need to talk with it through a proxy. This is similar to a JSON Rest like service and doesn't offer the full potential of WCF technology (chaining callbacks for example).</p>
<p>An alternative to WCF is to implement simple HTTP services (using ASP.NET MVC for example) and connect to them with a javascript library like jQuery. Of course polling is necessary, but this is what most web sites in cases like this are doing anyway. The solution has the advantage of being cross-platform, but it will probably need more time to develop and can't have as rich interface as the Silverlight none.</p>
http://stackoverflow.com/questions/1913228/swapping-classes-on-click-with-jquery-by-using-elements-class/1913263#19132631Answer by kgiannakakis for Swapping classes on click with jQuery, by using elements classkgiannakakis2009-12-16T08:55:45Z2009-12-16T08:55:45Z<p>You could do something like this:</p>
<pre><code>classNames = ["news", "communityLife", "youth"];
$.each(classNames, function(n, className) {
$("#infosplashnav a." + className).click(function () {
$(this).parents("ul:eq(0)").removeClass();
$(this).parents("ul:eq(0)").addClass(className);
});
});
</code></pre>
http://stackoverflow.com/questions/1908342/is-there-a-visualizer-for-jquery-selectors/1908392#19083923Answer by kgiannakakis for Is there a visualizer for jQuery selectors?kgiannakakis2009-12-15T15:55:50Z2009-12-15T15:55:50Z<p>Use firebug. Open the console. Run something like this:</p>
<pre><code>$("p").css('background-color', 'blue');
</code></pre>
<p>and press 'Run'.</p>
http://stackoverflow.com/questions/1908229/jquery-whats-the-difference-between-after-and-insertafter/1908294#19082941Answer by kgiannakakis for jQuery: What's the difference between after() and insertAfter()kgiannakakis2009-12-15T15:41:45Z2009-12-15T15:41:45Z<p>Check the <a href="http://docs.jquery.com/Manipulation/insertAfter" rel="nofollow">documentation</a>:</p>
<pre><code>$("#foo").after("p")
</code></pre>
<p>is the same as:</p>
<pre><code>$("p").insertAfter("#foo");
</code></pre>
http://stackoverflow.com/questions/1907773/comparing-two-bytearrays-c/1907811#190781111Answer by kgiannakakis for Comparing two ByteArrays C#kgiannakakis2009-12-15T14:26:08Z2009-12-15T14:31:28Z<p>If you want to know why this happens, this is because ASCII encoding can't handle characters above 128. The first four characters are converted to '?'.</p>
<p>Since you have an image in the byte array, you shouldn't try to convert it to text in order to compare the two arrays. For comparison's sake, you should iterate through all bytes and print their values. It would be better to use hex notation for this.</p>
http://stackoverflow.com/questions/1906436/is-it-theoretically-impossible-to-get-the-size-of-a-file-that-is-going-to-be-uplo/1906594#19065940Answer by kgiannakakis for Is it theoretically impossible to get the size of a file that is going to be uploaded using Javascript?kgiannakakis2009-12-15T10:46:08Z2009-12-15T10:46:08Z<p>This question is common among non-technical users and novice programmers, who mainly concentrate their minds on how things are done and not on why. Sure, you may find a way to do it in Internet Explorer using ActiveX or in Firefox using an extension, but you still need to stop and think if this is the right thing to do. You need to grant on a remote site access to the user's filesystem and the price to pay for this is too big, for the very little revenue of knowing on client side what the size of the file is.</p>
<p>So, without diving into specifications or asking questions you should know that this is impossible, because otherwise it will impose a great security risk on the HTML protocol and the browsers.</p>
<p>On rare occasions this is necessary, the right thing to do is to use a cross-browser plug-in, like a Java applet or Flash. These plug-ins will need to be signed, so that the users know to whom are granting access to their file systems.</p>
http://stackoverflow.com/questions/1884060/is-there-a-free-tool-to-convert-mysql-dump-to-postgres/1906061#19060610Answer by kgiannakakis for Is there a free tool to convert mysql dump to postgreskgiannakakis2009-12-15T08:52:43Z2009-12-15T08:52:43Z<p>I found <a href="http://en.wikibooks.org/wiki/Converting%5FMySQL%5Fto%5FPostgreSQL" rel="nofollow">this</a> and <a href="http://jmz.iki.fi/blog/programming/converting%5Fmysql%5Fdatabase%5Fto%5Fpostgresql" rel="nofollow">this</a> for manual conversion, but I suppose you already tried something similar without success.</p>
<p>You could try a tool like <a href="http://www.aquafold.com/index.html" rel="nofollow">Aqua Data Studio</a>. It runs on OS X, it isn't free, however you can evaluate it for 14 days. It has a graphical interface that will allow you to export/import tables (both from MySQL and PostgreSQL) either as files or as insert statements.</p>
http://stackoverflow.com/questions/1905929/what-does-it-mean-that-software-license-is-not-royalty-free/1905936#19059360Answer by kgiannakakis for What does it mean that software license is not royalty free?kgiannakakis2009-12-15T08:23:13Z2009-12-15T08:23:13Z<p>It means that you need to pay for every installation/deployment. A royalty free license means that you pay once for the license and then you are allowed to install the software as many times as you wish.</p>
http://stackoverflow.com/questions/1899814/what-is-the-best-way-to-determine-your-web-page-has-been-made-active-including-s/1899921#18999210Answer by kgiannakakis for What is the best way to determine your web page has been made active (including switching browser tabs)?kgiannakakis2009-12-14T09:39:26Z2009-12-14T09:39:26Z<p>I suppose that what you are asking is browser specific. There is nothing in HTML specification regarding how a window or a tab is minimized. I suggest that you try to emulate the minimized event. Start a javascript timer and reset it every time the user interacts with the page. I wouldn't bother with mouse events. I would only reset the timer when the user clicked somewhere at the page. When the timer resets, change the title to display number of unread messages and set a periodical Ajax call to update the number. I believe that you should only change the title only if new messages appear.</p>
<p>This technique will work very well on the inactivation phase. Even if the user doesn't switch tab, the alert message will appear if the page is idle. This is no problem at all, in fact it could be desired behaviour. When the page becomes active again, present the user with a message like the one that appears in SO when new answers have been submitted to a question. Then the user will get alerted that new messages have appeared and will have to click on the notification close button, thus forcing the title to change back.</p>
http://stackoverflow.com/questions/1899569/extended-function-jquery/1899593#18995931Answer by kgiannakakis for Extended function jquerykgiannakakis2009-12-14T08:13:19Z2009-12-14T08:13:19Z<p>Probably:</p>
<pre><code>myObject: {}
</code></pre>
<p>is what you are looking for.</p>
<p>You can then add properties to it:</p>
<pre><code>myObject.name = "Name";
</code></pre>
http://stackoverflow.com/questions/1899196/arm7-usb-programming/1899309#18993091Answer by kgiannakakis for arm7 usb programmingkgiannakakis2009-12-14T06:47:57Z2009-12-14T06:47:57Z<p>For the ARM side you need a USB Stack. For the PC side you need to implement an USB driver and an application interfacing the driver. It is therefore easier to stick to one of the common profiles (HID, Mass Storage, Virtual COM). For all these you will be able to find USB stacks and not to have to implenent your own. Also you won't need to implement a USB driver for the PC.</p>
<p>I think that the easiest thing to do is to use a Virtual COM approach. From the PC side it would like you are accessing a Serial Port. The speed however can be higher than standard RS232 ports. I have found this <a href="http://sourceforge.net/projects/lpcusb/files/" rel="nofollow">USB Stack</a> targetting an earlier processor. You could adapt it for your needs or use it as reference. Generally a Virtual COM driver for the PC will be provided along with the ARM USB stack.</p>
<p>Another approach is to use <a href="http://libusb-win32.sourceforge.net/" rel="nofollow">libusb</a>. This will allow you to interact with USB without writing a kernel driver.</p>
<p>For application notes and commercial USB stacks look <a href="http://www.standardics.nxp.com/support/documents/?type=software" rel="nofollow">here</a>. If you are determined to write your own stack and driver, <a href="http://www.jungo.com/st/usbware%5Fembedded%5Fusb%5Fsolution.html" rel="nofollow">Jungo</a> is the industry leader for embedded USB stacks and drivers.</p>
http://stackoverflow.com/questions/1899193/jquery-post-ajax-not-showing-up-in-ie-works-in-ff/1899221#18992210Answer by kgiannakakis for jQuery POST/AJAX not showing up in IE, works in FFkgiannakakis2009-12-14T06:21:49Z2009-12-14T06:21:49Z<p>It seems you are expecting a plain string as response: <code>dataType: 'text'</code>. Are you sure that this is what you are returning and that you also send the appropriate header (<code>content-type: 'text/plain'</code>)</p>
http://stackoverflow.com/questions/1889034/what-programming-languages-target-j2me/1889115#18891151Answer by kgiannakakis for What programming languages target J2ME?kgiannakakis2009-12-11T16:15:07Z2009-12-11T16:15:07Z<p>The <a href="http://www.forum.nokia.com/devices/5000/" rel="nofollow">Nokia 5000</a> supports applications in J2ME and <a href="http://www.adobe.com/products/flashlite/" rel="nofollow">Flash Lite</a>. All other languages should be implemented on top of these (mainly on J2ME). These implementations will definitely be slow and probably very restricted, as J2ME is itself slow and a cut-down version of full Java.</p>
<p>However you shouldn't be intimidating by Java. Download <a href="http://www.netbeans.org/" rel="nofollow">Netbeans</a> and optionally the SDK from Nokia to get you started. If you have experience in any other object-oriented language, you should be able to code your first application quickly.</p>
http://stackoverflow.com/questions/1886818/mime-type-for-text-file-through-xslt/1886886#18868861Answer by kgiannakakis for mime type for text file through xsltkgiannakakis2009-12-11T09:34:05Z2009-12-11T09:34:05Z<p>The MIME type has nothing to do with how a file was generated. It is used to assist the browser to display it correctly. If you want the browser to open it as text use "text/plain". If you want to open it as html use "text/html".</p>
http://stackoverflow.com/questions/1881716/merging-jquery-objects/1881748#18817481Answer by kgiannakakis for Merging jQuery objectskgiannakakis2009-12-10T15:28:19Z2009-12-10T15:28:19Z<p>You could use the <a href="http://docs.jquery.com/Traversing/add" rel="nofollow">add</a> method.</p>
http://stackoverflow.com/questions/1881439/java-me-out-of-memory/1881454#18814540Answer by kgiannakakis for Java ME out of memorykgiannakakis2009-12-10T14:49:01Z2009-12-10T14:49:01Z<p>Are you keeping references to the forms or the images? These will keep them from being garbage collected and will cause out of memory errors.</p>
<p>It is hard to tell without some source code. Anyway, it will be better to re-architect your Midlet not to create new forms, but to reuse the same one.</p>
http://stackoverflow.com/questions/1879580/why-include-header-in-the-method-definition-file/1879617#18796171Answer by kgiannakakis for Why include header in the method definition file?kgiannakakis2009-12-10T08:56:06Z2009-12-10T08:56:06Z<p>It depends on what you define in the header file. If for example you have some type or macro definitions that need to be accessed both by the sum.c functions and external files, then you need to include it everywhere.</p>
<p>You may also want to have two header files per source file. A private one, included only by sum.c. This will contain things only needed by sum.c functions and the purpose of it is to increase code readability.</p>
<p>The second "public" header file will contain the things needed by callers of the sum.c functions. You don't need to include this in the sum.c file.</p>
http://stackoverflow.com/questions/1874127/when-should-i-wrap-a-dom-object-with/1874138#18741382Answer by kgiannakakis for When should i wrap a DOM object with $()?kgiannakakis2009-12-09T14:08:15Z2009-12-09T14:21:30Z<p>Wrapping a DOM object with $() will convert it to a jQuery Wrapped Set Element. This way you should be able to call jQuery methods with it (val(), attr(), show(), hide(), serialize()).</p>
<p>If however you need to get or set pure javascript properties, then you shouldn't wrap it.</p>
http://stackoverflow.com/questions/1873787/button-click-function-not-working-on-ie/1873869#18738692Answer by kgiannakakis for button click function not working on IE?kgiannakakis2009-12-09T13:23:26Z2009-12-09T13:23:26Z<p>It isn't the button click that isn't working, but rather the code in the event handler.</p>
<p>Since you've decided to use jQuery there is no reason to prefer getElementById over the powerful jQuery selectors. Also, you shouldn't do the Ajax call the hard way, but rather use the <a href="http://docs.jquery.com/Ajax/jQuery.post" rel="nofollow">$.post</a> method. The problem you are experiencing probably has to do with the Ajax request code.</p>
http://stackoverflow.com/questions/1873505/bit-operations-in-c/1873529#18735293Answer by kgiannakakis for Bit operations in Ckgiannakakis2009-12-09T12:13:52Z2009-12-09T12:20:30Z<p>Turn the flag on:</p>
<pre><code>register |= (1<<LAST_BIT);
</code></pre>
<p>Turn the flag off:</p>
<pre><code>register &= ~(1<<LAST_BIT);
</code></pre>
<p>Another way is to use union bit-fields:</p>
<pre><code>union
{
uint32_t value;
struct
{
unit32_t body:28;
unit32_t reserved:2;
unit32_t last_bit:1;
unit32_t used_bit:1;
} fields;
} MyResister;
MyResister.fields.last_bit = 1;
MyResister.fields.used_bit = 0;
</code></pre>
http://stackoverflow.com/questions/1873273/how-to-pass-parameters-to-tomcat-in-ubuntu/1873321#18733212Answer by kgiannakakis for HOW to Pass parameters to tomcat in ubuntu?kgiannakakis2009-12-09T11:34:17Z2009-12-09T11:34:17Z<p>This probably needs to go in the JAVA_OPTS variable, in the catalina.sh file.</p>
http://stackoverflow.com/questions/1864158/how-to-make-a-gui-that-works-on-all-window-mobile-phones/1872539#18725390Answer by kgiannakakis for How to make a GUI that works on all window mobile phones?kgiannakakis2009-12-09T09:06:15Z2009-12-09T09:06:15Z<p>This is far from being an easy task. You can follow some guidelines, but the only thing that will actually work is to always test the User Interface in all possible screen resolutions. Emulators are a good way to start, however it will be better to have an actual device. Some things like font sizes and text readability can only be tested in a real device. So, these are my advices:</p>
<ul>
<li>Try to use docking for positioning your controls.</li>
<li>You need to be able to handle orientation changes correctly. Using docking helps, but again you always need to test in different screen resolutions.</li>
<li>At some point you will find out that it is inevitable to detect the screen size and adapt the User Interface dynamically. I don't agree that you should restrict yourself to only display what can fit in the smallest screen. A professional application should adapt itself to the available screen size and take full advantage of it.</li>
<li>Structure your application so that it is easy to support new screen resolutions. Make the main User Interface code screen size agnostic. Make it get all information about dynamic resizing - positioning from a configuration class. This way you only need to enhance a single item in your code in order to support a new screen resolution.</li>
</ul>
<p>And of course:</p>
<ul>
<li>Test in all possible screen resolutions. After even a minor change to the User Interface, retest.</li>
</ul>
http://stackoverflow.com/questions/1866661/jquery-validation-plugin-how-to-create-your-own-messages/1866674#18666741Answer by kgiannakakis for jQuery validation plugin: How to create your own messageskgiannakakis2009-12-08T12:34:56Z2009-12-08T12:34:56Z<p>Messages option should work. See this <a href="http://stackoverflow.com/questions/1838695/how-to-change-the-content-of-this-field-is-required-in-jquery-form-validation-p">question</a>.</p>
http://stackoverflow.com/questions/1866080/is-there-any-standard-to-consume-a-webservice-inside-of-native-c/1866138#18661381Answer by kgiannakakis for Is there any standard to consume a webservice inside of native C++?kgiannakakis2009-12-08T10:40:05Z2009-12-08T10:40:05Z<p>If you mean SOAP services, already answered <a href="http://stackoverflow.com/questions/45086/c-and-soap">here</a> and <a href="http://stackoverflow.com/questions/450488/a-good-c-library-for-soap">here</a>.</p>
http://stackoverflow.com/questions/1865552/selecting-the-first-n-items-with-jquery/1865556#18655563Answer by kgiannakakis for Selecting the first "n" items with jQuery kgiannakakis2009-12-08T08:39:22Z2009-12-08T08:39:22Z<p>Use lt pseudo selector:</p>
<pre><code>$("a:lt(n)")
</code></pre>
<p>This matches the elements before the nth one (the nth element excluded). Numbering starts from 0.</p>
http://stackoverflow.com/questions/1864956/byte-precision-pointer-arithmetic-in-c-when-sizeofchar-1/1864971#18649710Answer by kgiannakakis for Byte precision pointer arithmetic in C when sizeof(char) != 1kgiannakakis2009-12-08T06:21:41Z2009-12-08T06:21:41Z<p>The C99 standard defines the uint8_t that is one byte long. If the compiler doesn't support this type, you could define it using a typedef. Of course you would need a different definition, depending on the the platform and/or compiler. Bundle everything in a header file and use it everywhere.</p>
http://stackoverflow.com/questions/1864892/jquery-dropdown-menu-functionality-based-on-click-events-hiding-help/1864958#18649580Answer by kgiannakakis for jQuery Dropdown Menu Functionality based on Click Events (hiding help)kgiannakakis2009-12-08T06:17:50Z2009-12-08T06:17:50Z<p>Add a class to all the elements that need to be hidden. When clicking outside the dropdown box or when clicking on a "Show" link, first hide everything. If it is a "Show" link, then show what needs to be shown.</p>
http://stackoverflow.com/questions/1895101/asp-net-chat-with-wcf/1914116#1914116Comment by kgiannakakis on ASP.NET Chat with WCFkgiannakakis2009-12-16T13:11:13Z2009-12-16T13:11:13ZIt isn't only the UI. As far as I know you can't do what you are describing with an Ajax enabled WCF service. Polling will be necessary.http://stackoverflow.com/questions/1914544/replacing-div-content-using-jquery-in-a-jspComment by kgiannakakis on Replacing div content using jquery in a jspkgiannakakis2009-12-16T13:09:03Z2009-12-16T13:09:03ZWhat part is not working? Do you see the "loading..." message and then nothing more or is something else? Also, have you tried firebug to see if any errors are reported?http://stackoverflow.com/questions/1913228/swapping-classes-on-click-with-jquery-by-using-elements-class/1913263#1913263Comment by kgiannakakis on Swapping classes on click with jQuery, by using elements classkgiannakakis2009-12-16T10:03:57Z2009-12-16T10:03:57ZSee this question <a href="http://stackoverflow.com/questions/1227286/get-class-list-for-element-with-jquery" rel="nofollow" title="get class list for element with jquery">stackoverflow.com/questions/1227286/…</a>. This is not straightforward, because an element can have more than one classes.http://stackoverflow.com/questions/1884060/is-there-a-free-tool-to-convert-mysql-dump-to-postgres/1906061#1906061Comment by kgiannakakis on Is there a free tool to convert mysql dump to postgreskgiannakakis2009-12-16T08:39:18Z2009-12-16T08:39:18ZI don't think full database back up is supported, but I am not 100% sure about it.http://stackoverflow.com/questions/1908365/how-to-put-new-line-in-jsps-epression-languageComment by kgiannakakis on How to put "new line" in JSP's Epression Language?kgiannakakis2009-12-15T15:58:02Z2009-12-15T15:58:02ZYou probably want to use <br/>http://stackoverflow.com/questions/1908250/how-to-become-a-good-python-coder/1908266#1908266Comment by kgiannakakis on how to become a good python coderkgiannakakis2009-12-15T15:47:24Z2009-12-15T15:47:24Z@aforloney: I believe that most SO users are conscious enough to prefer to write a comment before downvoting.http://stackoverflow.com/questions/1908250/how-to-become-a-good-python-coderComment by kgiannakakis on how to become a good python coderkgiannakakis2009-12-15T15:43:59Z2009-12-15T15:43:59ZThis is better to be asked as community wiki.http://stackoverflow.com/questions/1907773/comparing-two-bytearrays-cComment by kgiannakakis on Comparing two ByteArrays C#kgiannakakis2009-12-15T14:24:07Z2009-12-15T14:24:07ZAnd the question is? Do you want to know why the two arrays are different or something else?http://stackoverflow.com/questions/1899814/what-is-the-best-way-to-determine-your-web-page-has-been-made-active-including-s/1899921#1899921Comment by kgiannakakis on What is the best way to determine your web page has been made active (including switching browser tabs)?kgiannakakis2009-12-14T10:35:16Z2009-12-14T10:35:16ZThe banner appears when the page is idle for a number of seconds/minutes. By idle I mean the user clicks nowhere at the page. When the user returns to the page the banner is there. If the user was there all the time and haven't clicked, then all right, not big deal for the banner to appear. The banner goes away and the title changes back, when the user acknowledges it.http://stackoverflow.com/questions/1899196/arm7-usb-programming/1899309#1899309Comment by kgiannakakis on arm7 usb programmingkgiannakakis2009-12-14T08:10:37Z2009-12-14T08:10:37ZHave a look at <a href="http://wiki.sikken.nl/index.php?title=LPCUSB" rel="nofollow">wiki.sikken.nl/index.php?title=LPCUSB</a>http://stackoverflow.com/questions/1873787/button-click-function-not-working-on-ie/1873869#1873869Comment by kgiannakakis on button click function not working on IE?kgiannakakis2009-12-09T14:10:44Z2009-12-09T14:10:44Zdocument.getElementById("fname").value will become $("#fname").val(). For the post method you need to supply a callback in order to read the response.http://stackoverflow.com/questions/1873505/bit-operations-in-c/1873529#1873529Comment by kgiannakakis on Bit operations in Ckgiannakakis2009-12-09T12:54:09Z2009-12-09T12:54:09ZBit fields are definitely non-portable and compiler specific. However many compilers (especially for embedded processors) behave as expected. In such cases they are very handy.http://stackoverflow.com/questions/1873505/bit-operations-in-c/1873542#1873542Comment by kgiannakakis on Bit operations in Ckgiannakakis2009-12-09T12:31:38Z2009-12-09T12:31:38Z+1: Xor should be faster for turning off a bit than negation and logical and.http://stackoverflow.com/questions/1867271/replacing-a-function-definition-in-cComment by kgiannakakis on Replacing a function definition in Ckgiannakakis2009-12-08T14:33:29Z2009-12-08T14:33:29Z@Neil: the linked question isn't exactly the same. It is mostly about C++ and Linux; doesn't help much with plain C.http://stackoverflow.com/questions/1867271/replacing-a-function-definition-in-c/1867288#1867288Comment by kgiannakakis on Replacing a function definition in Ckgiannakakis2009-12-08T14:31:28Z2009-12-08T14:31:28ZYou can use #ifdef DEBUGGING or something to only redefine malloc when it is needed to. By default the redefintion shouldn't take place - no harm for the developer who isn't aware of the trick.