active questions tagged glossary - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T13:07:01Zhttp://stackoverflow.com/feeds/tag/glossaryhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1869246/need-a-regex-guru1Need a RegEx guru..Aaron2009-12-08T19:23:10Z2009-12-08T19:33:01Z
<p>I'm trying to write a script that parses a block of HTML and matches words against a given glossary of terms. If it finds a match, it wraps the term in <code><a class="tooltip"></a></code> and provides a definition.</p>
<p>It's working okay -- except for two major shortcomings:</p>
<ol>
<li>It matches text that is in attributes</li>
<li>It matches text that is already in an <code><a></code> tag, created a nested link.</li>
</ol>
<p>Is there any way to have my regular expression match only words that are not in attributes, and not in <code><a></code> tags?</p>
<p>Here's the code I'm using, in case it's relevant:</p>
<pre><code>foreach(Glossary::map() as $term => $def) {
$search[] = "/\b($term)\b/i";
self::$lookup[strtoupper($term)] = $def;
}
return preg_replace_callback($search, array(&$this,'replace'),$this->content);
</code></pre>
http://stackoverflow.com/questions/25921/what-is-asp-net2What is ASP.NET? Baltimark2008-08-25T12:14:39Z2009-12-07T19:19:24Z
<p>I've been strictly in a C++ environment for years (and specialized statistical languages). Visual until 2001, and Borland since. Mostly specialized desktop applications for clients. </p>
<p>I'm not remaining willfully ignorant of it, but over the years when I've dipped into other things, I've spent my time playing around with JavaScript, PHP, and a lot of Python. </p>
<p>Is "<a href="http://en.wikipedia.org/wiki/ASP.NET" rel="nofollow">ASP.NET</a>" the language? Is C# the language and "ASP.NET" the framework? What's a good answer to "What is ASP.NET"? Is there a correspondence between ASP.NET and anything I'd be familiar with in C++? </p>
<p>I know I can Google the same title, but I'd rather see answers from this crowd. (Besides, in the future, I think that google should point here for questions like that.)</p>
http://stackoverflow.com/questions/28982/please-explain-mapreduce-simply19Please explain MapReduce simplyreefnet_alex2008-08-26T19:58:57Z2009-12-03T19:08:51Z
<p>Related to my <a href="http://beta.stackoverflow.com/questions/28975/anyone-using-couchdb" rel="nofollow">CouchDB</a> question....</p>
<p>Can anyone explain MapReduce in terms a numbnuts could understand?</p>
http://stackoverflow.com/questions/27516/whats-the-difference-between-programmer-and-software-engineer22What's the difference between programmer and software engineer?Ionut Anghelcovici2008-08-26T07:33:59Z2009-12-01T21:07:16Z
<p>As I was looking through some job offerings I saw that many of them require a software engineer, some a programmer and some a developer.</p>
<p>Is there any difference between a programmer and a software engineer? Or are they all looking for the same guy that can "write code"?</p>
http://stackoverflow.com/questions/13055/what-is-boxing-and-unboxing-and-what-are-the-trade-offs18What is boxing and unboxing and what are the trade offs?Keith2008-08-16T08:34:25Z2009-11-27T19:06:13Z
<p>I'm looking for a clear, concise and accurate answer. </p>
<p>Ideally as the actual answer, although links to good explanations welcome.</p>
http://stackoverflow.com/questions/2056/what-are-mvp-and-mvc-and-what-is-the-difference101What are MVP and MVC and what is the difference?Wolfbyte2008-08-05T10:06:33Z2009-11-25T18:40:09Z
<P>When looking beyond the RAD (drag-drop and configure) way of building User Interfaces that many tools encourage you are likely to come across 2 design patterns called Model-View-Controller and Model-View-Presenter. My question has two parts to it:</P>
<OL>
<LI>What issues do these patterns address?</LI>
<LI>How are they similar?</LI>
<LI>How are they different?</LI></OL>
http://stackoverflow.com/questions/24626/abstraction-vs-information-hiding-vs-encapsulation3Abstraction VS Information Hiding VS Encapsulationpopopome2008-08-23T21:41:49Z2009-11-12T09:17:24Z
<p>Can you tell me what is difference between <strong>ABSTRACTION</strong> and <strong>INFORMATION HIDING</strong> in software development?</p>
<p>I am confused abstraction hides detail implementation and
information hiding abstracts whole details of something.</p>
<p><hr /></p>
<p>updated:
I found good answer for these three concepts.</p>
<p>From here: <a href="http://www.itmweb.com/essay550.htm" rel="nofollow">http://www.itmweb.com/essay550.htm</a></p>
<ul>
<li><strong>Abstraction</strong>: One point of confusion regarding abstraction is its use as both process and an entity. Abstraction, as a process, denotes the extracting of the essential details about an item, or a group of items, while ignoring the inessential details. Abstraction, as an entity, denotes a model, a view, or some other focused representation for an actual item.</li>
<li><strong>Information Hiding</strong>: Its interface or definition was chosen to reveal as little as possible about its inner workings."
<ul>
<li>Why confusing: Abstraction can be used as a technique for <strong>idenfying</strong> which information should be hidden. Confusion can occur when people fail to distinguish between the hiding information, and a technique(e.g., abstraction) that is used to help identify which information is to be hidden.</li>
</ul></li>
<li><strong>Encapsulation</strong>: It refers to building a capsule, in the case a conceptual barrier, around some collection of things.
<ul>
<li>As a process: Encapsulation means the act of enclosing one or more items within a container.</li>
<li>As an entity: Encapsulation refers to a package or an enclosure that holds(contains, encloses) one or more items.</li>
<li>If encapsulation was "the same thing as information hiding," then one might make the argument that "everything that was encapsulated was also hidden." This is not obviously not true.</li>
</ul></li>
</ul>
<p><strong>CONCLUSION</strong>:
Abstraction, information hiding, and encapsulation are very different, but highly-related, concepts. One could argue that abstraction is a technique that help us identify which specific information should be visible, and which information should be hidden. Encapsulation is then the technique for packaging the information in such a way as to hide what should be hidden, and make visible what is intended to be visible.</p>
http://stackoverflow.com/questions/23277/what-is-the-difference-between-procedural-programming-and-functional-programming17What is the difference between procedural programming and functional programming?Thomas Owens2008-08-22T19:29:45Z2009-11-06T21:56:33Z
<p>I've read the Wikipedia articles for both <a href="http://en.wikipedia.org/wiki/Procedural_programming" rel="nofollow">procedural programming</a> and <a href="http://en.wikipedia.org/wiki/Functional_programming" rel="nofollow">functional programming</a>, but I'm still slightly confused. Could someone boil it down to the core?</p>
http://stackoverflow.com/questions/20346/net-what-are-attributes29.NET: What are attributes?Corey2008-08-21T15:59:39Z2009-10-21T20:29:54Z
<p>What are they, what are they good for, and how to I create my own?</p>
http://stackoverflow.com/questions/62814/difference-between-binary-semaphore-and-mutex7Difference between binary semaphore and mutex.Nitin2008-09-15T13:23:05Z2009-10-09T05:22:20Z
<p>Is there any difference between binary semaphore and mutex or they are essentialy same?</p>
http://stackoverflow.com/questions/62539/what-is-the-dependency-inversion-principle-and-why-is-it-important10What is the Dependency Inversion Principle and why is it important?Phillip Wells2008-09-15T12:53:20Z2009-10-08T21:03:43Z
<p>What is the Dependency Inversion Principle and why is it important?</p>
http://stackoverflow.com/questions/29155/what-is-the-difference-between-a-delegate-and-events7What is the difference between a delegate and events?Sean Chambers2008-08-26T23:06:31Z2009-09-26T20:14:56Z
<p>What is the difference between a delegate and an event? Don't both hold references to functions to be executed?</p>
http://stackoverflow.com/questions/1423797/this-is-asking-a-lot-i-know-but-help-me-translate-this-glossary-plugin-for-wp0This is asking a lot, I know, but: Help me translate this Glossary plugin for WPkonzepz2009-09-14T20:40:29Z2009-09-14T22:22:49Z
<p>In my search for a <em>good</em> glossary plugin for WordPress, I came across <a href="http://www.nateomedia.com/wares/downloads/wordpress/wp-snap/?cp=7" rel="nofollow">Natan Olsen's WP-SNAP</a>. Which is brilliant. Only I need it to work with Hebrew.</p>
<p>I know this is asking a <em>lot</em>, but if you could take a look at the source code (PHP) and tell me where to start altering this plugin to work with Hebrew letters, I will be forever thankful.</p>
<ul>
<li>Source: <a href="http://www.nateomedia.com/wares/downloads/wordpress/wp-snap/?cp=7" rel="nofollow">Permalink</a></li>
</ul>
http://stackoverflow.com/questions/2366/can-anyone-explain-monads30Can anyone explain Monads?Steve Willard2008-08-05T14:16:02Z2009-09-08T02:39:03Z
<p>I think I understand what 'Maybe Monads' are, but I'm not sure about the other types.</p>
http://stackoverflow.com/questions/292965/what-is-a-uuid1What is a UUID?doctor smith2008-11-15T19:43:27Z2009-08-12T18:30:08Z
<p>Well, what is one?</p>
http://stackoverflow.com/questions/16142/what-do-branch-tag-and-trunk-really-mean60What do "branch", "tag" and "trunk" really mean?grapefrukt2008-08-19T13:22:03Z2009-08-12T15:42:23Z
<p>I've seen these words a lot around subversion (and I guess general repository) discussions.
Myself I have been using svn for my projects the last few years, but I've never grasped the complete concept of these directories.</p>
<p>What do they mean?</p>
http://stackoverflow.com/questions/16501/what-is-a-lambda-function38What is a lambda (function)?Brian Warshaw2008-08-19T16:20:37Z2009-08-10T13:22:20Z
<p>Hey guys, I see this term being used a bit, and a Google search didn't quite yield the most clarity, so help me out: for a person without a comp-sci background, what is a lambda in the world of Computer Science?</p>
<p>UPDATE:</p>
<p>marxidad, thanks for the reply--it seems to be climbing up in everyone's favor, so I'll likely accept it soon. Do you have any "real-life" examples, possibly in a few languages (perhaps in one that doesn't use the lambda keyword, too)?</p>
http://stackoverflow.com/questions/1062811/difference-between-a-computer-scientist-and-computer-programmer7Difference between a Computer Scientist and Computer programmerPranav2009-06-30T09:58:25Z2009-07-17T22:25:17Z
<p>What is the difference between a Computer Scientist and a Computer Programmer? What is the difference in the actual work they do in industry?(not in academia) Can you provide some real world examples too? </p>
http://stackoverflow.com/questions/468145/type-vs-class7type vs Class?yesraaj2009-01-22T05:44:04Z2009-06-05T08:10:10Z
<p>What makes a type different from class and vice versa?</p>
<p>(In the general language-agnostic sense)</p>
http://stackoverflow.com/questions/27499/database-what-is-multiversion-concurrency-control-mvcc-and-who-supports-it4Database: What is Multiversion Concurrency Control (MVCC) and who supports it?Mark Harrison2008-08-26T07:04:21Z2009-06-04T17:53:34Z
<p>Recently Jeff has <a href="http://www.codinghorror.com/blog/archives/001166.html" rel="nofollow">posted</a> regarding his trouble with database deadlocks related to reading. Multiversion Concurrency Control claims to solve this problem. What is it, and what databases support it?</p>
<p>updated: these support it (which others?)</p>
<ul>
<li>oracle</li>
<li>postgresql </li>
</ul>
http://stackoverflow.com/questions/214092/what-is-a-mock-and-when-should-you-use-it12What is a mock and when should you use it?Thomas Owens2008-10-17T22:49:50Z2009-05-21T16:45:36Z
<p>I just read the Wikipedia article on <a href="http://en.wikipedia.org/wiki/Mock_object" rel="nofollow">mock objects</a>, but I'm still not entirely clear on their purpose. It appears they are objects that are created by a test framework when the actual object would be too complex or unpredictable (you know 100% sure what the values of the mock object are because you fully control them).</p>
<p>However, I was under the impression that all testing is done with objects of known values, so I must be missing something. For example, in a course project, we were tasked with a calendar application. Our test suite consisted of event objects that we knew exactly what they were so we could test the interactions between multiple event objects, various subsystems, and the user interface. I'm guessing these are mock objects, but I don't know why you wouldn't do this because without the objects of known values, you can't test a system.</p>
http://stackoverflow.com/questions/24041/markdown-vs-markup-are-they-related6Markdown vs markup - are they related?Ron Harlev2008-08-23T06:34:09Z2009-05-13T01:48:41Z
<p>I'm using markdown to edit this question right now. In some <a href="http://en.wikipedia.org/wiki/Wikipedia:How_to_edit_a_page#Wiki_markup" rel="nofollow">wikis</a> I used wiki markup. Are they the same thing? Are they related? Please explain. If I want to implement one or the other in a web project (like stackoverflow) what do I need to use?</p>
http://stackoverflow.com/questions/129628/what-is-declarative-programming14What is declarative programming?Brian G2008-09-24T20:15:26Z2009-05-06T06:30:23Z
<p>I keep hearing this term tossed around in several different contexts. What is it?</p>
http://stackoverflow.com/questions/827965/what-is-the-difference-betwen-coder-and-programmer0What is the difference betwen coder and programmer? [closed]Minh Le2009-05-06T04:04:47Z2009-05-06T04:12:43Z
<p>I've just concerned about this subject when I talked with my customer. They always call me as a "coder".
What do you think is the difference between coder and programmer?</p>
http://stackoverflow.com/questions/811354/what-is-the-difference-between-a-property-and-an-instance-variable2What is the difference between a property and an instance variable?Iain2009-05-01T13:32:52Z2009-05-01T18:33:53Z
<p>I think I've been using these terms interchangably / wrongly!</p>
http://stackoverflow.com/questions/769798/what-is-thesauri-expansion-graph-traversal-and-rdfs-owl-reasoning-in-the-contex0What is thesauri expansion , graph traversal and RDFS/OWL reasoning in the context of Semantic Search?anahita872009-04-20T19:37:12Z2009-04-20T19:37:12Z
<p>I want a concise description (2 or 4 lines) of each of the following Semantic Search Algorithms:</p>
<pre><code>* thesauri expansion
* graph traversal
* RDFS/OWL reasoning
</code></pre>
http://stackoverflow.com/questions/485119/what-does-the-word-literal-mean9What does the word "literal" mean?ke422009-01-27T20:38:41Z2009-03-06T20:51:31Z
<p>What does the word "literal" mean when used in context such as literal strings and literal values? what is the difference between a literal value and value?</p>
http://stackoverflow.com/questions/154185/what-is-object-marshalling7What is object marshalling?Brian G2008-09-30T17:49:10Z2009-02-21T22:53:42Z
<p>I have heard this concept used frequently, but I don't have a really good grasp of what it is.</p>
http://stackoverflow.com/questions/80394/what-constitutes-real-time3What constitutes 'real time'Steve M2008-09-17T05:55:08Z2009-02-18T22:16:02Z
<p>I am having trouble deciding on whether to classify my application as 'real time' or 'near real time', or perhaps even something else.</p>
<p>The software receives data immediately as it is generated from the source, then based on certain rules, raises an alert when certain conditions are met. It takes the approach of checking the last 30 seconds of data every 30 seconds to see whether the criteria for a rule has been met.</p>
<p>Is that real time? What are the thresholds for the definitions of real time vs. near real-time?</p>
<p><strong>EDIT</strong></p>
<p>I think this is a duplicate of <a href="http://stackoverflow.com/questions/51135/define-realtime-on-the-web-for-business">http://stackoverflow.com/questions/51135/define-realtime-on-the-web-for-business</a>.</p>
<p>Please decide if the above thread is insufficient to answer your question.</p>
http://stackoverflow.com/questions/24279/functional-programming-and-non-functional-programming8Functional programming and non-functional programmingTeifion2008-08-23T14:58:11Z2009-02-18T00:27:26Z
<p>In my second year of University we were "taught" Haskell, I know almost nothing about it and even less about functional programming.</p>
<p>What is functional programming, why and/xor where would I want to use it instead of non-functional programming and am I correct in thinking that C is a non-functional programming language?</p>
<p><strong>Related topics</strong><br>
<a href="http://beta.stackoverflow.com/questions/23166/whats-a-good-beginning-text-on-functional-programming" rel="nofollow">What’s a good beginning text on functional programming?</a></p>