Tagged Questions
Metadata is defined as data providing information about one or more aspects of the data.
19
votes
4answers
302 views
What is the “official” way of creating, structuring, maintaining and updating data codebooks in R, if any?
In the interest of replication I like to keep a codebook with meta data for each data frame. A data codebook is:
a written or computerized list that provides a clear and comprehensive description ...
19
votes
4answers
4k views
Can Mercurial be made to preserve file permissions?
I've seen a number of blog posts, and have experienced for myself, that Mercurial does not preserve the permissions on files pushed from one repo to another. Does anyone know of a Mercurial extension ...
15
votes
7answers
11k views
Not enough storage is available to process this command in VisualStudio 2008
When I try to compile an assembly in VS 2008, I got (occasionally, usually after 2-3 hours of work with the project) the following error
Metadata file '[name].dll' could not be opened -- 'Not enough ...
13
votes
9answers
9k views
C# Get video file duration from metadata
I am trying to read metadata from a file. I only need the Video -> Length property, however I am unable to find a simple way of reading this information.
I figured this would be fairly easy since it ...
12
votes
7answers
11k views
EF Mapping and metadata information could not be found for EntityType Error
I have encountered an exception when I using Entity Framework 4.0 RC.
My Entity Framework model is encapsulated in a private assembly whos name is Procurement.EFDataProvider and my POCO are inside of ...
11
votes
4answers
822 views
java annotations: library to override annotations with xml files
Java has annotations and that is good. However, some developers feel that it is best to annotate code with metadata using xml files - others prefer annotations but would use metadata to override ...
11
votes
7answers
2k views
What is a simple way to generate keywords from a text?
I suppose I could take a text and remove high frequency English words from it. By keywords, I mean that I want to extract words that are most the characterizing of the content of the text (tags ) . It ...
11
votes
3answers
8k views
Greasemonkey namespace..what is it for?
I'm learning how to use greasemonkey and was wondering what the @namespace metadata part is used for. Does it have to be a web address or can it be a folder/directory on my computer? Does it even ...
11
votes
5answers
2k views
A python web application framework for tight DB/GUI coupling?
I'm a firm believer of the heretic thought of tight coupling between the backend and frontend: I want existing, implied knowledge about a backend to be automatically made use of when generating user ...
10
votes
3answers
191 views
What does “^:static” do in Clojure?
I've seen the "^:static" metadata on quite a few function in the clojure core.clj source code, e.g. in the definition of seq?
(def
^{:arglists '([x])
:doc "Return true if x implements ISeq"
...
10
votes
2answers
679 views
How to get metadata from a picture?
I am browsing the web but no way to find how to get metadata from a picture.
Does anyone has an idea ?
I can't see anything in the Bitmap/BitmapFactory/BitmapFactory.Options documentation that would ...
10
votes
5answers
13k views
SQL Server: Extract Table Meta-Data (description, fields and their data types)
I am trying to find a way to extract information about my tables in SQL Server (2008).
The data I need needs to include the description of the table (filled from the Description property in the ...
8
votes
1answer
194 views
Automatic documentation of datasets
I'm working on a project right now where I have been slowly accumulating a bunch of different variables from a bunch of different sources. Being a somewhat clever person, I created a different ...
8
votes
1answer
224 views
How to set multiple SMTP server in android?
My question is how to set multiple SMTP server for sending mails in android like :
yahoo,hotmail,gmail,rediff any type of domain will worked while sending mail.Can anyone suggest any site or any idea ...
8
votes
1answer
90 views
I need to open files in a format which has no predefined UTI, but I don't own the format. How should I export the UTI?
The general question: when I don't own a particular file format, but no UTI has been defined for it by someone else, how do I use that file format?
The specific situation: I'm creating a QuickLook ...
8
votes
3answers
238 views
Why wasn't java.io.Serializable deprecated in Java 5?
In pre Java 5, there were no annotations. As a result you could not add metadata to a class.
To mark a class as serializable, you had to implement the Serializable interface (which is just that, a ...
8
votes
1answer
384 views
Develop and run MSTest unit tests in Visual Studio 2010 without including .vsmdi and .testsettings
I know this is somehow possible, as we have a project that contains MSTest unit tests that are runnable via the VS2010 test runner. We can even add new test methods or classes to the existing ...
8
votes
2answers
405 views
8
votes
1answer
735 views
Can I add metadata to git commits? Or can I hide some tags in gitk
I want to associate custom metadata with a git commit. Specifically to record a review ID from a code review but it could be anything. Tags seem a natural way to do that but I expect to have a ...
8
votes
6answers
5k views
PHP extract GPS EXIF data
I would like to extract the GPS EXIF tag from pictures using php.
I'm using the exif_read_data() that returns a array of all tags + data :
GPS.GPSLatitudeRef: N
GPS.GPSLatitude:Array ( [0] => 46/1 ...
8
votes
3answers
200 views
Where is pointer metadata stored?
Could be that I am overlooking something obvious, but where is pointer metadata stored? For instance if I have a 32-bit int pointer ptr and I execute ptr++ it knows to advance 4 bytes in memory. ...
8
votes
4answers
452 views
What are some of the usage of Meta Data in Clojure?
How have you used the meta data information in your Clojure Program?
I saw one example from Programming Clojure
(defn shout [#^{:tag String} message] (.toUpperCase message))
;; Clojure casts message ...
8
votes
5answers
1k views
Does anyone bother with Dublin Core anymore?
As the question states, is there any point adding Dublin Core meta-tags to your HTML head? Or has sitemap.org removed the use for most of this (though it only replaces some of the tags)
I ask this as ...
8
votes
6answers
4k views
How do you embed album art into an MP3 using Python?
I've been using mutagen for reading and writing MP3 tags, but I want to be able to embed album art directly into the file.
8
votes
7answers
8k views
How do you determine what SQL Tables have an identity column programatically
I want to create a list of columns in SQL Server 2005 that have identity columns and their corresponding table in T-SQL. Any ideas?
Results would be something like:
TableName, ColumnName
7
votes
1answer
203 views
Java library to check video if it's 1080p, 720p, etc
I'm currently looking for a library that looks at a videos metadata and see if the video is 1080p, 720p or a least be able get the basic metadata(resolution, bitrate, etc) so I could do the ...
7
votes
4answers
235 views
Suggested Opensource CMS for managing files by metadata?
I've been wanting to create a resources database for an organisation storing predominantly audio files (lectures) and PDFS. I'm pretty familiar with Wordpress, however I'm looking for another CMS ...
7
votes
3answers
1k views
determine complex type from a primitive type using reflection
I am writing a tool where I need to reflect upon methods and if the parameters of the methods are complex type, then I need to certain type of actions such as instantiating them etc.
Now I saw the ...
7
votes
3answers
2k views
ASP.NET MVC 2 generation of the List/Index view
ASP.NET MVC 2 has powerful features for generating the model-dependent content of the Edit view (using EditorForModel) and Details view (using DisplayForModel) that automatically utilizes metadata and ...
7
votes
4answers
6k views
WCF How to enable metadata?
I am trying to get my svc file working under IIS. In my project, when I press F5 I got the svc working. So I know everything is okay, right? Except for IIS.
I am working on a Windows XP Pro machine ...
7
votes
10answers
2k views
Extracting information from PDFs of research papers
I need a mechanism for extracting bibliographic metadata from PDF documents, to save people entering it by hand or cut-and-pasting it.
At the very least, the title and abstract. The list of authors ...
7
votes
1answer
8k views
How To Check for an Index in Oracle
I am writing a schema upgrade script for a product that depends on an Oracle database. In one area, I need to create an index on a table - if that index does not already exist. Is there an easy way ...
7
votes
8answers
3k views
Is there a metadata exclusion filter for the SVN DIFF command?
I use SVN as source control system and I wonder how to compare directories while ignoring any metadata differences. Is there a way to tell svn diff to compare only the actual content and ignore any ...
7
votes
2answers
5k views
Write dpi metadata to a jpeg image in Java
I am trying to programatically set the dpi metadata of an jpeg image in Java. The source of the image is a scanner, so I get the horizontal/vertical resolution from TWAIN, along with the image raw ...
7
votes
5answers
10k views
How do I check if a column exists in SQL Server?
How do I check if a column exists in SQL Server 2000?
7
votes
2answers
664 views
Accessing Greasemonkey metadata from within your script?
Is there any way that my script can retrieve metadata values that are declared in its own header? I don't see anything promising in the API, except perhaps GM_getValue(). That would of course involve ...
6
votes
1answer
348 views
override metadata in static constructor?
I have a class that inherits the TextBox Class, call it MyTextBox
I'd like to redefine the default Background value for this class.
So I looked for a way to do so and found a good option: call ...
6
votes
1answer
265 views
Adding custom fields to an images metadata dictionary
Is it possible to add custom dictionary fields to an images metadata?
The following statement
writeImageDataToSavedPhotosAlbum:metadata:completionBlock:
Allows images to be added with metadata. ...
6
votes
3answers
260 views
Which image formats contain meta data, and how can I clear it in PHP?
Privacy concerns have lead me to believe I should scrub user uploaded images for any meta data.
I know that JPEG have EXIF, but I'm not sure about PNG or GIF (both are able to be uploaded to my site ...
6
votes
3answers
3k views
how to get the metadata of jsTree.
This is my code:
$("#demo1").jstree({
"themes": {
"theme": "default",
"dots": true,
"icons": true,
"url": "static/themes/default/style.css"
...
6
votes
3answers
565 views
C# Attributes and Metadata implication
I read tutorials from the web about C# Attributes and Metadata. It's very cool but I'm wondering its implication.
Are (custom) attributes loaded when the assembly is loaded? or is it only when you ...
6
votes
1answer
809 views
Importing ASMX Web Service metadata to WCF Endpoint
I am interested in impersonating well-known Web Services and Wcf Services for integration test purposes. To this end, I would like to capture service metadata, auto-generate service stubs, and host ...
6
votes
3answers
3k views
“LNK2022: metadata operation failed” driving me insane
I have a big solution with lots of projects, using VS2008 SP1, and at least once a day I encounter the LNK2022 error. If I do a full rebuild of the solution it builds fine, but this is not fun.
It ...
6
votes
4answers
250 views
What Meta informations should I use?
I see a lot of different point of views on internet concerning meta tags. I've been using them for a while, but I'm now wondering if I've been doing it using the current best practices.
I know that ...
6
votes
2answers
329 views
Is it possible to add a description/comment to a table in Microsoft SQL 2000+
Is it possible to add a "metadata"-like description or comments to a table in Microsoft SQL 2000 and above?
How would you do this through the CREATE TABLE statement?
Is it possible to add a ...
6
votes
6answers
365 views
In Python, how can I efficiently manage references between script files?
I have a fair number of Python scripts that contain reusable code that are used and referenced by other Python scripts. However, these scripts tend to be scattered across different directories and I ...
5
votes
2answers
90 views
Can I modify the <head/> section of a Page in .NET from a User Control without runat=“server”?
I have a page that does not have runat="server" set in the <head/> section. I do not have access to modify any of the code in the page.
This page contains a user control which I do have access ...
5
votes
2answers
101 views
Clojure standard metadata attributes
Is there a "standard" list of metadata attributes (:author, :copyright, etc.) for Clojure, or do I need to read the source code :-)?
Perhaps ClojureDocs could take on this task (suggested).
5
votes
3answers
148 views
Returning metadata with CSS
I have a CSS stylesheet that's dynamically created on the server, and returned via a <link> tag. Is it possible to return any metadata with this stylesheet, that I could read with JavaScript?
...
5
votes
1answer
82 views
What combination of generic parameter constraints will make the C# compiler generate rows for the GenericParamConstraint metadata table?
According to the Partition II metadata specification for the GenericParamConstraint table for the CLR,
The GenericParamConstraint table
records the constraints for each
generic parameter. Each ...