vote up 2 vote down star

Joel Spolsky mentioned "surfacing" on the SO podcast.

What's it mean? (perhaps something like "exposing" (as in "exposing an interface)?

flag

66% accept rate
Which one? Do you remember the # of the podcast? Context would be helpful. – duffymo May 4 at 22:37
I think it was one of the newer ones (maybe the last 3 or 4). I remember hearing that too, but forget the context. – Andy White May 4 at 22:43

4 Answers

vote up 3 vote down check

Here's a quote from the transcript wiki of podcast 51 where they mention "surfacing." I think they've mentioned it a couple of other times too.

Atwood: That's right. Well one thing we just rolled out was, we're surfacing some of the comments on the question page now, one thing I didn't like about comments was that they were essentially unsearchable, because they were loaded through Javascript, and through Ajax

I think it's basically making sure some content is visible to search engines rather than being loaded by ajax or something. Or making them visible by default.

link|flag
vote up 2 vote down

Surfacing

n.

  1. emerging to the surface and becoming apparent
link|flag
Not sure why this was downvoted. It's spot on. – Chris Lively May 4 at 22:49
2  
Accurate, yes, helpful, not even a little. – KOGI May 4 at 22:53
@Chris: i've gotta guess the lmgtfy link maybe? That, or a bunch of folks are convinced i'm wrong while simultaneously having no clue what the right answer is... – Shog9 May 4 at 23:07
I think this is exactly what they meant +1 – Brian R. Bondy May 5 at 0:14
vote up 1 vote down

I've heard it used recently a few times, and in those contexts it has essentially meant "exposing an interface" as you suggest. You have some functionality inside a framework, and you want to make that accessible to the users of that framework. So I guess it's in the sense of "bring some feature out from the depths and making it visible".

link|flag
vote up 0 vote down

The term itself doesn't have any special meaning beyond its normal English meaning. The most common use of surface as a verb in a programming context is probably to surface errors or exceptions, which doesn't mean anything all that precise either. It might mean logging them rather than doing nothing, or failing the request rather than just logging the errors.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.