Questions tagged [tagging]

Tagging is the act of adding tags (non-hierarchical keywords or terms assigned to a piece of information such as an Internet bookmark, digital image, or computer file).

Tagging is the act of adding tags (non-hierarchical keywords or terms assigned to a piece of information such as an Internet bookmark, digital image, or computer file).

Tagging is carried out to perform functions such as aiding in classification, marking ownership, noting boundaries, and indicating online identity. It may take the form of words, images, or other identifying marks.

920 questions
9
votes
7 answers

How do I determine what branch I have checked out in git?

I clone my source using git clone https://gerrit.wikimedia.org/r/p/mediawiki/core.git w/. Then I specify a specific branch/tag by doing git checkout or git checkout origin/REL. Sometimes I forget what branch I'm on. In SVN…
Son of the Wai-Pan
  • 12,371
  • 16
  • 46
  • 55
9
votes
1 answer

use :tjump instead of :tag vim on pressing ctrl-]

in vim, when i press ctrl-] 1) the usual behavior: it goes to the first matching tag with the word under the cursor, after that we need to do :tjump separately to see a list of all matching tags and then jump to the desired tag. 2) what i want…
suppie
  • 1,087
  • 8
  • 10
9
votes
0 answers

Jekyll: Have tags from custom collections included in site.tags?

I have a Jekyll site with both Posts and Resource Pages, with the latter being a Jekyll collection of pages. I've installed the jekyll-tagging extension, which generates list pages for all tags listed in site.tags, and set up a tags index page which…
dnh
  • 527
  • 4
  • 15
9
votes
2 answers

Getting rails tagging plugins to work makes me Hulk-angry

I spent all my time yesterday trying to get ANY Rails tagging plugin to work. While installation was straightforward, I have to say the amount of documentation on how to use any of these plugins was dismal at best... For the record, I…
Ganesh Shankar
  • 4,826
  • 8
  • 43
  • 56
9
votes
3 answers

How to commit/push a Git tag with Gradle?

I have created a specific Gradle task that should only be called in the Jenkins build system. I need to make this task depend on another one which should tag the HEAD of the master branch after a successful compilation of the project. I have no idea…
rfgamaral
  • 16,546
  • 57
  • 163
  • 275
9
votes
2 answers

Rails 3 Order By Count on has_many :through

I have an application where I can list Items and add tags to each Item. The models Items and Tags are associated like this: class Item < ActiveRecord::Base has_many :taggings has_many :tags, :through => :taggings end class Tagging <…
gcstr
  • 1,466
  • 1
  • 21
  • 45
9
votes
4 answers

LSA - Latent Semantic Analysis - How to code it in PHP?

I would like to implement Latent Semantic Analysis (LSA) in PHP in order to find out topics/tags for texts. Here is what I think I have to do. Is this correct? How can I code it in PHP? How do I determine which words to chose? I don't want to use…
caw
  • 30,999
  • 61
  • 181
  • 291
8
votes
3 answers

Solr multiple filter tagging / excluding

I am trying to apply filter tagging for Solr search Tagging_and_excluding_Filters. The challenge is to apply multiple tagging at the same time (for multiple select options on a single page). e.g.…
insightful
  • 189
  • 1
  • 5
  • 14
8
votes
1 answer

How to find all the tags of each page and then concat the tags into one column?

How can I find all the tags of each page and then concat the tags into one column? For an example, pages table, page_id 1 2 3 4 tags table, tag_id tag_name 1 A 2 B 3 C 4 D tagged table, page_id …
Run
  • 54,938
  • 169
  • 450
  • 748
8
votes
2 answers

Project Organization using Maven + Git

Our team is currently in the process of moving from SVN to Git. We currently use Maven as our build tool. Currently our projects have a build hierarchy through Maven, but are flat on the file hierarchy/repository side. My goal is to more closely…
JT703
  • 1,311
  • 4
  • 17
  • 41
8
votes
1 answer

How does StackOverflow's tag suggestions work?

I've got a database of hundreds of thousands of forum posts, and would like to tag them in an unsupervised way. I noticed that StackOverflow's tag system suggests tags as I go. How does this algorithm work? I also found this that implies it is SVM…
cjm2671
  • 18,348
  • 31
  • 102
  • 161
7
votes
1 answer

Tagging friends in Facebook videos for an iPhone app

I am developing an iPhone application that allows the uploading of videos to Facebook. I would like to allow the user to tag his/her friends in the video uploaded. How can I achieve this programmatically? I have gone through the Facebook API…
spd
  • 2,114
  • 1
  • 29
  • 54
7
votes
1 answer

How to implement user tagging in flutter?

The app I am building has comments and posts and I am wondering how I would be able to implement tagging in comments and posts similar to Instagram? I don't think there are any packages for this last I checked. Would I just implement it like a…
Potato
  • 509
  • 1
  • 6
  • 17
7
votes
4 answers

Space separated values; how to provide a value containing a space

I'm creating a bash script to provision multiple Azure resources via the Azure CLI. So far so good, however I'm having a problem tagging resources. My goal is to store multiple tags in a variable and provide that variable to the --tags option of…
Arjen
  • 73
  • 2
  • 7
7
votes
1 answer

What is the easiest way to replicate the tags textbox that is used in the stackoverflow questions page

i am building a asp.net-mvc website and i want to support tagging on each page. I want to exactly replicate the inteface and UI that is used on stackoverflow (include both behavior and layout, css). What is the easiest way to leverage this. is…
leora
  • 188,729
  • 360
  • 878
  • 1,366