active questions tagged stackoverflow - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T12:14:26Z http://stackoverflow.com/feeds/tag/stackoverflow http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1014603/flex-popup-window-stack-overflow -1 Flex Popup Window: Stack Overflow? Stefan Kendall 2009-06-18T19:04:59Z 2009-11-27T01:04:55Z <p>I'm somehow creating a stack overflow in Flex 3...I'm trying to get data out of a modal dialogue window as such:</p> <p>Main application:</p> <pre><code>var myPopup:MyPopup; function buttonClick( event:MouseEvent ):void { myPopup = MyPopup( PopUpManager.createPopUp( this, MyPopUp, true ) ); myPopup.addEventListener( CloseEvent.CLOSE, handler, false, 0, true ); } function handler():void { //get data } </code></pre> <p>MyPopup:</p> <pre><code>function buttonHandler( MouseEvent:event ):void { PopUpManager.remove( this ); this.dispatchEvent( new CloseEvent( CloseEvent.CLOSE ) ); } </code></pre> <p>If this is improper, what is the correct way to handle closing of the popup in a manner that allows me to use and retrieve data on the object?</p> http://stackoverflow.com/questions/1803491/how-can-i-ensure-that-the-question-that-i-ask-is-read-by-the-concerned-expert-in 0 How can I ensure that the question that I ask is read by the concerned expert in STACKOVERFLOW [closed] AKN 2009-11-26T12:46:50Z 2009-11-26T12:46:50Z <p>This site gives me an good opportunity to clarify my doubts.</p> <p>But how can I ensure that the expertise in the field has read my question.. So I can get relevant answers if they happen to come across my question... :)</p> <p>Does it merely depends on luck.. or Is there a way for it here in Stackoverflow..</p> <p>Please let me know.. Thanks</p> http://stackoverflow.com/questions/1803018/embedding-images-in-so-questions-from-picasa 0 Embedding images in SO questions from Picasa [closed] Mark 2009-11-26T10:57:56Z 2009-11-26T11:16:18Z <p>How do I embed an image from my oublic picasa album into a Stack Overflow question?</p> <p>for example: <a href="http://picasaweb.google.co.uk/lh/photo/IxksxmBh360sZqW9ZIhRpQ?feat=directlink" rel="nofollow">this image</a></p> <p>Shows as: <img src="http://picasaweb.google.co.uk/lh/photo/IxksxmBh360sZqW9ZIhRpQ?feat=directlink" alt="http://picasaweb.google.co.uk/lh/photo/IxksxmBh360sZqW9ZIhRpQ?feat=directlink"></p> <p>when I try to embed it.</p> <p>Thanks, Mark</p> http://stackoverflow.com/questions/1800097/is-there-a-questions-and-answers-rails-plugin 0 Is there a questions-and-answers rails plugin? humanzz 2009-11-25T21:30:53Z 2009-11-25T21:30:53Z <p>I am working on a project that has a questions-and-answers section. My client - and me of course - looks highly at stackoverflow and how it made questions-and-answers so great.</p> <p>My question is, Are there any plugins/apis that I can use in my Rails application to provide a questions-and-answers section without having to build it from scratch?</p> http://stackoverflow.com/questions/1797827/how-do-you-up-your-stackoverflow-reputation-points-in-a-realistic-manner 1 How do you up your stackoverflow reputation points in a realistic manner [closed] gg 2009-11-25T15:46:07Z 2009-11-25T15:49:19Z <p>This question might not be a directly related to programming but more the culture around it, specifically stack overflow. I recently stumbled onto “stackoverflow careers” and read how you could create an online CV that links to your stackoverflow point’s reputation allowing future employers to review your answers and questions. Since stackoverflow has become such a phenomenal success for developers, I realised that “stackoverflow careers” was going to be crucial when applying for software development jobs in the near future. This would imply that a high reputation score is going to be needed to reflect well on your CV.</p> <p>Now, I love stackoverflow and think it’s a great recourse for finding solutions to problems regarding software development. However, I cannot possibly sit on the site 24/7 and hope to be one of the first replies to a question to try and up my reputation points. I mean, developers gotta work you know...</p> <p>So my question is basically this, how do you up your reputation score on stackoverflow in a realistic manner. Users out there are boasting reputations of 25 000 and higher. How do you do this? Suggestions, comments, tricks etc would be helpful. Regards</p> <p>G</p> http://stackoverflow.com/questions/1787892/overflow-over-scanf8s-string 2 Overflow over scanf("%8s", string)? Figo 2009-11-24T04:58:48Z 2009-11-24T16:32:16Z <p>Hi, I know it's possible to overflow ordinary code:</p> <p><strong>char string[9];</strong></p> <p>scanf("%s", string). </p> <p>But is it possible to overflow scanf("%8s", string)? 8 is just an example.</p> <p>I know "%8s" works like a delimit, but I also notice when I input string longer than 8 chars, the program will terminate due to:</p> <p><strong>* stack smashing detected *</strong>: ./a.out terminated</p> <p>======= Backtrace: =========</p> <p>...</p> <p>Obviously there's a flag that detects stack smashing turned on by GCC by default. Since this is a stack smashing, then my guess is that it is still possible to overflow and execute arbitrary code.</p> <p>Contrary to normal overflow that mangles the caller of scanf("%s"), if scanf("%8s") can overflow, it will overflow within scanf function so that when scanf try to return, control is gained.</p> <p>But scanf is a syscall that requires mode-switch (switching from user mode into kernel mode), and internally it will call stuff like read to the stdin etc. So not sure if we can overflow in kernel mode or something..</p> <p>Comments are welcome!!</p> <p><strong><em>UPDATE >></em></strong> </p> <p>char string[9] is assumed in the above example. char string[8] in following real code.</p> <p>The question is really about the seeming conflicting story between safe scanf("%8s") and GCC abortion due to stack smashing.</p> <p>Simplified code:</p> <pre><code>void foo(pass some pointer) { char input[8]; int input_number = 0; while (1) { // looping console printf some info; scanf("%8s", input); input_number = atoi(input); if ((strlen(input) == 1) &amp;&amp; (strncmp(input, "q", 1) == 0)) { input_number = -1; } switch (input_number) { case -1: to quit the console if input = 'q'; default: to print info that pointer refers to; ... } } } </code></pre> <p>Note: </p> <ol> <li>foo is called by someone else.</li> <li>Though string is 8 bytes in real code with "%8s", I don't think this lead to smashing.</li> </ol> http://stackoverflow.com/questions/443009/delete-overload-recursive-overflow 1 delete overload, recursive overflow acidzombie24 2009-01-14T13:49:59Z 2009-11-24T10:43:55Z <p>Hey guys i wrote a quick test. I want delete to call deleteMe which will then delete itself. The purpose of this is so i can delete obj normally which are allocated by a lib. (i dont want any crashes due to crt or w/e).</p> <p>With delete this i get a stackoverflow, without it msvc says i leaked 4 bytes. When i dont call test i leak 0. How do i delete w/o a recursion problem? -edit- to make this more clear. I want the LIB to call delete (thus deleteMe) instead of the program due to crt</p> <pre><code>class B { public: virtual void deleteMe()=0; static void operator delete (void* p) { ((B*)p)-&gt;deleteMe(); } }; class D : public B { public: void deleteMe() { delete this; } }; int test() { B *p = new D; delete p; return 0; } </code></pre> http://stackoverflow.com/questions/1440696/structuremap-class-chaining-stack-overflow-or-other-errors 0 StructureMap Class Chaining - Stack Overflow or other errors Jason Young 2009-09-17T18:56:07Z 2009-11-24T05:00:03Z <p>This has completely baffled me on a number of configurations. I keep reading the documentation, and I just don't get it. Here is my registration code:</p> <pre><code>ForRequestedType&lt;SimpleWorkItemProcessor&gt;().TheDefault.Is.OfConcreteType&lt;SimpleWorkItemProcessor&gt;(); ForRequestedType&lt;WorkItemRetryProcessor&gt;().TheDefault.Is.OfConcreteType&lt;WorkItemRetryProcessor&gt;() .CtorDependency&lt;IWorkItemProcessor&gt;().Is(x =&gt; x.OfConcreteType&lt;SimpleWorkItemProcessor&gt;()) .WithCtorArg("busyDelay").EqualTo(TimeSpan.FromMilliseconds(20)) .WithCtorArg("overallTimeout").EqualTo(TimeSpan.FromSeconds(60)); ForRequestedType&lt;WorkItemQueue&gt;().TheDefault.Is.OfConcreteType&lt;WorkItemQueue&gt;() .CtorDependency&lt;IWorkItemProcessor&gt;().Is(x =&gt; x.OfConcreteType&lt;WorkItemRetryProcessor&gt;()); </code></pre> <p>As it is, it says there's no default instance for IWorkItemProcessor (which is correct). Switching the last line to this:</p> <pre><code>ForRequestedType&lt;IWorkItemProcessor&gt;().TheDefault.Is.OfConcreteType&lt;WorkItemQueue&gt;() .CtorDependency&lt;IWorkItemProcessor&gt;().Is(x =&gt; x.OfConcreteType&lt;WorkItemRetryProcessor&gt;()); </code></pre> <p>...Makes a stack overflow exception.</p> <p>How do you chain classes together that both implement an interface, and take in that same interface in their constructor?</p> http://stackoverflow.com/questions/1782271/there-is-always-a-confusion-on-which-type-of-questions-to-post-on-stackoverflow-a 1 There is always a confusion on which type of questions to post on StackOverflow and it's inherited sites. [closed] RPK 2009-11-23T10:31:06Z 2009-11-23T10:38:16Z <p>It has always been a confusion to me on what type of Questions to post on:</p> <p>StackOverflow,</p> <p>SuperUser</p> <p>ServerFault</p> <p>Where is the information available?</p> http://stackoverflow.com/questions/1372869/list-find-stackoverflow-error 0 List Find() StackOverflow Error Oliver 2009-09-03T11:31:34Z 2009-11-22T17:00:03Z <p>Hi there</p> <p>I am getting a StackOverflow Error in this code:</p> <p><strong>EDIT</strong></p> <pre><code>[XmlAttribute("ID")] public string ID { get; set; } </code></pre> <p><strong>EDIT2</strong></p> <pre><code> public ParameterEntity this[string szID] { get { //Finds the parameter entity with the ID passed in. return rParameters.Find( delegate(ParameterEntity oParameterEntity) { return oParameterEntity.ID.Equals(szID, StringComparison.OrdinalIgnoreCase); }); } } </code></pre> <p>Can you guys please advise?</p> <p>I might just have to use a simple manual looping.</p> <p>Thanks -Oliver</p> http://stackoverflow.com/questions/1775690/is-there-a-way-to-change-the-default-code-view-size-on-stack-overflow 0 Is there a way to change the default code view size on stack overflow [closed] Aran Mulholland 2009-11-21T14:56:13Z 2009-11-21T14:56:13Z <p>do they think we are all working on 1024x768?</p> <p>im running two 24" and i hate the horizontal scrollbars when looking at the code on this site. is there a way to change it to fill out the screen a bit?</p> http://stackoverflow.com/questions/1773979/have-you-ever-been-the-first-person-to-flag-community-wiki 0 Have you ever been the first person to flag "Community Wiki"? [closed] Steven Wright 2009-11-21T00:05:58Z 2009-11-21T00:05:58Z <p>Is it just me, or is it a race to be the first one to tag "Community-Wiki" in a question?</p> <p>It's like on some irritating message board where users compete to be "The First", and most of the time, there are multiple "The Firsts". What are they competing for? Internet cred? Please.</p> <p>Why do people get Up-Votes for tagging "Community-Wiki". Is it like a "way-to-go Bro", you showed that guy? Fist pound, alright!</p> <p>I vote to prevent anyone from benefiting in reputation from "Community-Wiki" questions as they are technically not relevant to SO and since being "Community-Wiki", should theoretically have no technical or managerial value.</p> http://stackoverflow.com/questions/1770927/where-do-programmers-ask-business-questions 0 Where do programmers ask business questions? [closed] Lastnico 2009-11-20T14:51:13Z 2009-11-20T14:55:08Z <p>Mmmh... try to reproduce the advertisement ;-)</p> http://stackoverflow.com/questions/1763082/recovering-from-stack-overflow-on-mac-os-x 2 Recovering from stack overflow on Mac OS X TN 2009-11-19T12:51:03Z 2009-11-20T06:08:13Z <p>Hi all,</p> <p>I am implementing a cross platform scripting language for our product. There is a requirement to detect and properly handle stack overflow condition in language VM. Before you jump in and say make sure there is no stack overflow in the first place, re-read my first sentence - this is a scripting language and end users may write incorrect programs in this language, which may overflow the stack via for example endless recursion. </p> <p>Now I know how to detect and recover from stack overflow in Windows (see <a href="http://support.microsoft.com/kb/315937" rel="nofollow">http://support.microsoft.com/kb/315937</a>). However I am unable to find any solution for Mac OS X.</p> <p>The VM is implemented in C++: MSVC++ on Windows, GCC on Mac OS X.</p> <p>Ideally the mechanism must be based on UNIX capabilities since we also plan to port to Linux.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1762521/generalist-badge-how-come-nobodys-ever-got-it 0 "Generalist" Badge: how come nobody's ever got it ? [closed] sthg 2009-11-19T10:59:20Z 2009-11-19T10:59:20Z <p>I'm just wondering: reading the <a href="http://stackoverflow.com/badges">badges</a> section, I noticed nobody ever got the generalist badge. What's up with that?</p> <p>The criteria seems to be "Active in many different tags", but there's no clear indication of how many is <em>many</em>. How many tags do you need to contribute to earn the badge? </p> http://stackoverflow.com/questions/1759954/why-doesnt-stackoverflow-allow-and-in-searches 0 Why doesn't stackoverflow allow AND in searches? [closed] forkandwait 2009-11-18T23:51:10Z 2009-11-18T23:53:58Z <p>I want to search for all posts with "ggplot" AND "smooth", rather than "ggplot" OR "smooth". How can I do this?</p> http://stackoverflow.com/questions/1759077/is-there-any-open-source-code-we-can-get-similar-to-stackoverflow 0 Is there any open source code we can get similar to stackoverflow? [closed] unknown (yahoo) 2009-11-18T21:04:21Z 2009-11-18T21:06:27Z <p>I found that source code of stackoverflow.com is not an open source, so is there any other similar apps available that has source code available?</p> http://stackoverflow.com/questions/1757653/java-stackoverflow-error 0 java stackoverflow error seventeen 2009-11-18T17:21:38Z 2009-11-18T18:34:31Z <p>Hey guys, I'm working on a program for a university course that uses a method called get_line() to recursively calculate a list of successive locations to get from one point on a grid to another. When I run it, I get a stack overflow at the line of the last return statement in the method. I was wondering if I could someone else to look over the method, and see if anything looks totally wrong. the method is provided below:</p> <p>Thank you for the help!</p> <p>location is an object containing a row r and a column c.</p> <pre><code>private Vector&lt;location&gt; get_line(location from, location to) { location nextLoc = new location(); Vector&lt;location&gt; loc = new Vector&lt;location&gt;(); Random r = new Random(); if(to.r == from.r &amp;&amp; to.c == from.c) { return(loc); } else { if(to.r &gt; from.r &amp;&amp; to.c &gt; from.c) { nextLoc.r = from.r + 1; nextLoc.c = from.c + 1; } else if(to.r &lt; from.r &amp;&amp; to.c &lt; from.c) { nextLoc.r = from.r - 1; nextLoc.c = from.c - 1; } else if(to.r &lt; from.r &amp;&amp; to.c &gt; from.c) { nextLoc.r = from.r - 1; nextLoc.c = from.c + 1; } else if(to.r &gt; from.r &amp;&amp; to.c &lt; from.c) { nextLoc.r = from.r + 1; nextLoc.c = from.c - 1; } else if(to.r == from.r &amp;&amp; to.c &gt; from.c) { if(r.nextInt(2) == 0) { nextLoc.r = from.r + 1; } else { nextLoc.r = from.r - 1; } nextLoc.c = from.c + 1; } else if(to.r == from.r &amp;&amp; to.c &lt; from.c) { if(r.nextInt(2) == 0) { nextLoc.r = from.r + 1; } else { nextLoc.r = from.r - 1; } nextLoc.c = from.c - 1; } else if(to.r &lt; from.r &amp;&amp; to.c == from.c) { nextLoc.r = from.r - 1; if(r.nextInt(2) == 0) { nextLoc.c = from.c + 1; } else { nextLoc.c = from.c - 1; } } else if(to.r &gt; from.r &amp;&amp; to.c == from.c) { nextLoc.r = from.r + 1; if(r.nextInt(2) == 0) { nextLoc.c = from.c + 1; } else { nextLoc.c = from.c - 1; } } loc.add(nextLoc); return(get_line(nextLoc,to)); //stack overflow error occurs here. } } </code></pre> http://stackoverflow.com/questions/1752213/how-old-is-stackoverflow 0 How old is Stackoverflow? [closed] Josh 2009-11-17T22:10:29Z 2009-11-17T22:11:49Z <p>Simple enough question. I notice Stackoverflow has over 100,000 users -- huge congrats guys! Can you share exactly how old Stackoverflow is? Also, what percentage of the 100,000 are active? Can you provide any statistical breakdown on the activity?</p> <p>Thoroughly impressed and looking forward to Stackoverflow's bright future.</p> http://stackoverflow.com/questions/131091/openid-over-ssl-with-self-signed-certificate 2 OpenID Over SSL with self signed certificate Mark Roddy 2008-09-25T02:01:14Z 2009-11-17T19:34:39Z <p>I setup my own open id provider on my personal server, and added a redirect to https in my apache config file. When not using a secure connection (when I disable the redirect) I can log in fine, but with the redirect I can't log in with this error message:</p> <p>The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel.</p> <p>I'm guessing that this is because I am using a self signed certificate.</p> <p>Can anyone confirm if the self signed certificate is the issue? If not does anyone have any ideas what the problem is?</p> http://stackoverflow.com/questions/1740181/what-is-this-100-accept-rate-on-stackoverflow 0 What is this "100% accept rate" on StackOverflow? [closed] Ash 2009-11-16T05:11:49Z 2009-11-16T05:12:33Z <p>What is this "100% accept rate" that appears under my name and avatar? What does it mean, I was unable to find a reference to it in the back-end of this site.</p> http://stackoverflow.com/questions/950179/i-want-to-develop-a-web-site-like-stackoverflow-but-ive-never-done-anything-for 0 I want to develop a web site like StackOverflow, but I've never done anything for web. How can I do this? www.oengenheiro.com.br 2009-06-04T12:20:16Z 2009-11-15T18:06:06Z <p>I have an idea for a web site that's is similar to StackOverFlow. In other words, a place to make questions and to obtain answers, but for a different subject area of StackOverflow. I have good skills with delphi for win 32 and some with Firebird and something in Java. Nothing for web.</p> <p>The problem is that I don't know how to plan this, how to plan the DataBase, what is the best development tool that I have to learn (PHP, Asp.net, Ruby, Python, etc.)</p> <p>Off course that I don't have money to pay for someone do it for me.</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time 53 How do I calculate relative time? Jeff Atwood 2008-07-31T23:55:37Z 2009-11-14T18:56:01Z <p>Given a specific DateTime value, how do I display relative time, like</p> <ul> <li>2 hours ago</li> <li>3 days ago</li> <li>a month ago</li> </ul> <p>etc, etc...?</p> http://stackoverflow.com/questions/1729559/creating-a-navigable-tag-tree-based-on-stack-overflow 1 Creating a navigable tag tree based on Stack Overflow [closed] adolf garlic 2009-11-13T14:30:12Z 2009-11-13T14:35:08Z <p>Just for fun, how could I go about creating a navigable tag tree based on Stack Overflow?</p> <p>It would be interesting to see the following somehow:</p> <p>Which technologies generate the most problems? Which technologies questions are the most answered? Which technologies have the most helpful users(high rep), quickest answered? When is the best time of the week to ask questions for a given technology?</p> http://stackoverflow.com/questions/1727095/iis-6-0-hangs-when-serving-a-web-service 0 IIS 6.0 hangs when serving a web-service Gokul 2009-11-13T04:12:54Z 2009-11-13T12:04:25Z <p>Hi guys I am having issues with one of our web-services. It works fine on my development machine (win XP) whether I host it as a seperate application or using cassini from Visual studio.</p> <p>Once I deploy on the web-server (win 2003 server)it throws some generic error and crashes the IIS worker process(W3wp). </p> <p>If I try to attach visual studio and debug the issue its throwing error at the very initial level even before displaying the default asmx page details. The error that is being caught is a stack over-flow exception.</p> <p>Thanks, Gokul</p> http://stackoverflow.com/questions/1728247/how-to-link-from-one-stackoverflow-question-to-others 3 How to link from one stackoverflow question to others? [closed] Aaron Zeckoski 2009-11-13T09:51:38Z 2009-11-13T09:51:38Z <p>What is the correct way to link from one stackoverflow question to another one? For example, if I want to reference another question or answer from my question, how would I do that? Should I just create a static link or is there some way that creates something which is a little more dynamic and understood by stackoverflow as an internal link? I did not find the answer in the formatting full reference.</p> <p><a href="http://stackoverflow.com/questions/393505/stackoverflows-related-questions">example static link: stackoverflows-related-questions</a></p> http://stackoverflow.com/questions/1722453/need-to-prevent-php-regex-segfault 1 Need to prevent PHP regex segfault ʞɔıu 2009-11-12T14:11:18Z 2009-11-12T17:14:56Z <p>Why does the following segfault, and how can I prevent it?</p> <pre><code>&lt;?php $str = ' &lt;fieldset&gt; &lt;label for="go-to"&gt;Go to: &lt;/label&gt; ' . str_repeat(' ', 10000) . '&lt;input type="submit" value="Go" /&gt; &lt;/fieldset&gt; &lt;/form&gt;'; preg_match_all("@ &lt;/?(?![bisa]\b)(?!em\b)[^&gt;]*&gt; # starting tag, must not be one of several inline tags (?:[^&lt;]|&lt;/?(?:(?:[bisau]|em|strong|sup)\b)[^&gt;]*&gt;)* #allow text and some inline tags [\?\!\.]+ @ix", $str, $matches); ?&gt; </code></pre> <p>I believe it's causing a .... wait for it .... stack overflow.</p> <p>EDIT:</p> <p>The above is a simplified version the pattern that demonstrates the problem. A more complete version:</p> <pre><code>@ &lt;/?(?![bisa]\b)(?!em\b)[^&gt;]*&gt; # starting tag, must not be one of several inline tags (?:[^&lt;]|&lt;/?(?:(?:[bisau]|em|strong|sup)\b)[^&gt;]*&gt;)* # continue, allow text content and some inline tags # normal sentence ending [\?\!\.]+ # valid ending characters -- note elipses allowed (?&lt;!\b[ap]m\.)(?&lt;!\b[ap]\.m\.)(?&lt;!digg this\!)(?&lt;!Stumble This\!) # disallow some false positives that we don't care about \s* (?:&amp;apos;|&amp;\#0*34;|'|&amp;lsquo;)?\s* # closing single quotes, in the unusual case like "he said: 'go away'". (?:"|&amp;quot;|&amp;\#0*34;|&amp;\#x0*22;|&amp;rdquo;|&amp;\#0*8221;|&amp;\#x0*201D;|''|``|\xe2\x80\x9d|&amp;\#0*148;|&amp;\#x0*94;|\x94|\))?\s* # followed by any kind of close-quote char (?=\&lt;) # should be followed by a tag. @ix </code></pre> <p>The purpose is to find html blocks that appear to end at what looks like a valid English sentence ending. I have found that this method is very good at telling the difference between 'content' text (like an article body) and 'layout' text (i.e., like navigational elements). Sometimes if there's a vast amount of white space in between tags it blows up, however.</p> http://stackoverflow.com/questions/1705042/are-you-suffering-stackoverflowmania 0 Are you suffering StackOverflow'mania ? [closed] Nestor 2009-11-10T01:05:43Z 2009-11-10T01:08:34Z <p>www.StackOverflow.com is simply fantastic... but here is a confession: I'm becoming a bit obsessed with answering questions well, getting points, winning badges... </p> <p>Is the same happening to you? How did u stop yourself? </p> <p>Strange question... and perhaps not a good one for this format. But seriously, am I the only one developing a personality disorder here?? (Stackoverflow mania) :-)</p> http://stackoverflow.com/questions/1699718/what-frontend-editor-for-rails 0 What frontend editor for Rails? Newbie 2009-11-09T08:23:44Z 2009-11-09T15:57:51Z <p>Hello everybody! At the moment I am building my new Website. On my Website, users are allowed to post some code (Java, Rails, Ruby, HTML, CSS,...). Now I want to format that code in frontend like on Stackoverflow. Is there a plugin I can use in Rails? I had a look on some rich text editors, but most of them did not do what I wanted them to do. I really like the Code highlighting on Stackoverflow. Any ideas how to do this?</p> http://stackoverflow.com/questions/1693842/is-there-any-way-to-determine-the-available-stack-space-at-run-time 4 Is there any way to determine the available stack space at run time? vinit dhatrak 2009-11-07T17:46:08Z 2009-11-09T13:10:31Z <p>I know that stack size is fixed. So we can not store large objects on stack and we shift to dynamic allocations (e.g. malloc). Also, stack gets used when there is nesting of function calls so we avoid recursive functions as well for this reason. Is there any way at runtime to determine how much stack memory is used so far and how much is left ? </p> <p>Here, I am assuming linux environment (gcc compiler) with x86 architecture. </p>