User none - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T14:11:06Zhttp://stackoverflow.com/feeds/user/78244http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1558147/conditionally-change-c-statements-in-c-source-file/1821728#18217280Answer by none for Conditionally change C statements in C source filenone2009-11-30T19:03:21Z2009-11-30T19:03:21Z<p>You might also want to check out <a href="http://coccinelle.lip6.fr/" rel="nofollow">coccinelle</a>, which is also used by Linux kernel hackers to do widely automated large scale <a href="http://coccinelle.lip6.fr/impact%5Flinux.php" rel="nofollow">code transformations</a> using semantic patching.</p>
<p>Hope this helps</p>
http://stackoverflow.com/questions/876220/what-are-good-freely-available-ssa-sccp-resources0What are good, freely available SSA/SCCP resources?none2009-05-18T04:08:17Z2009-11-10T13:00:01Z
<p>This is what I could come up with so far:</p>
<p>gcc related:</p>
<ul>
<li><a href="http://gcc.gnu.org/projects/tree-ssa/" rel="nofollow">SSA for Trees</a></li>
<li><a href="http://www.airs.com/dnovillo/Papers/tree-ssa-gccs03-slides.pdf" rel="nofollow">Tree SSA – A New Optimization Framework for GCC</a></li>
<li><a href="http://gcc.fyxm.net/summit/2003/Tree%20SSA%20-%20A%20New%20optimization%20infrastructure.pdf" rel="nofollow">Tree SSA A New Optimization Infrastructure for GCC</a></li>
<li><a href="http://mirror-fpt-telecom.fpt.net/gcc/summit/2004/Design%20of%20Tree%20SSA.pdf" rel="nofollow">Design and Implementation of Tree SSA</a></li>
</ul>
<p>Other:</p>
<ul>
<li><a href="http://lapwww.epfl.ch/dev/machsuif/opt%5Fpasses/sccp.pdf" rel="nofollow">An Implementation of Sparse Conditional Constant Propagation for Machine SUIF</a></li>
<li><a href="http://eprints.kfupm.edu.sa/31688/1/31688.pdf" rel="nofollow">Concurrent Static Single Assignment Form and Constant Propagation for Explicitly Parallel Programs</a></li>
</ul>
<p>I've made this a community wiki, so please feel free to add your own resources - thanks!</p>
http://stackoverflow.com/questions/1000615/invaluable-development-tools-for-mobile-phones0Invaluable development tools for mobile phonesnone2009-06-16T10:11:28Z2009-11-07T05:00:02Z
<p>In an era of smart phones becoming increasingly powerful each month, often having 300+ MHZ processors, 64+ MB of RAM and true multimedia and multi-tasking capabilities, it is also getting obvious that mobile phones can now also be used as mobile computers, sometimes even for development purposes by developers, when they may either have no access to a complete system or when they don't need to do anything fancy.</p>
<p>So, what are your tools that you find invaluable for your specific type of mobile phone?</p>
<p>Please make sure to provide at least:</p>
<ul>
<li>mobile phone manufacturer</li>
<li>model (if applicable)</li>
<li>tool/utility and link to it</li>
<li>as well as a short description detailing why it is so useful</li>
</ul>
<p>Open Source or at least freely available software is preferred, if there is however payware that is so good, that you simply got to mention it here, make sure to mention its prize, too.</p>
<p>Thanks</p>
<p>I will start with:</p>
<p><strong>Nokia S60:</strong> </p>
<ul>
<li><a href="http://jbak.ru/jbaktaskman_en.php" rel="nofollow">Task manager Jbak TaskMan</a></li>
<li><a href="http://sourceforge.net/projects/s2putty/" rel="nofollow">s2putty - putty based SSH client for your S60 based smartphone</a></li>
<li><a href="http://opensource.nokia.com/projects/pythonfors60/" rel="nofollow">Python for S60 phones</a></li>
<li><a href="http://code.google.com/p/ped-s60/" rel="nofollow">Ped Mobile Python IDE for Nokia S60 platform.</a></li>
</ul>
http://stackoverflow.com/questions/977474/programming-language-properties-that-facilitate-refactoring3Programming Language Properties that facilitate refactoring?none2009-06-10T18:48:07Z2009-10-03T05:30:01Z
<p>What are common traits/properties of programming languages that facilitate (simplify) the development of widely automated source code analysis and re-engineering (transformation) tools?</p>
<p>I am mostly thinking in terms of programming language features that make it easier to develop static analysis and refactoring tools (i.e. compare Java vs. C++, the former of which has better support for refactoring).</p>
<p>In other words, a programming language that would be explicitly designed to provide support for automated static analysis and refactoring right from the beginning, what characteristics would it preferably feature?</p>
<p>For example, for <a href="http://en.wikipedia.org/wiki/Ada_(programming_language)" rel="nofollow">Ada</a>, there's the <a href="http://en.wikipedia.org/wiki/Ada_Semantic_Interface_Specification" rel="nofollow">ASIS</a>:</p>
<blockquote>
<p>The Ada Semantic Interface Specification (ASIS) is a layered, open architecture providing vendor-independent access to the Ada Library Environment. It allows for the static analysis of Ada programs and libraries.
ASIS, the Ada Semantic Interface Specification, is a library that gives applications access to the complete syntactic and semantic structure of an Ada compilation unit. This library is typically used by tools that need to perform some sort of static analysis on an Ada program.</p>
<p><a href="http://www.adaic.org/standards/asis.html" rel="nofollow">ASIS information:</a> ASIS provides a standard way for tools to extract data that are best collected by an Ada compiler or other source code analyzer. Tools which use ASIS are themselves written in Ada, and can be very easily ported between Ada compilers which support ASIS. Using ASIS, developers can produce powerful code analysis tools with a high degree of portability. They can also save the considerable expense of implementing the algorithms that extract semantic information from the source program. For example, ASIS tools already exist that generate source-code metrics, check a program's conformance to coding styles or restrictions, make cross-references, and globally analyze programs for validation and verification. </p>
</blockquote>
<p>Also see, <a href="http://www.sigada.org/WG/asiswg/ASIS_FAQ.html" rel="nofollow">ASIS FAQ</a></p>
<p>Can you think of other programming languages that provide a similarly comprehensive and complete interface to working with source code specifically for analysis/transformation purposes?</p>
<p>I am thinking about specific implementation techniques to provide the low level hooks, for example core library functions that provide a way to inspect an AST or ASG at runtime.</p>
http://stackoverflow.com/questions/646116/open-source-cross-platform-multiplayer-networking-libraries1Open Source & Cross Platform Multiplayer/Networking Libraries?none2009-03-14T15:38:24Z2009-10-03T00:42:46Z
<p>While <a href="http://www.jenkinssoftware.com/" rel="nofollow">raknet</a> seems fairly interesting and really appealing from a feature-point of view, its <a href="http://creativecommons.org/licenses/by-nc/2.5/" rel="nofollow">licensing terms</a> seem to be possibly troublesome for GPL'ed projects that may be leveraged commercially, something which is explicitly forbidden by the terms of the creative commons license. </p>
<p>While there's also <a href="http:///www.opentnl.org" rel="nofollow">opentnl</a>, it doesn't seem to be as actively maintained anymore nowadays, in fact downloading the latest stable tarball even fails during compilation because it doesn't seem to support gcc >= 3.0 (?)</p>
<p>Of course, there's still also <a href="http://enet.bespin.org/" rel="nofollow">enet</a>, but this one cannot be really compared to the abstract features that are supported by raknet/opentnl.</p>
<p>So, apart from any non-trivial dependencies such as ACE, Boost or Poco, are there any viable alternatives for embedding a fairly compact, well-maintained UDP-networking library?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/926266/performance-optimization-strategies-of-last-resort/928339#9283393Answer by none for Performance optimization strategies of last resort?none2009-05-29T21:58:01Z2009-09-13T19:31:54Z<p>You should probably consider the "Google perspective", i.e. determine how your application can become largely parallelized and concurrent, which will inevitably also mean at some point to look into distributing your application across different machines and networks, so that it can ideally scale almost linearly with the hardware that you throw at it.</p>
<p>On the other hand, the Google folks are also known for throwing lots of manpower and resources at solving some of the issues in projects, tools and infrastructure they are using, such as for example <a href="http://gcc.gnu.org/wiki/LinkTimeOptimization" rel="nofollow">whole program optimization for gcc</a> by having a dedicated team of engineers hacking gcc internals in order to prepare it for Google-typical use case scenarios.</p>
<p>Similarly, profiling an application no longer means to simply profile the program code, but also all its surrounding systems and infrastructure (think networks, switches, server, RAID arrays) in order to identify redundancies and optimization potential from a system's point of view.</p>
http://stackoverflow.com/questions/993760/desirable-features-for-the-ideal-ide3Desirable Features for the "ideal IDE" ?none2009-06-14T21:05:21Z2009-08-23T05:43:46Z
<p><strong>Imagine you could ask someone to develop your ideal IDE for you, what features would it need to have?</strong></p>
<p>This is largely inspired by a related <a href="http://stackoverflow.com/questions/987182/improving-the-way-we-write-code">SO question ("Improving the way we write code")</a> and a <a href="http://stackoverflow.com/questions/987182/improving-the-way-we-write-code/990735#990735">response</a> to it listing various interesting and desirable IDE features from a user interface point of view.</p>
<p>By asking this question, I am hoping to come up with a comprehensive list of features for an ideal IDE, so that IDE projects like for example <a href="http://www.eclipse.org/" rel="nofollow">eclipse</a>, <a href="http://www.codeblocks.org" rel="nofollow">codeblocks</a>, <a href="http://www.kdevelop.org/" rel="nofollow">kdevelop</a> or <a href="http://projects.gnome.org/anjuta/index.shtml" rel="nofollow">anjuta</a> can hopefully refer to this list to get an impression about what features developers generally find useful.</p>
<p>Maybe, we can even come up with pretty novel features that way?</p>
http://stackoverflow.com/questions/1139065/does-erlang-work-on-any-non-x86-processors/1178567#11785671Answer by none for Does Erlang work on any non-x86 processors?none2009-07-24T15:54:48Z2009-07-24T15:54:48Z<p>Also, see: <a href="http://stackoverflow.com/questions/213337/how-do-i-make-an-already-written-concurrent-program-run-on-a-gpu-array">http://stackoverflow.com/questions/213337/how-do-i-make-an-already-written-concurrent-program-run-on-a-gpu-array</a> and <a href="http://stackoverflow.com/questions/210732/gpgpu-vms-any-open-source-projects-to-port-virtual-machines-onto-graphics-proce">http://stackoverflow.com/questions/210732/gpgpu-vms-any-open-source-projects-to-port-virtual-machines-onto-graphics-proce</a></p>
http://stackoverflow.com/questions/899411/what-is-the-recommended-way-of-encoding-decoding-xdr-types-in-erlang1What is the recommended way of encoding/decoding XDR types in erlang?none2009-05-22T18:50:49Z2009-07-21T10:16:19Z
<p>In another SO discussion, we were talking about interfacing an erlang application to another non-erlang app that is using <a href="http://en.wikipedia.org/wiki/External_Data_Representation" rel="nofollow">XDR encoded packets for network communications</a>. </p>
<p>Unfortunately, I couldn't really find any real pointers on dealing with XDR data using erlang.</p>
<p>So what is the recommended way of dealing with XDR encoded data in erlang?</p>
<p>Thanks</p>
<p>PS: So far, I could find the following resources:</p>
<ul>
<li><p><a href="http://www.erlang.se/workshop/2002/Armstrong.pdf" rel="nofollow">Getting Erlang to talk to the outside world</a> (2002, PDF, only mentions XDR shortly)</p></li>
<li><p><a href="http://www.jetcafe.org/~npc/doc/euc00-sendmail.html" rel="nofollow">Sendmail Meets Erlang: Experiences Using Erlang for Email Applications</a> (2000, also nothing relevant in here, but still an interesting read)</p></li>
<li><p><a href="http://erlang.org/pipermail/erlang-questions/2000-August/001543.html" rel="nofollow">And then there's this posting</a>, which is relevant and provides some XDR routines, but is from 08/2000, and so even predates erlang's support for the bits syntax.</p></li>
</ul>
http://stackoverflow.com/questions/1092230/tools-for-managing-text-templates-boilerplate-code-or-snippets0Tools for managing Text Templates / Boilerplate Code or Snippets ?none2009-07-07T13:04:06Z2009-07-07T19:08:35Z
<p>I am looking for freely available tools to help manage text templates (e.g. for writing emails or other letters), boilerplate code and other snippets. </p>
<p>Preferably something open source or at least freeware. </p>
<p>Ideally, it would not be specific to managing source code, but would generally help manage all sorts of ASCII chunks (or maybe even RTF?). </p>
<p>Either something web based or cross-platform (Linux/Win32).</p>
<p>For example, I keep writing certain letters that would really only need to be slightly customized (e.g. change date, name, un/select certain phrases).</p>
<p>Any good pointers?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1093618/how-does-the-friend-keyword-class-function-break-encapsulation-in-c/1093640#10936400Answer by none for How does the friend keyword (Class/Function) break encapsulation in C++?none2009-07-07T17:24:19Z2009-07-07T17:24:19Z<p>As soon as you declare a friend function, access specifiers, and thus, encapsulated details of your class will become accessible by that friend function, which is not a part/method of your class. So, you basically delegate some control over internal data structures and methods to an external function that you 'trust'</p>
http://stackoverflow.com/questions/1071092/why-would-i-want-to-use-a-pure-virtual-function-in-c/1071144#10711444Answer by none for Why would I want to use a pure virtual function in C++?none2009-07-01T20:16:45Z2009-07-01T20:16:45Z<p>Pure virtual methods in C++ are basically a way to define <strong>interfaces</strong> without requiring them to be implemented.</p>
http://stackoverflow.com/questions/1003734/programmatically-detecting-most-important-content-on-a-page/1017955#101795511Answer by none for Programmatically detecting "most important content" on a page...none2009-06-19T13:27:31Z2009-06-20T08:02:25Z<blockquote>
<p>think of your standard news/blog/magazine-style website, containing navigation (with submenu's possibly), ads, comments, and the prize - our article/blog/news-body.</p>
<p>How would you determine what information on a news/blog/magazine is the primary data in an automated fashion?</p>
</blockquote>
<p>I would probably try something like this:</p>
<ul>
<li>open URL</li>
<li>read in all links to same website from that page</li>
<li>follow all links and build a DOM tree for each URL (HTML file)</li>
<li>this should help you come up with redundant contents (included templates and such)</li>
<li>compare DOM trees for all documents on same site (tree walking)</li>
<li>strip all redundant nodes (i.e. repeated, navigational markup, ads and such things)</li>
<li>try to identify similar nodes and strip if possible</li>
<li>find largest unique text blocks that are not to be found in other DOMs on that website (i.e. unique content)</li>
<li>add as candidate for further processing</li>
</ul>
<p>This approach of doing it seems pretty promising because it would be fairly simple to do, but still have good potential to be adaptive, even to complex Web 2.0 pages that make excessive use of templates, because it would identify similiar HTML nodes in between all pages on the same website.</p>
<p>This could probably be further improved by simpling using a scoring system to keep track of DOM nodes that were previously identified to contain unique contents, so that these nodes are prioritized for other pages.</p>
http://stackoverflow.com/questions/995161/how-to-explain-an-object/1017893#10178931Answer by none for How to explain an object?none2009-06-19T13:11:50Z2009-06-19T13:11:50Z<p>If I were trying to explain classes and objects to someone completely unfamiliar with programming, I would probably use something along the lines of the following:</p>
<p>A class is just a "<em>recipe</em> for a thing", the class is made of different types of "ingredients" that have different characteristics (i.e. PODs and functions/methods).</p>
<p>So, in that it only contains descriptions of a layout (building blocks) and functionality.</p>
<p>Ingredients may be of different type: "data" in that they contain actual data fields (think facts stored in <strong><em>variables/fields</em></strong>), and "action" in that they contain specific <strong><em>methods</em></strong> to do things.</p>
<p>Some ingredients may be <em>secret</em>, you may not want to share all ingredients or you may not want to share some specific ways of doing specific things with the recipe (<strong>encapsulation</strong>). </p>
<p>So, you as the cook have the possibility to <em>restrict access</em> to ingredients, so that users of your recipe have to adhere to your recipe and simply use "pre-canned" steps (methods) of doing things that you provide (without them necessarily knowing what it is about): </p>
<p>Some ingredients may be meant to be only internally visible (<strong>private</strong> access) because they are only really relevant to that specific instance/manifestation of the recipe/class, while others may also be meant to be accessible from recipes that are based on this recipe (think customizations), that derive from it (<strong>protected</strong> access). </p>
<p>And then there are ingredients that shall be generally visible and accessible to all users of the recipe (<strong>public</strong>), because they compose the "frontend" or "interface" of the final product (they don't necessarily need to know about internals/low level implementation stuff).</p>
<p>Once a class is actually used to implement a particular recipe, a new object is created (the class gets instantiated): A chocolate cake is just one manifestation/version of the chocolate cake recipe. There can be many other versions using the same "recipe".</p>
<p>If you were to combine multiple recipes (e.g. chocolate cake and lemon cake), you can create a new recipe that derives from both recipes, basically creating a completely new recipe that shares the characteristics of the original recipes (<strong>multiple inheritance</strong>).</p>
<p>By basing new recipes on existing ones using inheritance, changes in the original recipe can be directly imported into the new recipe. Similarly, having a common ancestor recipe (type/super class), means that its very properties (fields and methods) can be expected in all sub classes (inherited/child recipes), in other words a generic "chocolate cake recipe" might be used to create two new specialized versions of a chocolate cake: "white chocolate cake" and "dark chocolate cake", where the color of the chocolate merely becomes an attribute that may be configurable using a chocolate cake specific method like "setChocolateColor()".</p>
<p>If you want your recipe to provide a way for new recipes to override some components of your recipe, you can provide boilerplate actions (methods) that can be individually overriden (<strong>virtual inheritance</strong>).</p>
http://stackoverflow.com/questions/1013455/free-memory-debugger-for-windows/1013615#10136150Answer by none for Free memory debugger for Windows?none2009-06-18T16:11:28Z2009-06-18T16:11:28Z<p><a href="http://ollydbg.de/" rel="nofollow">Ollydbg</a> is also pretty useful.</p>
http://stackoverflow.com/questions/1004664/can-i-sell-closed-source-software-that-depends-on-an-open-source-application/1004681#10046819Answer by none for Can I sell closed source software that depends on an open source application?none2009-06-17T01:31:42Z2009-06-18T02:43:09Z<p>Yes and yes, as long as you respect the license requirements, e.g. if you only use standard interfaces (such as socket connections or the CLI) to interface with an open source project, you are not obligated to also make your code open source. </p>
<p>Basically, just because you are using open source software by forking a process or by making a socket connection, doesn't necessarily impose restrictions on your own source code if the use is taking place by using existing and unmodified <strong>abstract</strong> interfaces (non low level). So, the use has to be obviously decoupled. Usually, accessing internals in the same address space (linking, shared memory, IPC) is considered a form of very tight coupling however. </p>
<p>So, if on the other hand, you are linking binaries together (libraries), you would have to comply with the corresponding license requirements (i.e. making source code available if requested). Similarly, if you had to modify standard interfaces of these open source packages, you would also be obligated to share these modifications with your users, as well as the original project.
Ideally, each modified package would be accompanied with complete source code, including all modifications.</p>
<p>Bundling open source software is merely a form of distributing it, a right that is explicitly granted to you, as long as you also ensure that your users are made aware of the corresponding license and also the fact that they can get the corresponding source code, too.</p>
<p>EDIT:Just to clarify regarding the comment, of course you should always consult legal professionals (lawyers) when making such decisions, however I stand by my above sentiments, also regarding GPL software (to quote <a href="http://www.fsf.org/licensing/licenses/gpl-faq.html#GPLInProprietarySystem" rel="nofollow">the FSF GPL FAQ</a>):</p>
<blockquote>
<p>However, in many cases you can distribute the GPL-covered software alongside your proprietary system. To do this validly, you must make sure that the free and non-free programs communicate at arms length, that they are not combined in a way that would make them effectively a single program. The difference between this and “incorporating” the GPL-covered software is partly a matter of substance and partly form. The substantive part is this: if the two programs are combined so that they become effectively two parts of one program, then you can't treat them as two separate programs. So the GPL has to cover the whole thing.</p>
</blockquote>
http://stackoverflow.com/questions/887502/prioritizing-erlang-nodes2Prioritizing erlang nodesnone2009-05-20T11:57:39Z2009-06-16T22:13:18Z
<p>Assuming I have a cluster of n erlang nodes, some of which may be on my LAN, while others may be connected using a WAN (i.e. via the internet), what are suitable mechanisms to cater for a) different bandwidth availability/behavior (e.g. latency induced) and b) nodes with differing computational power (or even memory constraints for that matter)?</p>
<p>In other words, how do I prioritize local nodes that have lots of computational power, over those that have a high latency and may be less powerful, or how would I ideally prioritize high performance remote nodes with high transmission latencies to specifically do those processes with a relatively huge computations/transmission (i.e. completed work per message ,per time unit) ratio?</p>
<p>I am mostly thinking in terms of basically benchmarking each node in a cluster by sending them a benchmark process to run during initialization, so that the latencies involved in messasing can be calculated, as well as the overall computation speed (i.e. using a node-specific timer to determine how fast a node terminates with any task).</p>
<p>Probably, something like that would have to be done repeatedly, on the one hand in order to get representative data (i.e. averaging data) and on the other hand it might possibly even be useful at runtime in order to be able to dynamically adjust to changing runtime conditions.</p>
<p>(In the same sense, one would probably want to prioritize locally running nodes over those running on other machines)</p>
<p>This would be meant to hopefully optimize internal job dispatch so that specific nodes handle specific jobs.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1001307/detecting-endianness-programmatically-in-a-c-program/1001344#10013440Answer by none for Detecting endianness programmatically in a C++ programnone2009-06-16T13:03:53Z2009-06-16T13:03:53Z<p>For further details, you may want to check out this codeproject article <a href="http://www.codeproject.com/KB/cpp/endianness.aspx" rel="nofollow">Basic concepts on Endianness:</p>
<blockquote>
<p><strong>How to dynamically test for the Endian type at run time?</strong></p>
<p>As explained in Computer
Animation FAQ</a>, you can use the
following function to see if your code
is running on a Little- or Big-Endian
system: Collapse</p>
<pre><code>#define BIG_ENDIAN 0
#define LITTLE_ENDIAN 1
</code></pre>
</blockquote>
<pre><code>int TestByteOrder()
{
short int word = 0x0001;
char *byte = (char *) &word;
return(byte[0] ? LITTLE_ENDIAN : BIG_ENDIAN);
}
</code></pre>
<blockquote>
<p>This code assigns the value 0001h to a
16-bit integer. A char pointer is then
assigned to point at the first
(least-significant) byte of the
integer value. If the first byte of
the integer is 0x01h, then the system
is Little-Endian (the 0x01h is in the
lowest, or least-significant,
address). If it is 0x00h then the
system is Big-Endian.</p>
</blockquote>
http://stackoverflow.com/questions/886254/do-you-know-more-interactive-tutorials-courses-like-try-ruby-for-any-language/1000496#10004961Answer by none for Do you know more interactive tutorials/courses like Try Ruby? (for any language)none2009-06-16T09:43:25Z2009-06-16T09:43:25Z<blockquote>
<p>Do you know more interactive tutorials/courses
Once a friend showed me a similar tutorial but for learning C, it was an amazing little program for DOS.</p>
</blockquote>
<p>For <a href="http://en.wikipedia.org/wiki/Ada_(programming_language)" rel="nofollow">Ada 95</a> there's a very similar DOS (console) program available which provides an interactive introduction to Ada programming: <a href="http://www.adatutor.com/adatu401.zip" rel="nofollow">Ada Tutor</a> (it comes with quiz questions to test comprehension of relevant parts).</p>
http://stackoverflow.com/questions/999820/what-is-the-significance-of-access-specifiers-in-a-class-in-c/999854#9998543Answer by none for What is the significance of access specifiers in a class in c++? none2009-06-16T06:40:01Z2009-06-16T07:09:44Z<p>If you are totally new to this, you could start by imagining it like something along the lines of:</p>
<ul>
<li><p><strong>private</strong> members of a class (methods or variables) are like your 'raw' thoughts, basically uncensored - so, you'll normally not want to share your "uncensored thoughts" with other people to make life easier, but also to prevent people from playing with your thoughts: after all, these are your thoughts and you don't want someone to mess with "your internals" (because you depend on your thoughts being accessed and manipulated only by you, once you start sharing internal thoughts with others and provide access to them, things become increasingly complicated).</p></li>
<li><p><strong>protected</strong> members of a class are things (thoughts) that you are willing to share with people who belong to your family (who derive from you), so you share more internal state ("thoughts") with family members. But they can only actually access it if they derive from you (your class), thereby proving that they belong to you.</p></li>
<li><p><strong>public</strong> members of a class are generally accessible to anyone working with your class, they are the external representation or "interface", and they often abstract out many internal things that users of your interface don't need to know about.</p></li>
</ul>
<p>And then, there's also the possibility of sharing internal (private) details with external entities by declaring them "<strong>friend</strong>", basically allowing them to poke into class members that are otherwise not accessible.</p>
http://stackoverflow.com/questions/999856/transparent-proxy-tool-for-sniffing-web-services-traffic/999866#9998663Answer by none for transparent proxy / tool for sniffing web services trafficnone2009-06-16T06:46:03Z2009-06-16T07:03:13Z<p>You might want to look into <a href="http://www.wireshark.org/" rel="nofollow">wireshark</a>.</p>
<p>But if this is just about debugging a web service, and thus only about logging HTTP traffic, I would look specifically for HTTP sniffers. Is the API SOAP or JSON?</p>
<p>Here's a related article <a href="http://ask.metafilter.com/16919/Sniffing-HTTP-traffic" rel="nofollow">Sniffing HTTP</a>, which also mentions a perl based proxy named "HTTPSniffer" and another tool named <a href="http://cockos.com/assniffer/" rel="nofollow">assniffer</a>:</p>
<blockquote>
<p>assniffer can monitor (using winpcap or pcap) a network, and for every HTTP transfer it sees, save a copy of the transferred data.</p>
</blockquote>
<p>And here's a quick find, that I could come up with <a href="http://www.effetech.com/sniffer/" rel="nofollow">EffeTech HTTP Sniffer</a>:</p>
<blockquote>
<p>EffeTech HTTP Sniffer is a HTTP packet
sniffer, protocol analyzer and file
reassembly software based on windows
platform. Unlike most other sniffers,
it is dedicated to capture IP packets
containing HTTP protocol, rebuild the
HTTP sessions, and reassemble files
sent through HTTP protocol. Its smart
real-time analyzer enables on-the-fly
content viewing while capture,
analyze, parse and decode HTTP
protocol.</p>
<p>By delivering an ease of use, and
award-winning HTTP monitoring utility,
the EffeTech HTTP sniffer has become
the preferred choice of managers,
network administrators and developers
worldwide. No matter you are a
professional or a newbie, you can
easily get anything about the HTTP
traffic on your LAN.</p>
</blockquote>
<p><img src="http://www.effetech.com/images/ehs%5Fbig.jpg" alt="screenshot" /></p>
http://stackoverflow.com/questions/994405/monitor-wireless-network-usage/994410#9944100Answer by none for monitor wireless network usagenone2009-06-15T03:30:16Z2009-06-15T03:30:16Z<p>You really didn't tell us much about your platform or the type of router, however these things are usually highly hardware-specific. Normally, this type of info will be exposed via some sort of administration interface that's usually accessible via telnet. Also, routers will usually have a dedicated <a href="http://en.wikipedia.org/wiki/Simple_Network_Management_Protocol" rel="nofollow">SNMP</a> port.</p>
http://stackoverflow.com/questions/994353/static-variable-inside-template-function/994372#994372-2Answer by none for Static variable inside template functionnone2009-06-15T03:07:20Z2009-06-15T03:07:20Z<ul>
<li>templates will only actually be turned into code once they're instantiated (i.e. used)</li>
<li>headers are not to be used for implementation code, but only for declarations</li>
</ul>
http://stackoverflow.com/questions/993434/what-language-is-to-binary-as-perl-is-to-text/993512#99351222Answer by none for What language is to binary, as Perl is to text?none2009-06-14T19:09:23Z2009-06-14T20:32:32Z<blockquote>
<p>Things I want to do include presenting arbitrary chunks of the data in various forms (binary, decimal, hex), convert data from one endianess to another, etc. That is, things you normally would use C or assembly for, but I'm looking for a language which allows for writing tiny pieces of code for highly specific, one-time purposes very quickly.</p>
</blockquote>
<p>Well, while it may seem counter-intuitive, I found <a href="http://erlang.org/" rel="nofollow">erlang</a> extremely well-suited for this, namely due to its powerful support for <a href="http://en.wikibooks.org/wiki/Erlang_Programming/Pattern_Matching" rel="nofollow">pattern matching</a>, even for bytes and bits (called "<a href="http://erlang.org/doc/programming_examples/bit_syntax.html" rel="nofollow">Erlang Bit Syntax</a>"). Which makes it very easy to create even very advanced programs that deal with inspecting and manipulating data on a byte- and even on a bit-level:</p>
<blockquote>
<p>Since 2001, the functional language Erlang comes with a byte-oriented datatype (called binary) and with constructs to do pattern matching on a binary. </p>
</blockquote>
<p>And to quote <a href="http://www.informit.com/articles/article.aspx?p=482670&seqNum=4" rel="nofollow">informIT.com</a>:</p>
<blockquote>
<p>(Erlang) Pattern matching really starts to get
fun when combined with the binary
type. Consider an application that
receives packets from a network and
then processes them. The four bytes in
a packet might be a network byte-order
packet type identifier. In Erlang, you
would just need a single processPacket
function that could convert this into
a data structure for internal
processing. It would look something
like this:</p>
</blockquote>
<pre><code>processPacket(<<1:32/big,RestOfPacket>>) ->
% Process type one packets
...
;
processPacket(<<2:32/big,RestOfPacket>>) ->
% Process type two packets
...
</code></pre>
<p>So, erlang with its built-in support for pattern matching and it being a functional language is pretty expressive, see for example the implementation of ueencode in erlang:</p>
<pre><code>uuencode(BitStr) ->
<< (X+32):8 || <<X:6>> <= BitStr >>.
uudecode(Text) ->
<< (X-32):6 || <<X:8>> <= Text >>.
</code></pre>
<p>For an introduction, see <a href="http://www.erlang.se/euc/05/1640PerKostis.pdf" rel="nofollow">Bitlevel Binaries and Generalized Comprehensions in Erlang</a>.You may also want to check out some of the following pointers:</p>
<ul>
<li><a href="http://easyerl.blogspot.com/2008/06/parsing-binaries-with-erlang-lamers.html" rel="nofollow">Parsing Binaries with erlang, lamers inside</a></li>
<li><a href="http://www.raine-tech.com/blogs/jr/post/Wave-File-Information-Decoder-in-Erlang.aspx" rel="nofollow">Wave File Information Decoder in Erlang</a></li>
<li><a href="http://steve.vinoski.net/blog/2007/09/29/more-file-processing-with-erlang/" rel="nofollow">More File Processing with Erlang</a></li>
<li><a href="http://propella.blogspot.com/2009/03/learning-erlang-and-adobe-flash-format.html" rel="nofollow">Learning Erlang and Adobe Flash format same time</a></li>
<li><a href="http://metalinguist.wordpress.com/2007/07/09/largbe-binary-data-is-a-weakness-of-erlang/" rel="nofollow">Large Binary Data is (not) a Weakness of Erlang</a></li>
<li><a href="http://www.erlang.se/euc/07/papers/1700Gustafsson.pdf" rel="nofollow">Programming Efficiently with Binaries and Bit Strings</a></li>
<li><a href="http://www.postneo.com/2007/08/10/erlang-bit-syntax-and-network-programming" rel="nofollow">Erlang bit syntax and network programming</a></li>
<li><a href="http://pupeno.com/blog/erlang-the-language-for-network-programming-issue" rel="nofollow">erlang, the language for network programming (1)</a></li>
<li><a href="http://pupeno.com/blog/erlang-the-language-for-network-programming-issue-1?set_language=eo" rel="nofollow"> Erlang, the language for network programming Issue 2: binary pattern matching</a></li>
<li><a href="http://jimmenard.blogspot.com/2007/05/erlang-midi-file-readerwriter.html" rel="nofollow">An Erlang MIDI File Reader/Writer</a></li>
<li><a href="http://community.livejournal.com/en_dmitriid/5806.html" rel="nofollow">Erlang Bit Syntax</a></li>
<li><a href="http://fanf.livejournal.com/78234.html" rel="nofollow">Comprehending endianness</a></li>
<li><a href="http://lautaportti.wordpress.com/2009/02/02/playing-with-erlang/" rel="nofollow">Playing with Erlang</a></li>
<li><a href="http://nickelcode.com/2009/01/17/erlang-pattern-matching-declarations-vs-case-statementsother/" rel="nofollow">Erlang: Pattern Matching Declarations vs Case Statements/Other </a></li>
<li><a href="http://www.duomark.com/erlang/publications/acm2005.pdf" rel="nofollow">A Stream Library using Erlang Binaries</a></li>
<li><a href="http://user.it.uu.se/~pergu/papers/erlang05.pdf" rel="nofollow">Bit-level Binaries and Generalized Comprehensions in Erlang</a></li>
<li><a href="http://www.it.uu.se/research/group/hipe/papers/padl07.pdf" rel="nofollow">Applications, Implementation and Performance Evaluation of Bit Stream Programming in Erlang</a></li>
</ul>
http://stackoverflow.com/questions/991920/c-open-source-project-recommend/992037#9920371Answer by none for c++ open source project recommendnone2009-06-14T02:58:53Z2009-06-14T02:58:53Z<p>You mentioned in one of the comments above that you are interested in database related programming, you might want to check out the <a href="http://pocoproject.org/" rel="nofollow">poco</a> project, which is a fairly advanced collection of libraries:</p>
<blockquote>
<p>Next generation C++ class libraries for network-centric applications.</p>
<p>The POCO C++ Libraries (POCO stands for POrtable COmponents) are open source C++ class libraries that simplify and accelerate the development of network-centric, portable applications in C++. The libraries integrate perfectly with the C++ Standard Library and fill many of the functional gaps left open by it. Their modular and efficient design and implementation makes the POCO C++ Libraries extremely well suited for embedded development, an area where the C++ programming language is becoming increasingly popular, due to its suitability for both low-level (device I/O, interrupt handlers, etc.) and high-level object-oriented development. Of course, the POCO C++ Libraries are also ready for enterprise-level challenges.</p>
<p>Features</p>
<ul>
<li>threads, thread synchronization and advanced abstractions for multithreaded programming</li>
<li>streams and filesystem access</li>
<li>shared libraries and class loading</li>
<li>powerful logging and error reporting</li>
<li>security and encryption</li>
<li>network programming (TCP/IP sockets, HTTP client and HTTP server, FTP, SMTP, POP3, etc.)</li>
<li>XML parsing (SAX2 and DOM) and generation</li>
<li>configuration file and options handling</li>
<li><strong>SQL database access</strong> (ODBC, MySQL, SQLite)</li>
</ul>
</blockquote>
<p>Some time ago, there was also some talk on sourceforge about possibly implementing an <a href="http://en.wikipedia.org/wiki/Object_database" rel="nofollow">ODBMS</a> using poco (see <a href="http://sourceforge.net/tracker/?func=detail&aid=1609657&group_id=132964&atid=725712" rel="nofollow">here</a>).</p>
http://stackoverflow.com/questions/978704/call-tree-for-embedded-software/992017#9920170Answer by none for Call tree for embedded softwarenone2009-06-14T02:37:22Z2009-06-14T02:37:22Z<p>I have suggested this approach already in <a href="http://stackoverflow.com/questions/983574/unravelling-assembly-language-spaghetti-code/983782#983782">another discussion</a> about embedded development, but if you really need a callgraph, as well as stack use info, and all this for free, I would personally consider using an open source emulator to simulate the whole thing, while instrumenting the object code by adding a handful hooks to the emulator itself to get this data.</p>
<p>I am not familiar with this particular target, but there is a whole number of open source ARM emulators available (freshmeat, sourceforge, google), and you are probably mostly interested in opcodes related to call/ret and push/pop?
For example check out <a href="http://www.skyeye.org" rel="nofollow">skyeye</a>.</p>
<p>So, even if you find that it's not straightforward to extend a compiler or an emulator to provide this information, it should still be possible to create a simple script in order to look for the entrypoint and all calls/rets, as well as opcodes related to stack usage.</p>
<p>Of course, the only reliable information on stack usage is going to come from runtime instrumentation, preferably exercising all important code paths.</p>
http://stackoverflow.com/questions/991496/how-to-ignore-certain-socket-requests/991514#9915140Answer by none for How to ignore certain socket requests.none2009-06-13T21:02:58Z2009-06-13T21:02:58Z<p>Just look at the differences between valid connection requests and invalid ones (i.e. dump both request types to examine each request), in your specific case, you'll want to look at the <a href="http://en.wikipedia.org/wiki/List_of_HTTP_headers" rel="nofollow">HTTP request header</a> to ignore all such requests (<strong>assuming</strong> that valid requests do not make use of HTTP).</p>
http://stackoverflow.com/questions/988963/should-programmers-take-business-classes-training/991230#9912300Answer by none for Should programmers take business classes/training?none2009-06-13T18:27:51Z2009-06-13T18:27:51Z<blockquote>
<p>Do you think it would help if programmers were more adept at scheduling, public speaking, communicating, accounting, etc.? Or would this just be a distraction? I know this might make someone a better company man, but would it really make you a better programmer?</p>
</blockquote>
<p>Well, without meaning to provide a recursive answer, but just take a look at the "rock stars" on stackoverflow.com: those with really high reputation are usually not only known to be highly capable software developers, but obviously also excellent communicators.</p>
<p>Go figure ...</p>
<blockquote>
<p>On that same note, do you think people who manage programmers should be required to take some classes or training on programming?</p>
</blockquote>
<p>It would certainly help to improve the mutual understanding</p>
http://stackoverflow.com/questions/989638/can-nice-and-exec-cooperate-in-linux/989657#9896571Answer by none for can "nice" and "exec" cooperate in linux?none2009-06-13T00:53:04Z2009-06-13T00:53:04Z<p>Think about what it is that exec will be doing (replacing the currently running process), you can adjust the process priority separately, i.e. using top or by using renice from another process.</p>
http://stackoverflow.com/questions/142722/coding-for-high-reliability-availability-security-what-standards-do-i-read/989495#9894951Answer by none for Coding for high reliability/availability/security - what standards do I read?none2009-06-12T23:24:43Z2009-06-12T23:24:43Z<p>For programming high reliability systems in <a href="http://en.wikipedia.org/wiki/Ada_(programming_language)" rel="nofollow">Ada</a>, there is: <a href="http://polaris.dit.upm.es/~ork/documents/adahis.pdf" rel="nofollow">ISO/IEC TR 15942:"Information technology — Programming languages — Guide for the use of the Ada programming language in high integrity systems"</a>:</p>
<blockquote>
<p><strong>Introduction</strong></p>
<p>As a society, we are increasingly
reliant upon high integrity systems:
for safety systems (such as
fly-by-wire aircraft), for security
systems (to protect digital
information) or for financial systems
(e.g., cash dispensers). As the
complexity of these systems grows, so
do the demands for improved techniques
for the production of the software
components of the system. These high
integrity systems must be shown to be
fully predictable in operation and
have all the properties required of
them. This can only be achieved by
analysing the software, in addition to
the use of conventional dynamic
testing. There is, currently, no
mainstream high level language where
all programs in that language are
guaranteed to be predictable and
analysable. Therefore for any choice
of implementation language it is
essential to control the ways that the
language is used by the application.
The Ada language [ARM] is designed
with specific mechanisms for
controlling the use of certain aspects
of the language. Furthermore,</p>
<ol>
<li><p>The semantics of Ada programs are well-defined, even in error
situations. Specifically, the effect
of a program can be predicted from the
language definition with few
implementation dependencies or
interactions between language
features.</p></li>
<li><p>The strong typing within the language can be used to reduce the
scope (and cost) of analysis to verify
key properties.</p></li>
<li><p>The Ada language has been successfully used on many high
integrity applications. This
demonstrates that validated Ada
compilers have the quality required
for such applications.</p></li>
<li><p>Guidance can be provided to facilitate the use of the language and
to encourage the development of tools
for further verification.</p></li>
</ol>
<p>Ada is therefore ideally suited for
implementing high integrity software
and this document provides guidance in
the controls that are required on the
use of Ada to ensure that programs are
predictable and analysable.</p>
</blockquote>
http://stackoverflow.com/questions/501208/what-projects-do-you-feel-sorry-for/1035190#1035190Comment by none on What projects do you feel sorry for?none2009-11-30T19:07:54Z2009-11-30T19:07:54ZIMO, The problem about the GIMP isn't necessarily about its features (or lack thereof), but more so about its unusual user interface approach which feels widely different to many users, especially the ones used to concepts on MS platforms.http://stackoverflow.com/questions/1016218/how-does-a-stackless-language-work/1053159#1053159Comment by none on How does a stackless language work?none2009-11-30T18:56:41Z2009-11-30T18:56:41ZYou might also want to check out <a href="http://gcc.gnu.org/wiki/SplitStacks" rel="nofollow">gcc.gnu.org/wiki/SplitStacks</a>http://stackoverflow.com/questions/1004664/can-i-sell-closed-source-software-that-depends-on-an-open-source-application/1004740#1004740Comment by none on Can I sell closed source software that depends on an open source application?none2009-06-20T15:12:30Z2009-06-20T15:12:30Zthanks for clarifying this, I was indeed mostly referring to the GPL because it obviously is the more restrictive license in this context, so whatever can be safely done for GPL'ed software, can obviously also done with BSD licensed software.http://stackoverflow.com/questions/1004664/can-i-sell-closed-source-software-that-depends-on-an-open-source-application/1004681#1004681Comment by none on Can I sell closed source software that depends on an open source application?none2009-06-18T02:44:22Z2009-06-18T02:44:22ZIf I am not misunderstanding you, I disagree with you, I have edited my original response, to include the corresponding paragraph from the FSF FAQ which supports my point of view.http://stackoverflow.com/questions/714905/threads-in-x86-assembler-using-the-gnu-assember-as/999610#999610Comment by none on Threads in x86 assembler (using the GNU assember: as)none2009-06-16T22:56:45Z2009-06-16T22:56:45Zhi, you brought up parlanse in several of your postings, is it actually available to end users? I checked out the examples on your webpage (<a href="http://www.semdesigns.com/Products/Parlanse/examples.html" rel="nofollow">semdesigns.com/Products/Parlanse/…</a>) and it looks rather LISPish?http://stackoverflow.com/questions/887502/prioritizing-erlang-nodes/1004213#1004213Comment by none on Prioritizing erlang nodesnone2009-06-16T22:52:34Z2009-06-16T22:52:34ZThanks for your response, the technique you used is pretty much in line with what I have been envisioning (and what I sketched out in the question). I think it would be interesting to see exactly this sort of scenario become supported by some form of erlang infrastructure (e.g. using OTP). I have accepted your answer because it really is very close to my scenario.http://stackoverflow.com/questions/999980/how-to-integrate-assembly-code-when-i-am-designing-a-compiler-in-cComment by none on how to integrate assembly code when i am designing a compiler in c?none2009-06-16T07:27:55Z2009-06-16T07:27:55Zplease specify what platform you are using, so that we can provide proper assembly syntax.http://stackoverflow.com/questions/994353/static-variable-inside-template-function/994372#994372Comment by none on Static variable inside template functionnone2009-06-15T07:27:08Z2009-06-15T07:27:08Zfolks, if you bother to downvote me, I'd appreciate to leave a comment, as to what the problem is - obviously the original question was pretty vague ...http://stackoverflow.com/questions/930622/does-there-exist-a-wiki-for-editing-doxygen-commentsComment by none on Does there exist a "wiki" for editing doxygen comments?none2009-06-15T03:02:10Z2009-06-15T03:02:10Zgiven the overall positive feedback, I would consider starting a new question asking people if they'd like to use something like this (pro & cons) and possibly detail their requirements for such a "source code documentation wiki".http://stackoverflow.com/questions/993760/desirable-features-for-the-ideal-ide/993801#993801Comment by none on Desirable Features for the "ideal IDE" ?none2009-06-15T02:58:22Z2009-06-15T02:58:22Zyes, and please use bulletin style to make it easier to look at each idea separatelyhttp://stackoverflow.com/questions/993760/desirable-features-for-the-ideal-ideComment by none on Desirable Features for the "ideal IDE" ?none2009-06-14T23:42:09Z2009-06-14T23:42:09ZThe latter wasn't the intent behind this question, the original intent is basically about finding novel approaches to handling code in an IDE from a user interface point of view, maybe this needs some further clarification.http://stackoverflow.com/questions/977474/programming-language-properties-that-facilitate-refactoring/992212#992212Comment by none on Programming Language Properties that facilitate refactoring?none2009-06-14T23:03:47Z2009-06-14T23:03:47ZI think the combination of a) functional programming (style), b) static/strong typing, c) exposing language internals (e.g. hooks into the parser) and d) providing analysis and transformation infrastructure on top of it, is pretty much the answer to the original question.http://stackoverflow.com/questions/987182/improving-the-way-we-write-code/990735#990735Comment by none on Improving the way we write code?none2009-06-14T22:38:54Z2009-06-14T22:38:54ZInspired by your suggestions, I have started a new question specifically related to novel features in IDEs: <a href="http://stackoverflow.com/questions/993760/desirable-features-for-the-ideal-ide" rel="nofollow" title="desirable features for the ideal ide">stackoverflow.com/questions/993760/…</a>http://stackoverflow.com/questions/993760/desirable-features-for-the-ideal-ide/993813#993813Comment by none on Desirable Features for the "ideal IDE" ?none2009-06-14T21:42:06Z2009-06-14T21:42:06ZThere's a related gcc project you may be interested in: <a href="http://gcc.gnu.org/wiki/IncrementalCompiler" rel="nofollow">gcc.gnu.org/wiki/IncrementalCompiler</a>http://stackoverflow.com/questions/993760/desirable-features-for-the-ideal-ide/993811#993811Comment by none on Desirable Features for the "ideal IDE" ?none2009-06-14T21:41:13Z2009-06-14T21:41:13Zgood one, and preferably: don't require installation, but for example also work when used from a USB memory stick