active questions tagged procedural - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T09:08:28Z http://stackoverflow.com/feeds/tag/procedural http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1885702/sqlite-flow-constructs-in-sql 0 SQLite Flow Constructs in SQL? ScSub 2009-12-11T04:01:42Z 2009-12-11T04:12:31Z <p>With MSSQL, I can mix in case, if...then, and while constructs in my SQL code. Is anything similar available for SQLite? I have not seen anything on "mixing procedurally" with SQLite, anywhere.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1530868/simple-explanation-php-oop-vs-procedural 2 simple explanation PHP OOP vs Procedural? Pennf0lio 2009-10-07T10:51:17Z 2009-12-04T18:14:37Z <p>Hi,</p> <p>I would like to learn PHP and want to get an Idea about OOP and Procedural. I read some other blogs and tutorials about OOP vs Procedural but I still can't understand the approach.</p> <p>OOP vs Procedural</p> <ol> <li>Which I should learn? </li> <li>Whats the difference in code? what are the effects?</li> <li>How can a PHP framework help in OOP aproach? (I would like to learn CodeIgniter) </li> <li>Does procedural need a Framework?</li> </ol> <p>I really want to know the code difference of the both, my understanding of OOP is you create a class like and it can be access. (I dunno if thats correct).</p> <p>Thanks!</p> http://stackoverflow.com/questions/1726770/procedural-avatar-generation 0 Procedural Avatar Generation Baxter 2009-11-13T02:31:57Z 2009-11-13T02:31:57Z <p>I'd like to implement a system that generates unique NxN blocks when given a MD5 hash as an input, currently I'm splitting the MD5 into sub-strings and just using them as Hex colour-codes, does anyone have any good ideas on systems I could use to generate these images?</p> <p>I've considered using the values as the constants in a Lorenz attractor but the output just isn't that visually distinguishable for large numbers of generated outputs.</p> http://stackoverflow.com/questions/180858/procedural-music-generation-techniques 22 Procedural music generation techniques... Cody Brocious 2008-10-07T23:43:05Z 2009-11-04T04:08:00Z <p>I've been putting a lot of thought into procedural generation of content for a while and I've never seen much experimentation with procedural music. We have fantastic techniques for generating models, animations, textures, but music is still either completely static or simply layered loops (e.g. Spore).</p> <p>Because of that, I've been thinking up optimal music generation techniques, and I'm curious as to what other people have in mind. Even if you haven't previously considered it, what do you think will work well? One technique per answer please, and include examples where possible. The technique can use existing data or generate the music entirely from scratch, perhaps on some sort of input (mood, speed, whatever).</p> http://stackoverflow.com/questions/1664877/writing-memcached-connection-using-pecl-based-memcached-extension 0 writing memcached connection using pecl based memcached extension raghu veer 2009-11-03T02:26:15Z 2009-11-03T02:26:15Z <p>I am actually thinking to start using memcached in my php code,</p> <p><a href="http://us3.php.net/manual/en/book.memcached.php" rel="nofollow">http://us3.php.net/manual/en/book.memcached.php</a></p> <p>while I searched in google, I find memcache based examples, but not much about memcached based connection and other examples.</p> <p>it will be really helpful, if someone can share procedural way of writing memcached connection for php memcached (libmemcached based) extension, thank you</p> http://stackoverflow.com/questions/1360880/best-way-to-explain-declarative-fallacy-in-c 3 Best way to explain declarative fallacy in C++? ybakos 2009-09-01T06:42:50Z 2009-09-02T23:17:06Z <p>Is anyone willing to help me craft a good explanation of why the following code is not correct, in that the author is attempting to write C++ code declaratively rather than procedurally?</p> <pre><code>const double NEWTONS_PER_POUND = 4.448; int main() { double pounds, newtons; pounds = newtons/NEWTONS_PER_POUND; /* pounds equals 'unassigned variable'/4.448 */ newtons = 10.0; cout &lt;&lt; pounds &lt;&lt; endl; /* a big number, not 10.0/4.448 */ return 0; } </code></pre> <p>The author expected cout to display a proper calculation, but instead gets a 'crazy number.'</p> <p>I would explain this as "C++ is procedural, and therefore at the time of the declaration</p> <pre><code>pounds = newtons/NEWTONS_PER_POUND; </code></pre> <p>newtons has not been assigned a value.</p> <p>Any better suggestions? Or an explanation why C++ isn't 'smart' enough to exhibit the behaviour the user mistakenly expected?</p> http://stackoverflow.com/questions/1313259/tiling-simplex-noise 1 Tiling Simplex Noise? fbrereto 2009-08-21T17:32:15Z 2009-08-25T06:59:28Z <p>I've been interested (as a hobbyist) in pseudo-random noise generation, specifically the Perlin and Simplex algorithms. The advantage to Simplex is speed (especially at higher dimensions), but Perlin can be tiled relatively easily. I was wondering if anyone was aware of a tiling simplex algorithm? Fixed-dimension is fine, generic is better; pseudocode is fine, c/c++ is better.</p> http://stackoverflow.com/questions/1056327/procedural-hash-function 1 Procedural Hash Function adk 2009-06-29T02:25:03Z 2009-07-27T17:51:07Z <p>I am wondering what is the best hash function for procedural textures, especially perlin noise. I know about the PRNG posted on <a href="http://freespace.virgin.net/hugo.elias/models/m%5Fperlin.htm" rel="nofollow">this page</a>, but <a href="http://www.gamedev.net/community/forums/topic.asp?topic%5Fid=459087" rel="nofollow">this</a> claims that it is not a good PRNG</p> <p>Thanks</p> http://stackoverflow.com/questions/1147863/oo-or-procedural 3 OO or procedural ChrisC 2009-07-18T15:50:30Z 2009-07-19T12:55:53Z <p>I have an Access db I use for my checkbook (with a good amount of fairly simple VBA behind it) and I'd like to rewrite it as a stand-alone program with a SQL backend. I'm thinking of using either C++, Java, or Python. <p>I had assumed, before I started, that I would write it OO because I thought that I would think "in OO terms" (due to a OO Logic class and a C++ class I took), but I'm finding that I can only visualize it as procedural (but maybe because I'm mentally stuck in thinking of how the db works in Access). How do I decide? Am I making sense or does it seem like I'm not understanding the concepts? <p>Thanks for your help.</p> http://stackoverflow.com/questions/302589/refactoring-for-non-oo-languages 2 Refactoring for non OO languages Jim C 2008-11-19T16:55:13Z 2009-07-18T16:15:30Z <p>Can anyone recommend a website, book, or simply a list of refactoring strategies for procedural languages as opposed to object oriented languages? </p> <p>Everything I was able to find contained some strategies that could apply, most were useful only if working in an OO language. </p> http://stackoverflow.com/questions/921757/teaching-an-old-dog-new-tricks 3 Teaching an old dog new tricks northpole 2009-05-28T16:12:56Z 2009-07-15T23:04:38Z <p>I have a great manager who was a procedural coding wizard in his day. He is now faced with managing a team which uses object oriented programming in both .Net and Java. He struggles to understand a lot of the patterns and terminology we discuss. I am wondering what experiences SO members have had with helping others with this transition.</p> <p>I am also looking for great procedural -> OOP code examples that can show him how procedural code can be rewritten to be OOP. I have provided him with the opposite, meaning I took OO code and turned it into procedural but I am looking for code examples others may have used that were found to be effective for learning.</p> <p>Finally, any books that people can recommend that are written for people going through this transition would be appreciated.</p> <p>I was not sure if this constitutes as a community wiki. If so I can change it.</p> <p>Thanks!</p> http://stackoverflow.com/questions/811099/can-procedural-programming-use-objects 2 Can Procedural Programming use Objects? Allen 2009-05-01T11:58:04Z 2009-05-01T12:13:31Z <p>I have seen a number of different topics on StackOverFlow discussing the differences between Procedural and Object-Oriented Programming. The question is: If the program uses an object can it still be considered procedural?</p> http://stackoverflow.com/questions/713499/as3-3d-terrain-texture-generation-looking-for-intermediate-advanced-ideas 1 AS3 3D terrain texture generation: Looking for intermediate/advanced ideas Assembler 2009-04-03T11:06:56Z 2009-04-06T01:57:09Z <p>Hello, all!</p> <p>I have been bashing away at Away3D for AS3, and have made a little terrain generator, using Perlin Noise to create a heightmap, and then for texturing, to splice together 5 images (very generic noise based water, beach, grass, rock &amp; snow) depending on the height.</p> <p>Where to next? I doubt my ability to contribute directly to a 3D engine, but I wonder if anyone had mucked around with things like rain shadows, other geographic phenomenon. For example, as a cloud moves over a mountain range, it's temperature drops, decreasing it's ability to hold water, and thus with certain weather patterns, one side of the mountain range will be more lush than the other side.</p> <p>I'm wondering if anyone has any reading material they could suggest.</p> <p>Thanks lots</p> <p>edit:Unwind thought I should add a picture. There's photos of me on the internet drunk and disorderly, a sad under-developed terrainer thing shouldn't be much more embarrasing! thanks for the ideas thus far... Mmmm... Lod'ing might be interesting, maybe before start adding detail I should see how big I can make a map. Vegetation makes lots of sense (duh... plants, of course!), I wonder how much I can do procedurally.</p> <p><img src="http://assemblism.com/terrain/images/stage1.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/325453/how-to-write-main-in-an-oop-way 5 How to write main() in an OOP way? vito 2008-11-28T10:33:16Z 2008-12-08T02:40:47Z <p>When I first started programming, I wrote everything in main. But as I learned, I tried to do as little as possible in my <code>main()</code> methods.</p> <p>But where do you decide to give the other Class/Method the responsibility to take over the program from <code>main()</code>? How do you do it?</p> <p>I've seen many ways of doing it, like this:</p> <pre><code>class Main { public static void main(String[] args) { new Main(); } } </code></pre> <p>and some like:</p> <pre><code>class Main { public static void main(String[] args) { GetOpt.parse(args); // Decide what to do based on the arguments passed Database.initialize(); MyAwesomeLogicManager.initialize(); // And main waits for all others to end or shutdown signal to kill all threads. } } </code></pre> <p>What should and should not be done in <code>main()</code>? Or are there no silver bullets?</p> <p>Thanks for the time!</p> http://stackoverflow.com/questions/337175/when-do-you-give-up-set-operations-in-sql-and-go-procedural 2 When do you give up set operations in SQL and go procedural? Guge 2008-12-03T13:58:54Z 2008-12-04T01:34:17Z <p>I was once given this task to do in an RDBMS:</p> <p>Given tables customer, order, orderlines and product. Everything done with the usual fields and relationships, with a comment memo field on the orderline table.</p> <p>For one customer retrieve a list of all products that customer has ever ordered with product name, year of first purchase, dates of three last purchases, comment of the latest order, sum of total income for that product-customer combination last 12 months.</p> <p>After a couple of days I gave up doing it as a Query and opted to just fetch every orderline for a customer, and every product and run through the data procedurally to build the required table clientside.</p> <p>I regard this a symptom of one or more of the following:</p> <ul> <li>I'm a lazy idiot and should have seen how to do it in SQL</li> <li>Set operations are not as expressive as procedural operations</li> <li>SQL is not as expressive as it should be</li> </ul> <p>Did I do the right thing? Did I have other options?</p> http://stackoverflow.com/questions/257873/is-it-possible-to-design-and-build-a-procedural-imperative-based-application-su 1 Is it possible to design and build a procedural (imperative) based application successfully? hal10001 2008-11-03T03:34:05Z 2008-11-03T04:03:39Z <p>Can you provide examples of applications today that are procedural and maintain a high level of integrity and efficiency? Are there any books, tutorials or links that provide examples of how to successfully build and maintain an imperative system? If you were to give guidance in this area, what tips would you give on how it should be structured? I ask because OOP is often presented as a natural progression of procedural programming, but I have trouble believing that is always the case.</p> http://stackoverflow.com/questions/3057/speed-comparisons-procedural-vs-oo-in-interpreted-languages 0 Speed Comparisons - Procedural vs. OO in interpreted languages cmcculloh 2008-08-06T03:34:01Z 2008-09-22T18:18:17Z <p>In interpreted programming languages, such as PHP and JavaScript, what are the repercussions of going with an Object Oriented approach over a Procedural approach?</p> <p>Specifically what I am looking for is a checklist of things to consider when creating a web application and choosing between Procedural and Object Oriented approaches, to optimize not only for speed, but maintainability as well. Cited research and test cases would be helpful as well if you know of any articles exploring this further.</p> <p>Bottom line: how big (if any) is the performance hit really, when going with OO vs. Procedural in an interpreted language?</p> http://stackoverflow.com/questions/3978/multi-paradigm-languages 0 Multi-Paradigm Languages Thomas Owens 2008-08-06T21:02:16Z 2008-08-23T16:16:33Z <p>In a language such as (since I'm working in it now) PHP, which supports procedural and object-oriented paradigms, is there a good rule of thumb for determining which paradigm best suits a new project? If not, how can you make the decision?</p>