Search Results

1
vote

What single URL should every web developer have bookmarked?

Every german web developer knows Selfhtml.org. Too sad it isn't available in englis …
5
votes

What is the ultimate program to make a drawing of a database model?

Your brain is the best drawing tool. I prefer to develop a database schema in a simple text file. At first it contains just the table names, attributes and foreign keys: c …
5
votes

What is the strangest programming language you have used?

Sed is the strangest language I ever used in real-world situations. If you just use it for regex search & replace, everythi …
16
votes

What is the strangest programming language you have used?

XSLT is a very strange language. It is purely functional (no side effects) as Haskell, but has a very clumsy sy …
21
votes

How to write a self reproducing code (prints the source on exec)?

Aside from cheating¹ there is no difference between compiled and interpreted languages. The generic approach to quines is quite easy. First, whatever the program looks like, at some point …
5
votes

Is SQL the assembly language of the modern world?

No, SQL is a very high-level declarative programming language. If you're just doing insert/update/delete and trivial select queries, it might feel like a very primitive language. But if you …