26
votes
20answers
826 views
What is a programming language?
No, really.
I've struggled to come up with a really great definition. Here's my take till now:
A programming language is a formal language, containing syntax. Syntactical rule …
12
votes
12answers
893 views
HTML <head> best practices
There are <meta> tags and other things you can place in the <head> of your HTML document. What <meta> tags etc. and best practices do you make use of in your HTML …
7
votes
0answers
332 views
Etiquette for selecting answers [closed]
I'm kind of curious what kinds of criteria other people go through when selecting the correct answer to their questions. Here's what I consider when selecting the answer to my que …
4
votes
1answer
328 views
Adding attributes into Django Model’s Meta class
I'm writing a mixin which will allow my Models to be easily translated into a deep dict of values (kind of like .values(), but traversing relationships). The cleanest place to do t …
4
votes
5answers
172 views
How should we handle premature optimization discussion in optimization questions?
Several of the questions on SO that ask, "Which of these is faster?" or "Why is this faster than the alternative?" have one or more answers which explain the downsides of premature …
4
votes
15answers
483 views
Dealing With Distractions
I had a fellow programmer that used to use some headphones to help her shut out distractions and focus on her work. Lately I find that I am less able to focus without quiet and th …
3
votes
3answers
64 views
ruby logging convenience method
I would like a ruby method "show" which does this:
anyobject.show
the output of the call would be:
anyvar => the pp string of the object
Something close , but not quite is :
…
2
votes
5answers
130 views
What is the proper way to tell the browser not to cache?
I have a web page that always needs to stay current. I do not want the browser to cache it. To that end, this meta tag is embedded with the page:
<meta name="Expires" content= …
2
votes
2answers
278 views
C# Wrapper for Media File Meta Data
I am looking for a nice wrapper for extracting media file attributes dependent of file type.
I am creating a bit of a generic media library that can handle video, audio, images etc …
1
vote
2answers
39 views
Difference between PHP and .htaccess redirect
Is there a difference between php header redirect and .htaccess redirect by the SEO of the site?
10x
1
vote
3answers
50 views
Is there a generally accepted way to add meta information to array-elements indicating how to handle them?
I am using an array which contains the results of a database-query, which is later formatted as html (for a webapplication) or as csv (for import in a spreadsheet).
I want to attac …
1
vote
2answers
303 views
Resource interpreted as other but transferred with MIME type text/javascript?
I keep getting "Resource interpreted as other but transferred with MIME type text/javascript.", but everything seems to be working fine. This only seems to be happening in Safari 4 …
1
vote
2answers
55 views
Can’t use an inheriting Django model’s Meta class to configure a field defined in an inherited abstract model
I would like to use properties from an inheriting model's Meta class to configure a field defined in an abstract model higher up the inheritance tree:
class NamedModel(models.Mode …
1
vote
1answer
169 views
meta description quotes escape
html code meta tag description,
it is generated dynamically and we have quotes in the description part and search engines didn't read everything.
it shows until the quotes begin …
1
vote
1answer
142 views
How to search Google for <meta name=”author”>
Is it possible to search Google for all sites built by a specific author declared by a meta author tag?
eg http://www.google.com.au/search?hl=en&client=firefox-a&rls=org. …
