Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
11answers
2k views

Source control vs. Revision Control?

Which is the correct name for a system which stores versions of source code, like SVN or TFS? I've always called it source control, but places like Wikipedia calls it revision control? To make this ...
19
votes
12answers
2k views

What is “business intelligence” software?

Is "business intelligence" a buzzword that has no real meaning to software developers, or does the term carry some implied meaning in terms of what the software does or how the software does it (in a ...
4
votes
3answers
138 views

Asynchronous and Synchronous Terms

I'm confused by the term asynchronous when related to programming. It seems to mean the opposite in programming terms as what it is defined as in the dictionary. For example, the word synchronous ...
4
votes
5answers
2k views

Split a text into single words

I would like to split a text into single words using PHP. Do you have any idea how to achieve this? My approach: function tokenizer($text) { $text = trim(strtolower($text)); $punctuation = ...
3
votes
6answers
130 views

How's the thing iterated over called?

I wanted to express that an iterator is const (i.e you cannot increment or decrement it) but that the thing it yields is non-const: iterator const it = foo.begin(); it++; // error *it = ...; // not ...
3
votes
2answers
189 views

Maps API, storing data, how to without violating terms?

In Google and Yahoo Maps API, I read in th terms of service: YOU SHALL NOT: "store or allow end users to store map imagery, map data or geocoded location information from the Yahoo! Maps APIs ...
2
votes
1answer
417 views

WordPress 'Custom Post Type' gets set to wrong Taxonomy Term IDs

First and foremost, I need to stress how greatly I appreciate anyone who takes the time to respond - In advance, thank you, thank you, THANK YOU! I feel pictures are of great service to explaining ...
2
votes
2answers
577 views

Specifying formula in R with glm without explicit declaration of each covariate

I would like to force specific variables into glm regressions without fully specifying each one. My real data set has ~200 variables. I haven't been able to find samples of this in my online ...
2
votes
2answers
484 views

drupal get list of terms of a node

How to get list of terms of a node ( by node id) belongs to a particular vocabulary. Is there any drupal function ?
2
votes
4answers
217 views

Am i allowed to use c++ in code which i plan to submit to applestore? (iPhone Product)

I've heard that apple drops a lot of app submissions due to their stiff terms. I dont want to get too far with my project because i know that it will be hard to rewrite it later. Now i began ...
2
votes
2answers
941 views

How to combine words of a sentence to composed terms?

I have a sentence, for example John Doe moved to New York last year. Now I split the sentence into the single words and I get: array('John', 'Doe', 'moved', 'to', 'New', 'York', 'last', ...
2
votes
5answers
519 views

Programming Glossary

As I browse through the site, I find a lot of terms that many developers just starting out (and even some advanced developers) may be unfamiliar with. It would be great if people could post here with ...
1
vote
0answers
38 views

Performance in wordpress conditional tags

below code is about wordpress conditional tags. and all thing that i want to know is that , is this code is optimized ? and is this code have good performance in long lists of terms and on a big ...
1
vote
1answer
76 views

dynamically adding multiple classes to wordpress body_class()

I'm trying to figure out how to add add terms for pages to my body class automatically. I'm very close with some code I've been piecing together. Right now this works, but only returns one term. How ...
1
vote
1answer
39 views

Copyright on Terms and Conditions [closed]

A client proposed to take the Terms and Conditions from a website similar to their own. I assume that Terms and Conditions are copyrighted and this is a bad idea. Is that correct? Is there some sort ...
1
vote
1answer
150 views

Only displaying a posts selected taxonomy terms?

When using wp_get_post_terms() I can produce a list of taxonomy terms associated with a post. However, I only want to show the taxonomy terms that have been selected for that post. Using the ...
1
vote
1answer
341 views

Drupal show all terms of different vocabulary

I'm trying to show every terms of 2 vocabularies from a node, but I have this situation. I have 2 vocabularies, somethings like "brands" and "cars". Brands Ford BMW Mercedes Cars Blue Light ...
1
vote
2answers
705 views

Limiting terms in Solr's TermsComponent to terms originating from certain documents

I am using Solrs TermsComponent to implement an autocomplete feature. My documents contain tags which I have indexed in a "tags" field. Now I can use TermsComponent to find out which tags are used in ...
1
vote
1answer
79 views

How to understand the structure of taxonomy in drupal 6

I mean everywhere in code example on internet it's littered with tid, vid etc. I want to understand how it is related to taxonomy. Can someone give me some references? Actually I need to create nodes ...
1
vote
1answer
255 views

What is the concept of Head in Subversion and what is the difference to a Trunk

I undrstand that a trunk is the "main" branch, and understand the concept of branches and tags. but where does the "head" comes into the picture? It seems it is the "latest" revision? if so than what ...
1
vote
2answers
359 views

Extract terms from query for highlighting

I'm extracting terms from the query calling ExtractTerms() on the Query object that I get as the result of QueryParser.Parse(). I get a HashTable, but each item present as: Key - term:term Value - ...
1
vote
1answer
363 views

Find total term count in Solr index

I need to figure out how many unique terms are in our Solr (Lucene) index. And by unique terms, I dont mean by document. I mean total unique terms from all documents in the index. The Solr admin ...
1
vote
2answers
1k views

On-premise, off-premise applications, what are they?

When I study about cloud-computing, I usually see these terms: on-premise, off-premise applications. I tried to search them on Google, but no luck. Can anyone please explain me these terms? Thank you ...
1
vote
2answers
2k views

How to delete terms within Drupal taxonomy module?

If terms (admin OR user created) are duplicates, I don't see a way to delete them from within the Drupal browser interface. This becomes a problem during, say, adding products to an ecommerce site ...
0
votes
1answer
35 views

Regex highlight search terms in html [closed]

Possible Duplicate: Highlight keywords in a paragraph I have been struggling with the idea of highlighting search terms in html or pure text strings. I have seen many examples that just ...
0
votes
3answers
48 views

Regex to split alphanumeric, currency and numeric terms in PHP

I am trying to split a string into terms in PHP using preg_split. I need to extract normal words ( \w ) but also currency ( even currency symbol ) and numeric terms ( including commas and decimal ...
0
votes
1answer
27 views

Wrapping words with a titled span with PHP

i'm working on a website that includes a glossary, in which a few words are explained. Additionaly I want to describe the terms in an article by putting them in spans with a title attribute. I get ...
0
votes
2answers
30 views

Somthing like is_term for wordpress conditional tags

All thing i need is a Function that check for is a term available for current taxonomy in a page.for example when i want to check is a page available in a post_type i use : <?php if('my_taxonomy' ...
0
votes
1answer
37 views

Exclude term from wp_get_object_terms

So pretty straightforward, seemingly, but I can't find any examples in either a) the Wordpress Codex; or b) in any examples in the wild. I'm just trying to exclude a term from this output of terms ...
0
votes
2answers
79 views

PHP Search for keywords

I have been building a PHP search facility for certain types of posts on the website (for the purpose of this please accept that mySQL is out of the question). After a series of procedures we get the ...
0
votes
0answers
36 views

How to loop through each taxonomy and rewrite the url

I have lots of custom taxonomies and terms in my custom wordpress theme and I want to rewrite the rules using my rewrite functions that looks like this function my_flush_rules() { $rules = ...
0
votes
1answer
75 views

WordPress get_terms returning empty array

I'm having an issue with the get_terms() function. If I use: <?php $terms = get_terms( 'location' ); print_r($terms); ?> I get an array back: Array ( [0] => stdClass Object ( [term_id] ...
0
votes
1answer
39 views

about the terms of “Component”

I'm a newbie of Android world. I'm so confused about some terms. Especially, why do we call Activity, Service, Broadcast receiver and Content Provider as "Component"? Of course, I know the original ...
0
votes
1answer
45 views

Terms of use for Graph API

I have logged into my Facebook account on a computer where my Facebook application is running. Can I send/receive data(like friends, like etc.) from this application to/from a different device on ...
0
votes
0answers
93 views

Rewrite rules for Multiple Taxonomies Archive and Single Custom Post type

Hi I've been trying to set some rewrite rules for multiple taxonomies. I need this: myblog.com/?tax1=anyterm&tax2=otherterm to become this: myblog.com/tax1/anyterm/tax2/otherterm/ And it also ...
0
votes
2answers
38 views

How do you name a component that both encrypts and decrypts depending on method you use? [closed]

I would like to give a good name to class that will contain both methods for encryption and decryption using the same alghoritm. Does anyone have an idea for naming seemingly opposing expressions ...
0
votes
2answers
105 views

Get Google search terms from PHP script

Is it possible to get Google search terms that have been searched certain number of times from PHP script? For example get all search terms that have been searched between 1000 and 10000 times. ...
0
votes
1answer
36 views

Show all posts from category X with the same taxonomy term as current post

I already have this almost working, with a neat snippet someone helped me with. Currently though its displaying all posts regardless of category or post type with the same taxonomy term as the current ...
0
votes
0answers
26 views

Accepting terms and conditions on websites? [closed]

I'm developing a website at the moment and we were just discussing how we are to do about an "accept these terms and conditions" button when a user signs up. Are there any rules that states that there ...
0
votes
0answers
93 views

Wordpress related content by matching current post terms in WP_query

I am trying to pull in related content based on matching custom taxonomy terms of the current post with hierarchical terms tagged to other content(all are same taxonomies). So, when a visitor is ...
0
votes
1answer
130 views

How can I use TF-IDF Weights to Rank Relevancy?

I have a set of key terms and have calculated TF-IDF weights along with tag frequencies and term counts for each term, persisted in a database. How can I use these DB values to produce a set of ...
0
votes
0answers
92 views

How to get root taxonomy terms as facets from solr (Drupal 6)

I was wondering if it is possible to retrieve only the root taxonomy terms as facets from solr or do i need to specify all the possible root taxonomy terms for which i need a facet count? Thx
0
votes
0answers
27 views

How do I get all the post authors emails that are related to a taxonomy term in wordpress

I am new here, but have been enjoying the help of this site for the last week or so. I have a wordpress site that allows users to post and each post has a taxonomy term related to it. I am using ...
0
votes
1answer
237 views

get_terms return errors

Hi when i try to get_terms(); in theme options via this code $catalogs_terms = get_terms( 'catalogs' ); $mycatalogs = array( -1 => 'Select a catalog' ); if ( $catalogs_terms ) { ...
0
votes
2answers
346 views

Howto perform a 'contains' search rather than 'starts with' using Lucene.Net

We use Lucene.NET to implement a full text search on a clients website. The search itself works already but we now want to implement a modification. Currently all terms get appended a * which leads ...
0
votes
1answer
72 views

GNU GPL license

recently I have been programing in GTK and I am kinda confused about license and I don't know if I get it right. I can not sell program that has been developed with usage of GTK? I don't have to ...
0
votes
2answers
37 views

Programmatic way to search a page for the user in a browser

I am working on a search engine project that will point a user to a page from, say Google, and show them where their search terms are in the document. Most of us search Google and know that sometimes ...
0
votes
1answer
143 views

Simple tool to find the most recurrent terms in a text

I have a text and I would like to extract the most recurrent terms, even if made up by more than one word (i.e.: managing director, position, salary, web developer). I would need a library or an ...
0
votes
1answer
94 views

Similar By Terms module

I have a blog where you can add tags. I wanted to see the related blogposts to this tag in a view so i created one with the module Similar By Terms. However, i can't seem to link old blog posts to ...
0
votes
1answer
72 views

Adding references to Facebook

Does anyone know if there are any restrictions imposed by Facebook on whether or not their "default" icons can be modified and used in custom applications/websites? For example, does the Facebook ...

1 2