User tonylo - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T05:13:13Zhttp://stackoverflow.com/feeds/user/4071http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1454391/symbian-crashes-with-fault-kern-0x00000004-4/1455193#14551932Answer by tonylo for Symbian crashes with: FAULT: KERN 0x00000004 (4)tonylo2009-09-21T15:41:48Z2009-09-21T15:41:48Z<p>From <a href="http://www.forum.nokia.com/infocenter/index.jsp?topic=/S60%5F5th%5FEdition%5FCpp%5FDevelopers%5FLibrary/GUID-35228542-8C95-4849-A73F-2B4F082F0C44/sdk/doc%5Fsource/reference/SystemPanics/KernPanics.html" rel="nofollow">Forum Nokia</a>:</p>
<pre><code> This fault is raised when a system thread has panicked or terminated
causing the entire system to re-boot.
</code></pre>
<p>In Symbian a thread can be marked a system thread if it is responsible for some fundamental OS service which will always be running. Examples include the file server (file-system) and the windows server but there are others. </p>
<p>In your case it depends on what your application is trying to do. I'd dare guess there is an invalid use of the Symbian APIs or that you're not freeing some resource properly.</p>
http://stackoverflow.com/questions/431081/what-are-coding-conventions-for-using-floating-point-in-linux-device-drivers/1437475#14374753Answer by tonylo for What are coding conventions for using floating-point in Linux device drivers?tonylo2009-09-17T08:30:14Z2009-09-17T08:36:04Z<p><a href="http://lkml.indiana.edu/hypermail/linux/kernel/0405.3/1620.html" rel="nofollow">Linus's answer</a> provides this pretty clear quote to use as a guideline:</p>
<blockquote>
<p>In other words: the rule is that you really shouldn't use FP in the kernel.</p>
</blockquote>
http://stackoverflow.com/questions/1415888/symbian-os-s60-platform/1417510#14175101Answer by tonylo for Symbian OS S60 Platformtonylo2009-09-13T11:21:50Z2009-09-13T11:21:50Z<p>In theory S60 is a UI framework (Avkon) and collection of applications, where as Symbian OS provides the fundamental OS services. In practice it is more complicated because S60 also features middleware and other services not limited to pure UI elements. </p>
<p>Symbian does feature a generic UI framework called UIKON but I don't think it is used very often. Also the Symbian world is pretty much dominated by S60 outside of Japan (which has it's own environment called MOAP).</p>
<p>Not sure about the Java question.</p>
<p>It depends what your application does whether it bypasses S60. You can write very simple apps and OS level services with no dependencies on S60.</p>
http://stackoverflow.com/questions/1376800/what-are-good-resources-if-i-want-to-develop-rss-feed-readers-for-n97-and-e71/1382753#13827530Answer by tonylo for What are good resources if I want to develop RSS feed readers for N97 and E71?tonylo2009-09-05T07:58:29Z2009-09-05T07:58:29Z<p>There's a further set of links in this stackoverflow question:</p>
<p><a href="http://stackoverflow.com/questions/541613/how-to-get-started-with-symbian-s60-plattorm">http://stackoverflow.com/questions/541613/how-to-get-started-with-symbian-s60-plattorm</a></p>
http://stackoverflow.com/questions/39051/any-recommended-source-code-browser-explorers-windows-c-c1Any recommended source code browser/explorers (Windows/C/C++)?tonylo2008-09-02T08:51:53Z2009-08-22T20:49:26Z
<p>I'm looking for any recommendations for source code browsers, but especially ones that work on a large evolving source code base (somtimes in the order of 100k files, but more often about 10k files). My requirements would be:</p>
<ul>
<li>Some level of C/C++ language symbol parsing</li>
<li>Straight text searches (with some regex)</li>
<li>The tools also should allow text searches of non-source files (flat text files)</li>
<li>Optionally (but preferably) has a good GUI interface</li>
<li>The tool works on a windows based development environment</li>
<li>Optionally some level of customisation (file extension, language parsing extension)</li>
<li>Easy to use!</li>
</ul>
<p>It seems to me that a lot of developer IDEs are oriented towards single application, relatively small projects, or sub-components of a larger source base. It just so happens that in my job(s) I have had to navigate across the entire source code base of large systems.</p>
<p>I have a background in UNIX systems/kernel development and typically used command line tools such as vi(m), ctags and cscope to navigate a large source code base.</p>
<p>Now I work in a windows based development environment (all the build tools and toolchain works on windows only), in my old age I actually have started to prefer 'good' (subjective I know) GUIs - so ctags and cscope though good tools aren't quite what I'm looking for.</p>
http://stackoverflow.com/questions/1048376/checking-the-amount-of-available-ram-within-a-running-program/1048467#10484670Answer by tonylo for Checking the amount of available RAM within a running programtonylo2009-06-26T10:49:32Z2009-06-26T10:49:32Z<p>Very OS specific but for Linux the information about system memory is in /proc/meminfo. You can also probably use the sysctl interface (<a href="http://www.linuxjournal.com/article/2365" rel="nofollow">http://www.linuxjournal.com/article/2365</a>) to get this data in a C program.</p>
http://stackoverflow.com/questions/1038462/how-to-decompress-data-using-z-lib-in-symbian/1044577#10445770Answer by tonylo for How to decompress data using z lib in symbiantonylo2009-06-25T15:26:08Z2009-06-25T15:26:08Z<p>A possible approach is to do a comparison of encryption/decryption methods on both the Java and Symbian side.</p>
<p>What I would do is create some data, encrypt it on the Java side and save it to a file - check that you can decrypt this on the Java side - verify that the decryption worked by comparing it to the original content.</p>
<p>Do the same on the Symbian side. This will at least validate that you can encrypt/decrypt the data on either side in isolation.</p>
<p>Assuming this is successful, next I would do a diff on the encrypted binaries - if they're using the same encryption method they should be the same - but it sounds like they won't be. I'd recommend using a tool like vimdiff to do the binary diff.</p>
<p>Inspect the binary dump of both of the encrypted files. If the binaries are different you will need to do some research on the zlib compression format - usually binary data formats have headers, although there can be raw modes which assume you know the format of the data.</p>
http://stackoverflow.com/questions/174356/ways-to-assert-expressions-at-build-time-in-c9Ways to ASSERT expressions at build time in Ctonylo2008-10-06T13:49:17Z2009-05-06T04:04:10Z
<p>I'm tidying up some older code that uses 'magic numbers' all over the place to set hardware registers, and I would like to use constants instead of these numbers to make the code somewhat more expressive (in fact they will map to the names/values used to document the registers).</p>
<p>However, I'm concerned that with the volume of changes I might break the magic numbers. Here is a simplified example (the register set is more complex):</p>
<pre><code>const short mode0 = 0;
const short mode1 = 1;
const short mode2 = 2;
const short state0 = 0;
const short state1 = 4;
const short state2 = 8;
</code></pre>
<p>so instead of :</p>
<pre><code>set_register(5);
</code></pre>
<p>we have:</p>
<pre><code>set_register(state1|mode1);
</code></pre>
<p>What I'm looking for is a <strong>build time</strong> version of:</p>
<pre><code>ASSERT(5==(state1|mode1));
</code></pre>
<p><strong>Update</strong></p>
<p>@Christian, thanks for the quick response, I'm interested on a C / non-boost environment answer too because this is driver/kernel code.</p>
<p>@all, Thanks for the informative answers throughout</p>
http://stackoverflow.com/questions/720945/is-the-process-of-design-slow2Is the process of design slow?tonylo2009-04-06T10:53:31Z2009-04-06T17:49:10Z
<p>I'm working on a project where a bunch of software (C++/OO) is being ported to a new hardware environment. A certain percentage of the software modules should be subjectively similar on the new hardware platform.</p>
<p>A code review for some of these modules has shown that the port done is been done with a minimal effort or insight - the developers doing the work are inexperienced, as often happens with porting. However it has also shown that the design of the software is lacking - either over-complicated, handles error conditions badly or just has a bunch of 'code smells'.</p>
<p>I have asked that instead of reviewing code after the port has been 'done', we review the design first. However, I am told that this might not be a good use of time, probably because the existing documented designs are not up to date.</p>
<p>Am I barking up the wrong tree? Is a design process inherently slow? Is there a way to avoid getting bogged down in the full design process. Or is hands on code always the best way to sort things out - even with inexperienced coders?</p>
<p><strong>Update.
Thanks for the answers so far. Yes the s/w will be used in many (hopefully) future products/revisions. Also I didn't mention that the code is going to be multi-threaded too (previously a single threaded environment). This alone maybe good enough to indicate "review the design" I would like to proactively (yuck) see if a process of design review can be put into porting. I'm distrustful of just hoping to fix something up when it stops working - if something is found in testing to be fundamentally broken I'd rather not redesign come defect fixing time.</strong></p>
http://stackoverflow.com/questions/722401/how-do-solo-programmers-find-people-to-mentor-them-through-new-technology/722410#7224108Answer by tonylo for How do solo programmers find people to mentor them through new technology?tonylo2009-04-06T17:28:21Z2009-04-06T17:28:21Z<p>How about get involved in an open source project and then see your code peer reviewed?</p>
http://stackoverflow.com/questions/249979/whether-const-char-and-strdup-serve-the-same-function-when-used-with-getopt-in/249997#2499971Answer by tonylo for Whether const char * and strdup serve the same function when used with getopt in C?tonylo2008-10-30T12:27:43Z2008-10-30T12:27:43Z<p>My understanding from (<a href="http://linux.die.net/man/3/optarg" rel="nofollow">http://linux.die.net/man/3/optarg</a>) is that optarg points to the contents of the argv buffer so the strdup isn't necessary. The suggestion to use const char* seems a reasonable idea.</p>
http://stackoverflow.com/questions/77535/need-gcc-g-working-on-sco6/246182#2461820Answer by tonylo for Need gcc/g++ working on SCO6tonylo2008-10-29T09:09:19Z2008-10-29T09:09:19Z<p>You might find this on the SCO Skunkware CD:</p>
<p><a href="http://www.sco.com/skunkware/" rel="nofollow">http://www.sco.com/skunkware/</a></p>
http://stackoverflow.com/questions/233360/how-much-a-tester-should-know-about-internal-details-of-code/233609#2336092Answer by tonylo for How much a tester should know about internal details of code?tonylo2008-10-24T13:52:12Z2008-10-24T13:52:12Z<p>I've never seen a circumstance where a tester who knew a lot about the internals of system was disadvantaged.</p>
<p>I would assert that there are self justifying myths that an informed tester is as adequate or even better than a deeply technical one because:</p>
<ol>
<li>It allows project managers to use 'random or low quality resources' for testing. The 'as uninformed as the user myth'. If you want this type of testing - get some 'real' users to test your stuff.</li>
<li>Testers are still often seen as cheaper and less valuable than developers. The 'anybody can do blackbox testing myth'.</li>
<li>Development can defer proper testing to the test team. Two myths in one 'we don't need to train testers' and 'only the test team does testing' myths.</li>
</ol>
http://stackoverflow.com/questions/226767/symbian-automated-testing-tool/226842#2268423Answer by tonylo for Symbian automated testing tooltonylo2008-10-22T17:51:44Z2008-10-22T17:51:44Z<p>These two might help. but I think they are going to involve a serious investment of time and cash:</p>
<p><a href="http://www.testquest.com/" rel="nofollow">testquest</a></p>
<p><a href="http://www.digia.com/C2256FEF0043E9C1/0/405001346" rel="nofollow">digia</a></p>
http://stackoverflow.com/questions/110442/how-do-you-build-a-culture-of-collaboration-in-your-team/110631#11063115Answer by tonylo for How do you build a culture of collaboration in your team?tonylo2008-09-21T09:32:09Z2008-10-17T09:16:04Z<p><strong>Phase 0 (Start up)</strong>. Obviously pick the right tool for the job. Key recommendation: <strong>Do allow anonymous contribution</strong>/creation of content from the start. It's amazing how having to create a login puts people off.</p>
<p><strong>Phase 1 (Evangelise)</strong>. Encourage 2 or 3 people to be principle contributors and evangelists. Don't worry so much about persuading everyone to the use the resource at first. As a small group of enthusiasts, start populating the Wiki and in email start linking to the Wiki as appropriate. Do not start wholesale migration of legacy information (from old intranet sites) to the Wiki at this point.</p>
<p><strong>Phase 2 (Review)</strong>. After a few months have a review. I would hope you have a few more contribitors than your 'core' users. Try to openly assess whether the Wiki is better than previous communication mechanisms. Importantly you should encourage non-users to participate in this debate, try to make sure they aren't drowned out by the early adopters.</p>
<p><strong>Phase 3 (Replace)</strong>. Assuming you did decide to continue with the Wiki after your review, now start to replace legacy websites/content with the Wiki if necessary i.e. change DNS set-ups, move old websites in to a read-only state, ensure backups are in place and the IT department support is in place. The aim here is to migrate the 'I used to do it like this' crowd.</p>
<p><strong>Phase 4 (Culture)</strong>. At this point you've established the Wiki technically. Anyone who is publishing read-only information should be distributing content using the Wiki rather than email e.g. build/integration/test results or status. </p>
<p>Talk to the people who don't seem to use it as much as others. For some they may have the perspective that they have nothing to add, because some people are voracious publishers. This could be the case!. Try to encourage them to keep theirs notes in a personal area on the Wiki, help them to understand the markup language or demo a WYSIWYG interface. For people who should be publishing more than they are, that's a job for management/personal-development plans.</p>
http://stackoverflow.com/questions/178110/what-is-the-best-way-to-remember-technical-knowledge-in-the-organization/178223#1782230Answer by tonylo for What is the best way to remember technical knowledge in the organizationtonylo2008-10-07T12:32:50Z2008-10-07T12:32:50Z<p>I'll give you some drawbacks of Wiki's, or where some extra thought maybe required:</p>
<ol>
<li>If the technical knowledge/documentation is shared with customers or organisations which do not have access to your Wiki</li>
<li>Documentation associated with a particular version of software often lives better with the source associated with the release. Often Wiki's contain the most up to date information but it might be hard (depending on the care of editors) to map documentation to older releases</li>
</ol>
http://stackoverflow.com/questions/177543/screen-sharing-osx-windows/177555#1775552Answer by tonylo for Screen sharing OSX<-->windowstonylo2008-10-07T08:12:19Z2008-10-07T08:12:19Z<p>VNC is part of Leopard (OSX 10.5) so you can use that</p>
http://stackoverflow.com/questions/172209/is-it-possible-to-get-perforce-to-behave-like-subversion/172225#1722250Answer by tonylo for Is it possible to get perforce to behave like subversion?tonylo2008-10-05T16:29:02Z2008-10-05T16:29:02Z<p>One approach you can use is edit the readonly files on your synch'd branch. When you're ready to submit use the 'check consistency' File | More option to create a changelist on the basis of the modified files. There's probably a command-line way of doing this but I don't know what it is.</p>
http://stackoverflow.com/questions/161788/passing-structs-by-value-why-not/166947#1669473Answer by tonylo for Passing structs by value - why not?tonylo2008-10-03T13:45:10Z2008-10-03T13:45:10Z<p>One reason not to do this which has not been mentioned is that this can cause an issue where binary compatibility matters.</p>
<p>Depending on the compiler used, structures can be passed via the stack or registers depending on compiler options/implementation</p>
<p>See: <a href="http://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html" rel="nofollow">http://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html</a></p>
<blockquote>
<p>-fpcc-struct-return</p>
<p>-freg-struct-return</p>
</blockquote>
<p>If two compilers disagree, things can blow up. Needless to say the main reasons not to do this are illustrated are stack consumption and performance reasons.</p>
http://stackoverflow.com/questions/163766/should-developers-be-given-laptops-or-desktops/164361#1643610Answer by tonylo for Should developers be given laptops or desktops?tonylo2008-10-02T20:17:17Z2008-10-02T20:17:17Z<p>I think a factor you should consider is the office environment. </p>
<p>And for most places I've worked in I would make the default a laptop - but it has to be the <strong><em>absolutely best performance laptop</em></strong> around. My rationale is that although <a href="http://en.wikipedia.org/wiki/Peopleware" rel="nofollow">Peopleware</a> has been around 20 years a lot of development offices still look like typing pools, it's a real bonus to be able to move your work machine around and it makes a lot of otherwise pointless meetings worthwhile.</p>
<p>I think it's nice to have the option of both, but I've rarely seen both a desktop and a laptop used well.</p>
http://stackoverflow.com/questions/156601/working-with-uncoorperative-vendors/156651#1566511Answer by tonylo for Working with uncoorperative vendorstonylo2008-10-01T08:04:52Z2008-10-01T08:04:52Z<p>You should really consider having a service level agreement (SLA) when working with 3rd party suppliers, especially if you're doing this at the behest of a customer. If you ask for an SLA up front, the 3rd party then can tell you their charges up front or will probably ask you to pay for a support contract. The cost of that support contract (or at least part of it) can be put in the original customers bill. </p>
<p>An SLA doesn't guarantee good service but does give you something to point to if you are having supplier problems, and enables you to more easily change them.</p>
http://stackoverflow.com/questions/155449/vim-auto-generate-ctags/155497#1554972Answer by tonylo for Vim auto-generate ctagstonylo2008-09-30T23:01:38Z2008-09-30T23:01:38Z<p>Perhaps use the append argument to ctags as demonstrated by:</p>
<p><a href="http://vim.wikia.com/wiki/Autocmd_to_update_ctags_file" rel="nofollow">http://vim.wikia.com/wiki/Autocmd_to_update_ctags_file</a></p>
<p>I can't really vouch for this as I generally use source insight for code browsing, but use vim as an editor... go figure.</p>
http://stackoverflow.com/questions/140409/why-avoid-pessimistic-locking-in-a-version-control-system/140810#1408101Answer by tonylo for Why avoid pessimistic locking in a version control system?tonylo2008-09-26T17:28:32Z2008-09-26T17:28:32Z<blockquote>
<p>if your code files are so big that you constantly have more than one person working on them at the same time</p>
</blockquote>
<p>If this is the case it's time for 'human beings' to take charge and coordinate any changes. In the ideal case, and if your project management is any good, you will rarely hit a time where you're trying to change a locked file because someone will have coordinated things so this won't practically happen.</p>
<p>In other words you'll know 'Bob' is doing a large set of changes in components X/Y/Z, if you have a bug fix in component X you'll know to talk to Bob before trying to submit your changes.</p>
<p>As I say this is ideal ;)</p>
http://stackoverflow.com/questions/132241/hidden-features-of-c/133555#13355560Answer by tonylo for Hidden features of Ctonylo2008-09-25T14:08:29Z2008-09-25T14:08:29Z<p>More of a trick of the GCC compiler, but you can give branch indication hints to the compiler (common in the Linux kernel)</p>
<pre><code>#define likely(x) __builtin_expect((x),1)
#define unlikely(x) __builtin_expect((x),0)
</code></pre>
<p>see: <a href="http://kerneltrap.org/node/4705" rel="nofollow">http://kerneltrap.org/node/4705</a></p>
<p>What I like about this is that it also adds some expressiveness to some functions.</p>
<pre><code>void foo(int arg)
{
if (unlikely(arg == 0)) {
do_this();
return;
}
do_that();
...
}
</code></pre>
http://stackoverflow.com/questions/129028/how-to-deal-with-the-developers-refusing-to-use-certain-technologies-or-tools/129593#12959323Answer by tonylo for How to deal with the developers refusing to use certain technologies or tools?tonylo2008-09-24T20:11:37Z2008-09-24T20:11:37Z<p>Perhaps I've missed something or there is some detail missing.</p>
<p>On the face of it effectively you have gathered some customers who want you to do something that your business cannot do. Has something gone wrong in your sales department, or have the developers who could do the work disappeared? I'm assuming that the developers aren't saying 'no' out of sheer bloody mindedness but rather their expertise lies elsewhere.</p>
<p>The only answer I could practically see is:
a) Use contractors, or sub-contract the work
b) Understand the capabilities of your development team when pitching for sales.</p>
<p>Apologies if i'm off the mark, but it sounds a bit fishy to me.</p>
http://stackoverflow.com/questions/66544/what-is-the-easiest-way-to-lookup-function-names-of-a-c-binary-in-a-cross-platfor/66612#666122Answer by tonylo for what is the easiest way to lookup function names of a c binary in a cross-platform manner?tonylo2008-09-15T20:28:40Z2008-09-15T20:28:40Z<p>This might be near to what you're looking for:
<a href="http://python.net/crew/theller/ctypes/" rel="nofollow">http://python.net/crew/theller/ctypes/</a></p>
http://stackoverflow.com/questions/66402/faster-math-exp-via-jni/66477#664770Answer by tonylo for faster Math.exp() via JNI?tonylo2008-09-15T20:13:27Z2008-09-15T20:13:27Z<p>There's simply an overhead associated with using the JNI, see also:
<a href="http://java.sun.com/docs/books/performance/1st_edition/html/JPNativeCode.fm.html" rel="nofollow">http://java.sun.com/docs/books/performance/1st_edition/html/JPNativeCode.fm.html</a></p>
<p>So as others have suggested try to collate operations that would involve using the JNI.</p>
http://stackoverflow.com/questions/65458/which-version-control-system-would-you-use-for-a-1000-developer-organization-wh/65847#658472Answer by tonylo for Which Version Control System would you use for a 1000+ developer organization? Why?tonylo2008-09-15T19:14:41Z2008-09-15T19:14:41Z<p>Perforce</p>
<p>What I like about perforce say compared to CVS is that the branch management is must more sophisticated (but still reasonably easy) and you don't need to bug a central bureaucracy to create branches/labels and the like. In other words it allows to an individual team (or developer) to manage their source components how they like, before submission to a mainline centrally administered by someone else.</p>
<p>Oh, I'd also say it has one of the best GUIs out there whilst still having a 1st class citizen command-line interface. I normally hate GUIs but theirs works.</p>
http://stackoverflow.com/questions/48310/becoming-a-programmer-while-working-in-quality-assurance/48357#483570Answer by tonylo for Becoming a programmer while working in Quality Assurancetonylo2008-09-07T11:59:18Z2008-09-07T11:59:18Z<p>If I put myself in the shoes of a potential employer my doubts about someone doing such a transition would be:</p>
<ol>
<li>How well do they work with other developers/coders and managers (maybe even customers)</li>
<li>Familiarity with standard S/W engineering tools such as SCM</li>
<li>Familiarity with good team based S/W engineering practices</li>
</ol>
<p>It might be difficult to do any thing about 1, that's often difficult to evaluate even in an interview - but you hope that an experienced developer won't have problems. If you can construct a way of doing a project that involves this as a coder that would help.</p>
<p>Regarding the others, there's lots of good practice reading material on this site already which can help you.</p>
<p>In the end employers are looking for keen developers who understand both pure coding and adhere to good software engineering practices.</p>
http://stackoverflow.com/questions/47708/what-are-the-best-practices-for-embedded-systems-development/47947#479470Answer by tonylo for What are the best practices for embedded systems development?tonylo2008-09-06T23:28:46Z2008-09-06T23:28:46Z<p>@Jeff. I refined my original post. The answers here have been very interesting. To my mind it's not necessarily whether what you are doing is tied to the h/w or not it really depends on the complexity of the system being developed. I've worked on complex hardware integrations which involve 10-15 seperate device drivers, and multiple processors (ASSP/DSPs) involving complex power management schemes. On systems of this size it is definitely worth creating (or adapting if you're lucky) remote ROM image download and some sort of automated execution environment.</p>
<p>We use emulation to validate the functionality of more h/w agnostic components.</p>
<p>In these systems there are also some best practices you should try to get your h/w designers to adopt, specifically provide h/w with:</p>
<ol>
<li>the fastest simplest external debug comms possible</li>
<li>a power control mechanism which can be remotely/automatically controlled</li>
<li>anything which will facilitate automated rom download</li>
</ol>
<p>Of course this very much depends on the type of environment you're working in.</p>
http://stackoverflow.com/questions/1593510/ant-tasks-for-symbian/1593537#1593537Comment by tonylo on Ant Tasks for Symbiantonylo2009-10-20T12:05:25Z2009-10-20T12:05:25ZI thought it was pretty easy to switch platforms with the 'devices' command. <a href="http://www.newlc.com/Use-of-the-devices-command.html" rel="nofollow">newlc.com/Use-of-the-devices-command.html/…</a>
http://stackoverflow.com/questions/1496469/code-coverage-tools-for-symbian-c-and-maemo/1496746#1496746Comment by tonylo on Code coverage tools for Symbian C++ and Maemotonylo2009-09-30T12:55:06Z2009-09-30T12:55:06ZIs Bullseye limited to the Symbian OS emulator?
http://stackoverflow.com/questions/982388/linked-list/982455#982455Comment by tonylo on linked listtonylo2009-06-11T17:49:39Z2009-06-11T17:49:39Zseems to be tagged as a C question, I didn't think the STL was available in C environshttp://stackoverflow.com/questions/815410/what-cell-phone-has-the-widest-potential-market-for-software/815416#815416Comment by tonylo on What cell phone has the widest potential market for software? tonylo2009-05-28T12:02:03Z2009-05-28T12:02:03Zfair point, comment retracted.http://stackoverflow.com/questions/720945/is-the-process-of-design-slow/721039#721039Comment by tonylo on Is the process of design slow?tonylo2009-04-06T12:58:26Z2009-04-06T12:58:26ZI agree but I don't have statistics. But an existing bad design can have a history of problems either in number of bugs that had to be fixed or have a high error injection ratio i.e. fixing it causes further bugs to in introduced.http://stackoverflow.com/questions/249581/explain-facade-pattern-with-c-exampleComment by tonylo on Explain Facade pattern with c++ example?tonylo2008-10-30T12:18:33Z2008-10-30T12:18:33ZEditing your question would be more helpful to others.http://stackoverflow.com/questions/246127/why-is-volatile-needed-in-c/246148#246148Comment by tonylo on Why is volatile needed in c?tonylo2008-10-29T08:53:19Z2008-10-29T08:53:19ZPersonally, I'd prefer the integer size to be explicity e.g. int8/int16/int32 when talking to hardware. Nice answer though ;)http://stackoverflow.com/questions/236335/when-i-calculate-a-large-factorial-why-do-i-get-a-negative-number/236341#236341Comment by tonylo on When I calculate a large factorial, why do I get a negative number?tonylo2008-10-25T13:11:56Z2008-10-25T13:11:56ZYou're not even reading your own references.
<a href="http://home.att.net/~jackklein/c/inttypes.html#int" rel="nofollow">home.att.net/~jackklein/c/…</a>
Who is right? On any given compiler, one or the other could be right. On some compilers, both would be wrong. I know of one compiler for a 24 bit DSP where an int has 24 bits.http://stackoverflow.com/questions/236335/when-i-calculate-a-large-factorial-why-do-i-get-a-negative-number/236341#236341Comment by tonylo on When I calculate a large factorial, why do I get a negative number?tonylo2008-10-25T12:51:57Z2008-10-25T12:51:57Zi've seen you've been editing... still this data should be caveated...
http://stackoverflow.com/questions/236335/when-i-calculate-a-large-factorial-why-do-i-get-a-negative-number/236341#236341Comment by tonylo on When I calculate a large factorial, why do I get a negative number?tonylo2008-10-25T12:50:53Z2008-10-25T12:50:53ZSorry this is plain wrong. Always refer to your compiler documentation for the CPU architecture you are working on. You don't even appear to be right for visual C++:
<a href="http://msdn.microsoft.com/en-us/library/s3f49ktz(VS.80).aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>http://stackoverflow.com/questions/174356/ways-to-assert-expressions-at-build-time-in-c/174378#174378Comment by tonylo on Ways to ASSERT expressions at build time in Ctonylo2008-10-06T14:05:57Z2008-10-06T14:05:57ZNice improvisation, thanks! In my build environment I hit the error:
Error: #257: const variable "dummy" requires an initializer
So I changed this to const static char dummy[(x)?1:-1]={0};
If you agree/update this I'll mark this as answered, thanks again.http://stackoverflow.com/questions/166641/is-using-size-for-the-2nd-expression-in-a-for-construct-always-bad/166704#166704Comment by tonylo on Is using size() for the 2nd expression in a for construct always bad?tonylo2008-10-04T09:13:50Z2008-10-04T09:13:50ZFor the commenters, decrement can be faster in this case for other reasons:
<a href="http://stackoverflow.com/questions/24886/is-there-a-performance-difference-between-i-and-i-in-c#39286" rel="nofollow" title="is there a performance difference between i and i in c%2339286">stackoverflow.com/questions/24886/…</a>http://stackoverflow.com/questions/117293/use-of-const-for-function-parameters/117557#117557Comment by tonylo on Use of 'const' for function parameterstonylo2008-09-23T23:17:42Z2008-09-23T23:17:42ZNot really, I think you're just overestimating the usefulness of const. I think [the usefulness] it kicks in when the ownership of a object is important to define. Take a look at POSIX APIs, open(2) for e.g. the pathname (pointer) is worthwhile making const, for the flags and modes it's irrelevant.http://stackoverflow.com/questions/117293/use-of-const-for-function-parameters/117557#117557Comment by tonylo on Use of 'const' for function parameterstonylo2008-09-23T08:02:47Z2008-09-23T08:02:47ZI've voted this one down. I think you dilute what you're trying to indicate with const when you apply it to simple pass by value arguments.http://stackoverflow.com/questions/52254/should-developers-go-to-grad-schoolComment by tonylo on Should developers go to grad school?tonylo2008-09-14T08:55:54Z2008-09-14T08:55:54ZThere's a lot of shared material here with:
<a href="http://beta.stackoverflow.com/questions/25620/is-a-masters-degree-overkill" rel="nofollow" title="is a masters degree overkill">beta.stackoverflow.com/questions/25620/…</a>