tagging

Auto Categorization of Content

心不动则不痛 提交于 2019-12-05 23:56:01
I'm developing a script that extracts the messages from the message archive of a particular meetup.com group of which I'm a member - http://www.meetup.com/opencoffee/messages/archive/ The idea is to dynamically add these to a wordpress site and allow people to search messages, auto tag messages etc. The issue I have is how best to auto categorize these messages. I would welcome any thoughts and ideas of how best to go about this and what would be the most efficient way of programming this. Option 1 Find a source of tags by subject area such as finance, technology, business etc by using the

How to customise the tag format of the Maven release plugin?

耗尽温柔 提交于 2019-12-05 14:25:04
问题 In our SVN repo, we store tags like this: trunk project_a project_b branches project_a branch_x branch_y project_b tags project_a 1.0 1.1 project_b 1.0 When I run the Maven release plugin's "prepare" goal on project A, by default it creates the tag as "tags/project_a-x.x", which does not match my tag naming scheme above. I am thus depending upon whoever does the release (i.e. a fallible human) to spot this and change the tag to "tags/project_a/x.x". How can I tell the release plugin to use

Is it possible to integrate django-taggit and django-mptt / django-treebeard?

♀尐吖头ヾ 提交于 2019-12-05 14:18:00
I am developing a website that requires tagging up different types of content, which favors using django-taggit. But, it would be extremely beneficial if the tags were represented in the database in their natural hierarchy, favoring use of django-mptt or django-treebeard. What is the best solution to integrate the generic tagging functionality of taggit with the tree-structure provided by mptt / treebeard? Tentacles I used treebeard and taggit's custom through models to implement hierarchical tags. Just found this yesterday, so I can't really tell if it's what you're looking for: django

Delphi: How to tag photos the way facebook does

社会主义新天地 提交于 2019-12-05 10:38:58
问题 I need a way to tag photos in a Delphi desktop application the way Facebook does it. That includes some way to easily add the tags over the people, and then hovering the mouse over the person in the photo to show the tag. The two suggestions in the answer given to: "Delphi Components for Face Identification and Tagging" don't solve this. But I have no idea where to start, and have been unable to find ideas on the web on how to do this. How does Facebook do it? Or maybe there's a component for

Unable to use Tagging and excluding Filters

让人想犯罪 __ 提交于 2019-12-05 06:47:26
问题 I have 2 Facets color and shape. Color: Red Green yellow Shape: Circle Square Now I want to use Tagging and excluding Filters for both these Facet. So if I select "Red" the green and yellow should be present in facet list and all shapes as well I read: http://wiki.apache.org/solr/SimpleFacetParameters#Tagging_and_excluding_Filters But unable to implement it in my setup. 回答1: This worked fine for me. select?q={!tag=dt1}color:red&fq={!tag=dt2}shape:*&facet=true&facet.field={!ex=dt1}color&facet

Push to GitLab repository within CI server (deploy keys)

烈酒焚心 提交于 2019-12-05 06:07:34
GitLab has this nice 'deploy keys' feature useful for CI servers to have read and pull access to a repository as they usual don't need more than that. However, I need to create and push a tag to the repository to tag each release that is built from the 'master' branch. To be more specific, I have a Jenkins job that will build a release version from the 'master' branch every time a build is triggered. If the job is successful, I want to tag the 'master' branch HEAD with the release number for future reference. I believe I can't do this using the 'deploy keys' feature. So how do I go about and

How to generate pages for each tag in nanoc

六眼飞鱼酱① 提交于 2019-12-05 01:43:49
I am new to nanoc and I am still finding my around it. I am able to get my site ready, it looks good and functions good, too. But I need to have a tags area. I am able to achieve that with <%= tags_for(post, params = {:base_url => "http://example.com/tag/"}) %> But how do I generate pages for tag? So for instance there is a tag called "NFL", so every time a user clicks on it, he/she should be directed to http://example.com/tag/nfl with a list of articles that correspond with NFL. I can setup a layout which will do that. But then what kind of logic should be I using? And also do I need to have

Tagging mkv files with cover images?

二次信任 提交于 2019-12-04 23:00:40
I found this screenshot which shows that you can add a cover image to an mkv file in a way that it is displayed as the icon of the file in the Windows explorer using Shark007 + icaros . But these tools are messing with the system in a really bad way. A lot of people are having problems with it and I too very much regret that I've installed it. I'm really glad I got my Windows to boot again... Anyway, how could I programmatically add a cover image to an mkv file? And would I need to change something in the registry to make Windows display them? I'm not neccessarely looking for code, I'm more

Video streaming [closed]

我们两清 提交于 2019-12-04 21:33:59
anyone that can help would be greatly appreciated. I want to setup a video streaming service from my server. I want to store videos on this. Now I was thinking of streaming the video through some form of player (e.g. JWPlayer) and (a) allowing users to step through the video frame by frame (b) tagging the video by associating text (data) with any frame (time) in the video (c) being able to jump to these tags (d) use the tags to reference the video. What are the best components for achieving this with say up to 100 concurrent users? Max. I'm not sure about the server architecture you'd use for

Open source jquery autocomplete tagging [closed]

天涯浪子 提交于 2019-12-04 16:39:30
I really like http://www.devthought.com/projects/jquery/textboxlist/ for autocomplete, but I was wondering if there is an open source version. I also really like http://code.drewwilson.com/entry/autosuggest-jquery-plugin . Here's another question on Stackoverflow that is pretty useful Facebook style JQuery autocomplete plugin Check this Rails example based on Tag-it! and autocomplete: Working example: http://tag-it-autocomplete.heroku.com/ Source code: https://github.com/makaroni4/tag-it-autocomplete I really Like this one: http://jcesar.artelogico.com/jquery-tagselector Here's a modified