0
votes
1answer
13 views
SQLite Flow Constructs in SQL?
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.
…
2
votes
4answers
192 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 approach.
OOP vs …
0
votes
0answers
20 views
Procedural Avatar Generation
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 …
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 for generating …
0
votes
0answers
25 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 not much about …
3
votes
10answers
379 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 procedurally?
const double …
3
votes
8answers
218 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 of using either …
1
vote
1answer
172 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 dimensions), but Perlin …
3
votes
3answers
163 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 struggles to understand a …
1
vote
1answer
54 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 PRNG
Thanks
1
vote
2answers
525 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 together 5 images (very …
2
votes
7answers
131 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 object can it still …
2
votes
4answers
149 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 contained some …
5
votes
8answers
536 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 Class/Method the …
2
votes
7answers
450 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 field on the orderline …
