User epatel - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T19:07:35Zhttp://stackoverflow.com/feeds/user/842http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1815982/problem-with-including-an-image-in-shell-program/1815991#18159910Answer by epatel for Problem with including an "image" in shell program.epatel2009-11-29T16:34:04Z2009-11-29T16:34:04Z<p>Try to use the command <code>cat</code> to output the content of the <code>image.0</code> file</p>
<pre><code>cat ./image.0
</code></pre>
http://stackoverflow.com/questions/1813649/how-many-people-were-involved-in-a-project-based-on-revision-control-system/1813776#18137761Answer by epatel for How many people were involved in a project? Based on Revision Control Systemepatel2009-11-28T21:01:51Z2009-11-28T21:01:51Z<p>For subversion</p>
<pre><code>svn log -q svn://path/to/repo | cut -f 3 -d " " | sort -u
</code></pre>
http://stackoverflow.com/questions/58640/great-programming-quotes471Great programming quotesepatel2008-09-12T10:39:20Z2009-11-27T21:39:17Z
<p>There are a lot of great programming quotes out there. Which do you like?</p>
<p>Today (Sept 12, 2008) I heard a new one from a friend, Lars-Gunnar, he said "<a href="http://sv.wikipedia.org/wiki/Gud" rel="nofollow">Gud</a> finns i Emacs" (in Swedish). This basically means "<a href="http://en.wikipedia.org/wiki/God" rel="nofollow">God</a> is in Emacs". Still laughing about it here :) What he meant was that a function "<a href="http://www.emacswiki.org/cgi-bin/wiki/GrandUnifiedDebugger" rel="nofollow">gud is grand-unified-debugger</a>" is in Emacs.</p>
<p>A great one I think all programmers should know is <a href="http://c2.com/cgi/wiki?LazinessImpatienceHubris" rel="nofollow">The Three Great Virtues of a Programmer</a>.</p>
http://stackoverflow.com/questions/1808673/how-to-include-resources-in-iphone-static-library/1810364#18103640Answer by epatel for How to include resources in iphone static library ?epatel2009-11-27T19:37:18Z2009-11-27T19:43:18Z<p>You can try to use <code>xxd</code> with the <code>-i</code> command line parameter and use a wrapper function/method that feeds the data into a <code>NSData</code></p>
<pre><code>- (UIImage*)getMyImage
{
return [UIImage imageWithData:[NSData dataWithBytes:file_ext
length:file_ext_len]];
}
</code></pre>
http://stackoverflow.com/questions/1798118/what-do-you-do-to-write-better-code/1808742#18087420Answer by epatel for What do you do to write better code?epatel2009-11-27T13:21:00Z2009-11-27T13:21:00Z<p>I believe good code is code that are <em>used</em>. </p>
<p>So, my suggestion is to write software other people use, either as <em>end users</em> or other <em>developers</em> if you are designing a framework. I think doing full working program with all details are good to understand all parts of a program. Listen to your users and try to solve their <em>problems</em></p>
<p>This will put you in front of the <em>problems</em> that are associated with useful programs. Non-linear, cut&paste, printing, etc</p>
<p>Because, if you have a great program, what can you say from the outside just at looking at the program running.</p>
http://stackoverflow.com/questions/1780358/crash-at-splash-screen-iphone/1780510#17805100Answer by epatel for Crash At Splash Screen, iPhoneepatel2009-11-23T00:10:53Z2009-11-23T00:10:53Z<p>Have a look at this blog entry that describes how to create a splash screen that will fade out and you should be able to set the delay time for how log it will be visible. Look where the timer is created.</p>
<p><a href="http://icodeblog.com/2009/03/18/iphone-game-programming-tutorial-part-3-splash-screen/" rel="nofollow">http://icodeblog.com/2009/03/18/iphone-game-programming-tutorial-part-3-splash-screen/</a></p>
http://stackoverflow.com/questions/1780410/store-a-string-in-an-int/1780454#1780454-1Answer by epatel for store a string in an intepatel2009-11-22T23:49:40Z2009-11-22T23:59:12Z<p>One common way to do this in C is to use a <code>union</code>. It could look like</p>
<pre><code>union u_intstr {
char fourChars[4];
int singleInt;
};
</code></pre>
<p>Set the chars into the union as</p>
<pre><code>union u_intstr myIntStr;
myIntStr.fourChars[0] = ch1;
myIntStr.fourChars[1] = ch2;
myIntStr.fourChars[2] = ch3;
myIntStr.fourChars[3] = ch4;
</code></pre>
<p>and then access the int as</p>
<pre><code>printf("%d\n", myIntStr.singleInt);
</code></pre>
<p><strong>Edit</strong></p>
<p>In your case for 16 ints the union could be extended to look like</p>
<pre><code>union u_my16ints {
char str[16*sizeof(int)];
int ints[16];
};
</code></pre>
http://stackoverflow.com/questions/1749459/why-does-my-object-take-up-64-bytes-and-not-32/1749499#17494991Answer by epatel for Why does my object take up 64 bytes and not 32?epatel2009-11-17T15:07:09Z2009-11-17T15:07:09Z<p>I imagine you will have a <code>vtable</code> pointer defined for your objects. Either because you have RTTI enabled or any virtual method (including the destructor) will add a <code>vtable</code></p>
<p><a href="http://en.wikipedia.org/wiki/Virtual%5Fmethod%5Ftable" rel="nofollow">http://en.wikipedia.org/wiki/Virtual_method_table</a></p>
<blockquote>
<p>Typically, the compiler creates a separate vtable for each class. When an object is created, a pointer to this vtable, called the virtual table pointer or vpointer, is added as a hidden member of this object (becoming its first member unless it's made the last[2]). The compiler also generates "hidden" code in the constructor of each class to initialize the vpointers of its objects to the address of the corresponding vtable.</p>
</blockquote>
http://stackoverflow.com/questions/1741178/generic-factory-in-c/1741440#17414401Answer by epatel for Generic factory in C++epatel2009-11-16T10:53:38Z2009-11-16T10:53:38Z<p>I have answered in another SO question about C++ factories. Please see <a href="http://stackoverflow.com/questions/410823/factory-method-implementation-c/534396#534396">there</a> if a flexible factory is of interest. I try to describe an old way from ET++ to use macros which has worked great for me.</p>
<p><a href="http://www.ubilab.org/publications/wei94.html" rel="nofollow">ET++</a> was a project to port old MacApp to C++ and X11. In the effort of it Eric Gamma etc started to think about <em>Design Patterns</em></p>
http://stackoverflow.com/questions/1740588/detecting-the-use-of-private-apis/1740901#17409013Answer by epatel for Detecting the use of private APIsepatel2009-11-16T08:51:07Z2009-11-16T08:51:07Z<p>You can use <code>nm</code> to scan for which library uses the <code>ivar</code> in question.</p>
<pre><code>% nm static_lib.a | grep name_of_ivar
</code></pre>
<p>If you get a line, I think with a capital <code>U</code>, with the name of the <code>ivar</code> you probably have a suspect.</p>
http://stackoverflow.com/questions/1718346/removing-macro-in-legacy-code/1718424#17184243Answer by epatel for Removing macro in legacy codeepatel2009-11-11T22:12:39Z2009-11-11T22:12:39Z<p>How about using a <em>find & replace</em> function in your favorite editor...I think it would work fine in the example you gave in your question. Replace <code>FXX</code> with <code>pField->GetValue</code> and then remove the <code>#define</code> line</p>
http://stackoverflow.com/questions/1672298/obj-c-method-not-being-recognized-in-same-class/1672312#16723124Answer by epatel for Obj-C method not being recognized in same classepatel2009-11-04T08:02:32Z2009-11-04T08:02:32Z<p>You should also remove the line</p>
<pre><code>City *city = [[City alloc] init];
</code></pre>
<p>And put <code>City *</code> in the <code>for</code> statement</p>
<pre><code>for (City *city in cityArray)
</code></pre>
<p>This will make it a little short and remove a memory leak</p>
http://stackoverflow.com/questions/469696/what-is-your-most-useful-c-c-snippet/1664229#16642294Answer by epatel for What is your most useful C/C++ snippet?epatel2009-11-02T22:48:35Z2009-11-02T22:48:35Z<p>A simple <code>hexdump</code>is often good to have...</p>
<pre><code>#include <ctype.h>
#include <stdio.h>
void hexdump(void *ptr, int buflen) {
unsigned char *buf = (unsigned char*)ptr;
int i, j;
for (i=0; i<buflen; i+=16) {
printf("%06x: ", i);
for (j=0; j<16; j++)
if (i+j < buflen)
printf("%02x ", buf[i+j]);
else
printf(" ");
printf(" ");
for (j=0; j<16; j++)
if (i+j < buflen)
printf("%c", isprint(buf[i+j]) ? buf[i+j] : '.');
printf("\n");
}
}
</code></pre>
http://stackoverflow.com/questions/1622079/break-on-excbadaccess-in-xcode/1622400#16224006Answer by epatel for Break on EXC_BAD_ACCESS in XCode?epatel2009-10-25T23:04:09Z2009-10-25T23:04:09Z<p>About your array. The line </p>
<pre><code>NSMutableArray *array = [NSMutableArray array];
</code></pre>
<p>does not actually give you a retained object but rather an autorelease object. It probably gets retained in the next line but then you should not release it in the third line. See <a href="http://developer.apple.com/iphone/library/documentation/Cocoa/Conceptual/MemoryMgmt/Articles/mmRules.html" rel="nofollow">this</a></p>
<blockquote>
<p><strong>This is the fundamental rule:</strong></p>
<blockquote>
<p>You take ownership of an object if you create it using a method whose name begins with “alloc” or “new” or contains “copy” (for example, alloc, newObject, or mutableCopy), or if you send it a retain message. You are responsible for relinquishing ownership of objects you own using release or autorelease. Any other time you receive an object, you must not release it.</p>
</blockquote>
</blockquote>
http://stackoverflow.com/questions/1617947/what-modern-version-of-logo-should-i-use-to-teach-a-child-programming/1617965#16179652Answer by epatel for What modern version of LOGO should I use to teach a child programmingepatel2009-10-24T13:05:56Z2009-10-24T13:05:56Z<p>I suggest you have a look at <a href="http://www.squeak.org/" rel="nofollow">www.squeak.org</a></p>
<p>There is a free <a href="http://squeakbyexample.org/" rel="nofollow">book</a> for it too</p>
<p>There is also something called <a href="http://info.scratch.mit.edu/About%5FScratch" rel="nofollow">Scratch</a> that has been called - <em>Scratch - Logo meets Squeak Smalltalk?</em></p>
http://stackoverflow.com/questions/1614533/strange-problem-comparing-floats-in-objective-c/1614918#16149181Answer by epatel for Strange problem comparing floats in objective-Cepatel2009-10-23T17:37:42Z2009-10-23T17:37:42Z<p>0.1 is actually a very dificult value to store binary. In base 2, 1/10 is the infinitely repeating fraction</p>
<pre><code>0.0001100110011001100110011001100110011001100110011...
</code></pre>
<p>As several has pointed out, the comparison has to made with a constant of the exact same precision.</p>
http://stackoverflow.com/questions/1612904/how-can-i-use-find-to-recursively-backup-multiple-subversion-repositories/1612947#16129470Answer by epatel for How can I use FIND to recursively backup multiple subversion repositoriesepatel2009-10-23T11:51:59Z2009-10-23T11:51:59Z<p>How about adding a <code>sed</code> filter cuting out the middle part?</p>
<pre><code>sed 's/usr.local.svn.repos.//g'
</code></pre>
<p>Added like this</p>
<pre><code>find /usr/local/svn/repos/ -maxdepth 1 -mindepth 1 -type d -exec echo /usr/local/backup{} ";" | sed 's/usr.local.svn.repos.//g'
</code></pre>
http://stackoverflow.com/questions/1605224/how-to-properly-set-an-integer-value-in-nsdictionary/1605236#16052363Answer by epatel for How to Properly set an integer value in NSDictionary?epatel2009-10-22T05:47:27Z2009-10-22T06:10:16Z<p>You should use <code>intValue</code> from the received object (an <code>NSNumber</code>), and not use a cast:</p>
<pre><code>NSUInteger c = [[dict objectForKey:@"timerCounter"] intValue];
</code></pre>
http://stackoverflow.com/questions/1603246/why-is-xcode-reporting-a-defined-but-not-used-warning-for-my-class-variable/1603264#16032643Answer by epatel for Why is Xcode reporting a "defined but not used" warning for my class variable?epatel2009-10-21T20:04:04Z2009-10-21T20:17:27Z<p>You have placed the classVar outside the interface definition. This will make the compiler think you are declaring a global variable, and as this looks like it is a header file (.h) it will also be created in all files including this header file. I'd guess the warning comes when compiling a file other than MyViewController.m that includes this header file. </p>
<p><strong>EDIT</strong>
My suggestion is that you move the classVar into the .m file for MyViewController (miss-interpreted what you where after first)</p>
http://stackoverflow.com/questions/1576903/use-google-chrome-chromium-instead-of-webkit-on-macos/1576941#15769412Answer by epatel for Use Google Chrome/ Chromium instead of WebKit on MacOS epatel2009-10-16T08:55:52Z2009-10-16T08:55:52Z<p>Are you aware that Google Chrome already uses WebKit?</p>
<p>Quote from <a href="http://www.google.com/chrome/intl/sv/why.html" rel="nofollow">here</a></p>
<blockquote>
<p>We owe a great debt to many open source projects, and we're committed to continuing on their path. We've used components from Apple's WebKit and Mozilla's Firefox, among others - and in that spirit, we are making all of our code open source as well. We hope to collaborate with the entire community to help drive the web forward.</p>
</blockquote>
http://stackoverflow.com/questions/1564953/c-looping-without-using-looping-statements-or-recursion/1571654#15716541Answer by epatel for C: Looping without using looping statements or recursionepatel2009-10-15T11:05:32Z2009-10-15T11:05:32Z<p>Another thingy (on linux) would be to do as below where 7 is N</p>
<pre><code>int main() {
return system("seq 7");
}
</code></pre>
http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/81754#817543Answer by epatel for What's Your Motto As A Developer/Programmer?epatel2008-09-17T10:19:07Z2009-10-14T20:18:38Z<blockquote>
<blockquote>
<p><a href="http://www.memention.com/blog/2009/08/20/How-hard-can-it-be.html" rel="nofollow"><em>"How hard can it be?"</em></a></p>
</blockquote>
</blockquote>
<p>This has made me program <em>crazy stuff</em> for it's, well, <em>crazy</em> and fun.</p>
<p>Like the <a href="http://hem.passagen.se/tiletech/ace.htm" rel="nofollow">Jupiter ACE emulator</a> in 3D or a dancing <a href="http://www.memention.com/js/" rel="nofollow">Steve Jobs</a> in iTunes or a <a href="http://memention.com/edward/tinygl/" rel="nofollow">3D modeling app for the Palm</a></p>
<blockquote>
<p><img src="http://memention.com/edward/vace/vace.gif" height="242">
<img src="http://www.memention.com/js/js.gif">
<img src="http://memention.com/edward/tinygl/screen.gif"></p>
</blockquote>
<p>I also have another one:</p>
<blockquote>
<blockquote>
<p><em>"If you want something done you'll have to do it yourself"</em></p>
</blockquote>
</blockquote>
http://stackoverflow.com/questions/407987/what-are-the-primitive-forth-operators/408340#4083404Answer by epatel for What are the primitive Forth operators?epatel2009-01-02T23:55:56Z2009-10-14T15:57:46Z<p>This post at comp.lang.forth list a few "minimal forth"</p>
<p><a href="http://groups.google.com/group/comp.lang.forth/msg/10872cb68edcb526" rel="nofollow">http://groups.google.com/group/comp.lang.forth/msg/10872cb68edcb526</a></p>
<p>Why do I know this? My brother, Mikael, wrote #3 and he also wrote a <a href="http://libris.kb.se/bib/879246" rel="nofollow">paper</a> about making a "minimal forth" (in swedish though). If I remember correctly he wanted to get a minimal set of operators that could be built in silicon.</p>
http://stackoverflow.com/questions/1564953/c-looping-without-using-looping-statements-or-recursion/1565087#156508710Answer by epatel for C: Looping without using looping statements or recursionepatel2009-10-14T08:56:22Z2009-10-14T08:56:22Z<p>I'd go for using <code>longjmp()</code></p>
<pre><code>#include <stdio.h>
#include <setjmp.h>
void do_loop(int n) {
int val;
jmp_buf env;
val = 0;
setjmp(env);
printf("%d\n", ++val);
if (val != n)
longjmp(env, 0);
}
int main() {
do_loop(7);
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1554910/d-r-y-vs-avoid-macros/1556110#15561101Answer by epatel for D.R.Y vs "avoid macros"epatel2009-10-12T18:24:33Z2009-10-12T18:24:33Z<p>I could even go a bit further and use both the single hash and double hash feature when using macros. Single hash create string constants and the double concatenate identifiers to build new combined.</p>
<pre><code>#define DECLARE_ELEMENT(ElementType) \
class C ## ElementType : public Element \
{ \
public: \
static const char * Type() { return # ElementType; } \
\
private: \
friend class Element; \
C ## ElementType( \
Element * inParent, \
const AttributesMapping & inAttributesMapping); \
}
DECLARE_ELEMENT(window); // defines Cwindow
DECLARE_ELEMENT(button); // defines Cbutton
DECLARE_ELEMENT(label); // defines Clabel
</code></pre>
<p>For instance the below code is something I sometimes write to test the sizeof for some common types.</p>
<pre><code>#include <stdio.h>
#define OUT( _type ) printf("sizeof(%s) = %d\n", #_type, sizeof(_type))
int main() {
OUT( char );
OUT( int );
OUT( short );
OUT( long );
OUT( long long );
OUT( void* );
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1553167/what-exact-retain-means/1553196#15531962Answer by epatel for what exact retain means?epatel2009-10-12T07:32:52Z2009-10-12T07:32:52Z<p>Prior version 2.0 Objective-C used a <a href="http://en.wikipedia.org/wiki/Reference%5Fcounting" rel="nofollow">reference counter</a> strategy to track and manage memory. From 2.0 a garbage collector can be activated, BUT, not yet available on the iPhone.</p>
<p>Have a look <a href="http://stackoverflow.com/questions/6578/understanding-reference-counting-with-cocoa-objective-c">here</a> about Objective-C reference counter strategy.</p>
http://stackoverflow.com/questions/217825/is-there-any-similar-tool-for-linux-that-works-like-shark-on-mac-os-x3Is there any similar tool for Linux that works like Shark on Mac OS X?epatel2008-10-20T09:02:57Z2009-10-11T13:49:15Z
<p><a href="http://en.wikipedia.org/wiki/Shark%5F%28disambiguation%29" rel="nofollow">Shark</a> on Mac OS X is a great tool for profiling an application on a running system. Is there any similar tools for Linux? </p>
<p><a href="http://oprofile.sourceforge.net/about/" rel="nofollow">OProfile</a> looks like it could be, anyone used it? </p>
http://stackoverflow.com/questions/1481715/strange-clipping-issue-in-opengl/1481951#14819510Answer by epatel for Strange Clipping Issue in OpenGLepatel2009-09-26T19:18:07Z2009-09-26T19:18:07Z<p>To me it looks like you are missing enabling the Depth buffer or maybe creating a framebuffer with a z-buffer. (this is similar to what Troubadour is writing)</p>
<pre><code>glEnable(GL_DEPTH_TEST);
</code></pre>
http://stackoverflow.com/questions/1458552/where-can-i-find-3d-model-files/1470805#14708050Answer by epatel for Where can I find 3D model files?epatel2009-09-24T10:13:04Z2009-09-24T10:18:16Z<p>Have a look at the 3D modeler <a href="http://inivis.com/" rel="nofollow">AC3D</a>. </p>
<p>Under <a href="http://inivis.com/resources.html" rel="nofollow">resources</a> there is a C/C++ exporter someone has written.</p>
<blockquote>
<p>Steve Baker wrote a program that parses an AC3D file and generates C++/OpenGL code that displays the file - see <a href="http://inivis.com/ac3d/download/util/ac2gl.zip" rel="nofollow">ac2gl</a>. </p>
</blockquote>
http://stackoverflow.com/questions/146297/what-are-those-little-xcode-tips-tricks-you-wish-you-knew-about-2-years-ago/146760#14676068Answer by epatel for What are those little Xcode tips & tricks you wish you knew about 2 years ago?epatel2008-09-28T21:15:38Z2009-09-24T05:19:08Z<p>Cmd-Option-Up to switch between the <code>.m</code> and <code>.h</code> files.</p>
http://stackoverflow.com/questions/1780410/store-a-string-in-an-int/1780454#1780454Comment by epatel on store a string in an intepatel2009-11-23T15:55:10Z2009-11-23T15:55:10Z@Mark Byers: It said C from the beginning.http://stackoverflow.com/questions/1780410/store-a-string-in-an-int/1780454#1780454Comment by epatel on store a string in an intepatel2009-11-22T23:54:54Z2009-11-22T23:54:54Z@caf True, but this way you are sure the chars is layed out like a string.http://stackoverflow.com/questions/671656/is-agile-scientifically-proven/671688#671688Comment by epatel on Is agile scientifically proven?epatel2009-11-16T22:36:29Z2009-11-16T22:36:29ZWho said it's 'scientific evidence'? Notice the question mark after the first word? I would as others here say that it's very difficult to say anything with certainty about "agile" as it's open for interpretation and freedom to select from. I think that what Alistair brings to the table are collected "experience" (from real world projects) and from that "we" can make better decisions.http://stackoverflow.com/questions/1740588/detecting-the-use-of-private-apis/1740901#1740901Comment by epatel on Detecting the use of private APIsepatel2009-11-16T09:47:46Z2009-11-16T09:47:46ZI read your update. Those vars can be accessed in a straight struct way, making them being offsets known by the compilers...so I think you should focus on which parts uses UITouch stuff. ie, who uses/defines touchesBegin:/touchesMove:/touchesEnd:http://stackoverflow.com/questions/1710893/starting-a-app-file-from-java/1710924#1710924Comment by epatel on Starting a .app file from javaepatel2009-11-10T22:45:29Z2009-11-10T22:45:29ZI'd set cmd to "open ./file.app"http://stackoverflow.com/questions/609486/iphone-development-provisioning-assistant-step-3-public-private-key-problem/609545#609545Comment by epatel on iPhone Development Provisioning Assistant Step 3 public/private Key problemepatel2009-11-10T19:33:08Z2009-11-10T19:33:08ZThey have added videos of the process in the "Portal". You should find the under the "User Guide" which still is up to the right.http://stackoverflow.com/questions/1628824/nsimage-imagenamed-for-mac-mini-returns-small-icon-instead-of-high-res/1628858#1628858Comment by epatel on NSImage imageNamed: for Mac Mini returns small icon instead of high-resepatel2009-10-27T09:25:57Z2009-10-27T09:25:57Z@Dave DeLong, I believe he means that the image "NSComputer" is fetched by the system from the directory...and he mention it here so you can check for yourself what reps are in the actual file. Not that you should put the full path in your code.http://stackoverflow.com/questions/1617947/what-modern-version-of-logo-should-i-use-to-teach-a-child-programming/1617965#1617965Comment by epatel on What modern version of LOGO should I use to teach a child programmingepatel2009-10-26T07:36:49Z2009-10-26T07:36:49ZWell, if you have set your mind to it why not have a look at <a href="http://www.terrapinlogo.com/terrapin-logo.php" rel="nofollow">terrapinlogo.com/terrapin-logo.php</a> who also have integrated their LOGO with Lego Mindstorm <a href="http://en.wikipedia.org/wiki/Lego_Mindstorms" rel="nofollow">en.wikipedia.org/wiki/Lego_Mindstorms</a> That's so cool I almost got to get a set myself :)http://stackoverflow.com/questions/1577891/is-there-a-developer-licensing-program-for-osxComment by epatel on Is there a developer licensing program for OSX?epatel2009-10-16T13:44:29Z2009-10-16T13:44:29ZLooking for cheap hardware? Get a used mac mini from ebay. The G4's with Leopard should work fine for a lot of mac dev things.http://stackoverflow.com/questions/1553167/what-exact-retain-means/1553196#1553196Comment by epatel on what exact retain means?epatel2009-10-12T10:19:45Z2009-10-12T10:19:45ZNo. You have to use retain/release on the iPhone. I maybe wrote a bit confusing. The retain/release are on the way out. Some like it, others not.http://stackoverflow.com/questions/1446841/handling-input-into-struct-elements-with-array/1446874#1446874Comment by epatel on Handling input into struct elements with arrayepatel2009-09-18T21:48:45Z2009-09-18T21:48:45Zyup, getting advanced...for some homeworkhttp://stackoverflow.com/questions/58640/great-programming-quotes/1426891#1426891Comment by epatel on Great programming quotesepatel2009-09-15T13:36:31Z2009-09-15T13:36:31ZSo you believe in "fate" and not in "free will" :)http://stackoverflow.com/questions/916824/iphone-bundles-and-file-access/916922#916922Comment by epatel on iPhone, bundles and file accessepatel2009-09-14T21:46:47Z2009-09-14T21:46:47ZThink that will break the codesign and it will not run on a device
http://stackoverflow.com/questions/1376434/looking-for-a-cocotron-exampleComment by epatel on Looking for a cocotron exampleepatel2009-09-03T23:14:26Z2009-09-03T23:14:26ZDid you try this? <a href="http://www.allisonic.com/blog/426" rel="nofollow">allisonic.com/blog/426</a>http://stackoverflow.com/questions/1371701/c-memory-management-error/1371734#1371734Comment by epatel on C memory management error?epatel2009-09-03T06:56:11Z2009-09-03T06:56:11Zah, missed reading your whole answer.