0
votes
0answers
12 views
writing memcached connection using pecl based memcached extension
I am actually thinking to start using memcached in my php code,
http://us3.php.net/manual/en/book.memcached.php
while I searched in google, I find memcache based examples, but no …
2
votes
3answers
124 views
simple explanation PHP OOP vs Procedural?
Hi,
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 appr …
3
votes
10answers
353 views
Best way to explain declarative fallacy in C++?
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 procedu …
22
votes
14answers
1k views
Procedural music generation techniques…
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 f …
1
vote
1answer
147 views
Tiling Simplex Noise?
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 dime …
3
votes
8answers
213 views
OO or procedural
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 …
3
votes
3answers
160 views
Teaching an old dog new tricks
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 struggl …
1
vote
1answer
47 views
Procedural Hash Function
I am wondering what is the best hash function for procedural textures, especially perlin noise. I know about the PRNG posted on this page, but this claims that it is not a good PRN …
1
vote
2answers
459 views
AS3 3D terrain texture generation: Looking for intermediate/advanced ideas
Hello, all!
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 toget …
2
votes
7answers
130 views
Can Procedural Programming use Objects?
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 o …
2
votes
4answers
142 views
Refactoring for non OO languages
Can anyone recommend a website, book, or simply a list of refactoring strategies for procedural languages as opposed to object oriented languages?
Everything I was able to find c …
5
votes
8answers
516 views
How to write main() in an OOP way?
When I first started programming, I wrote everything in main. But as I learned, I tried to do as little as possible in my main() methods.
But where do you decide to give the other …
2
votes
7answers
424 views
When do you give up set operations in SQL and go procedural?
I was once given this task to do in an RDBMS:
Given tables customer, order, orderlines and product. Everything done with the usual fields and relationships, with a comment memo fi …
0
votes
5answers
538 views
Speed Comparisons - Procedural vs. OO in interpreted languages
In interpreted programming languages, such as PHP and JavaScript, what are the repercussions of going with an Object Oriented approach over a Procedural approach?
Specifically w …
1
vote
2answers
108 views
Is it possible to design and build a procedural (imperative) based application successfully?
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 examp …
