User dajobe - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T08:59:11Zhttp://stackoverflow.com/feeds/user/11177http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1864941/duplicate-triple-in-rdf-authoritative-view/1865026#18650262Answer by dajobe for Duplicate triple in RDF, authoritative view?dajobe2009-12-08T06:35:17Z2009-12-08T06:35:17Z<p>An RDF triple store is a set of triples, so the same triple cannot be present twice, by definition. However, most rdf stores are actually quad stores (sets of rdf graphs also known as datasets) and in that case, the triple may appear multiple times. That is sometimes called context, depending on the store (eg mine, <a href="http://librdf.org/" rel="nofollow">Redland</a>). Authority is really up to the user to define what meaning a particular graph name/context name has.</p>
http://stackoverflow.com/questions/1857463/how-to-import-data-in-relational-database-to-rdf/1857829#18578292Answer by dajobe for How to import data in relational database to RDF?dajobe2009-12-07T04:34:13Z2009-12-07T04:34:13Z<p>I suggest <a href="http://www4.wiwiss.fu-berlin.de/bizer/d2rq/" rel="nofollow">D2RQ</a> which can convert SPARQL (RDF query) into a relational SQL query. You don't need to convert/export.</p>
http://stackoverflow.com/questions/1856785/characters-allowed-in-a-url/1856825#18568250Answer by dajobe for Characters allowed in a URLdajobe2009-12-06T22:21:08Z2009-12-06T22:21:08Z<p>The upcoming change is for chinese, arabic domain names not URIs. The internationalised URIs are called IRIs and are defined in <a href="http://www.ietf.org/rfc/rfc3987" rel="nofollow">RFC 3987</a>. However, having said that I'd recommend not doing this yourself but relying on an existing, tested library since there are lots of choices of URI encoding/decoding and what are considered safe by specification, versus what are safe by actual use (browsers).</p>
http://stackoverflow.com/questions/1821806/how-to-encode-png-to-buffer-using-libpng/1823604#18236040Answer by dajobe for How to encode PNG to buffer using libpng?dajobe2009-12-01T02:11:59Z2009-12-03T23:49:37Z<p>Yes, using <code>png_set_write_fn</code> something like this - untested:</p>
<p><strong>Updated</strong> with edits from comment</p>
<pre><code>/* structure to store PNG image bytes */
struct mem_encode
{
char *buffer;
size_t size;
}
void
my_png_write_data(png_structp png_ptr, png_bytep data, png_size_t length)
{
struct mem_encode* p=(struct mem_encode*)png_ptr->io_ptr;
size_t nsize = p->size + length;
/* allocate or grow buffer */
if(p->buffer)
p->buffer = realloc(p->buffer, nsize);
else
p->buffer = malloc(nsize);
if(!p->buffer)
png_error(png_ptr, "Write Error");
/* copy new bytes to end of buffer */
memcpy(p->buffer + p->size, data, length);
p->size += length;
}
/* This is optional but included to show how png_set_write_fn() is called */
void
my_png_flush(png_structp png_ptr)
{
}
int save_png_to_file(RGBBitmap *bitmap, const char *path)
{
...
/* static */
struct mem_encode state;
/* initialise - put this before png_write_png() call */
state.buffer = NULL;
state.size = 0;
/* if my_png_flush() is not needed, change the arg to NULL */
png_set_write_fn(png_ptr, &state, my_png_write_data, my_png_flush);
... call png_write_png() ...
/* now state.buffer contains the PNG image of size s.size bytes */
/* cleanup */
if(state.buffer)
free(state.buffer);
</code></pre>
http://stackoverflow.com/questions/1768921/template-system-for-rdf/1771434#17714341Answer by dajobe for Template system for RDF ?dajobe2009-11-20T15:59:00Z2009-11-20T15:59:00Z<p>Sounds a little like using a SPARQL <code>CONSTRUCT</code> query to make the final graph. Run a regular query (<code>WHERE {}</code> ) against a graph to form some variable bindings and then use the <code>CONSTRUCT {}</code> block to make the templated graph into your final answer. Any modern rdf library should have support for SPARQL.</p>
http://stackoverflow.com/questions/1737937/finding-the-length-of-a-word-at-the-beginning-of-a-string-with-recursion/1738014#17380140Answer by dajobe for Finding the length of a word at the beginning of a string with recursiondajobe2009-11-15T16:30:47Z2009-11-15T16:30:47Z<p>This definitely seems like homework following your <a href="http://stackoverflow.com/questions/1737805/undeclared-identifier-error-occurs-when-i-already-have-declared-the-variable">previous question on the same code</a>. Please tag it as such.</p>
http://stackoverflow.com/questions/1734559/url-regex-with-regex-h-in-c/1735921#17359210Answer by dajobe for URL regex with regex.h in cdajobe2009-11-14T23:05:12Z2009-11-14T23:05:12Z<p>You probably should be using <a href="http://www.opengroup.org/onlinepubs/000095399/functions/inet%5Fntop.html" rel="nofollow"><code>inet_pton()</code></a> which is a standard POSIX function (replacing <code>inet_aton()</code>) and handles both IPv4 and IPv6 address formats.</p>
http://stackoverflow.com/questions/1735640/malloc-and-free/1735662#17356623Answer by dajobe for malloc and freedajobe2009-11-14T21:24:49Z2009-11-14T21:24:49Z<p>Probably something due to you allocating of the order of 10000000000000000 bytes (1000*10000*1000*1000*1000) =~ 10000000000 Mbytes = 10000000 Gbytes which wraps your system memory multiple times.</p>
http://stackoverflow.com/questions/1726825/is-there-any-possible-way-to-exchange-data-in-binary-format-between-windows-and-s/1726874#17268740Answer by dajobe for Is there any possible way to exchange data in binary format between windows and solarisdajobe2009-11-13T03:05:27Z2009-11-13T03:05:27Z<p>Although a binary format was requested, if you ever want to debug this kind of thing, it's really helpful to have a textual format that you can read as a human, so the suggestions of XML and maybe JSON might be appropriate. Most systems and languages have handy free libraries for reading and writing both of those, and in many, XML is built in. This also tends to mean they are well tested, integrated and performant.</p>
http://stackoverflow.com/questions/1719812/is-there-a-python-library-to-handle-owl/1719943#17199432Answer by dajobe for Is there a Python library to handle OWL?dajobe2009-11-12T04:46:14Z2009-11-12T04:46:14Z<p>Most people use <a href="http://www.rdflib.net/" rel="nofollow">rdflib</a> but that focuses on RDF, not OWL.</p>
http://stackoverflow.com/questions/1712963/how-often-should-a-programmer-commit-to-svn/1712979#17129790Answer by dajobe for How often should a programmer commit to SVN?dajobe2009-11-11T04:18:02Z2009-11-11T04:18:02Z<p>Commit when you have code you don't want to lose. That doesn't mean you commit to trunk, if you are developing in a team, you should avoid breaking things for others. How much code do you want to rework if your editor destroys the file? An hour or two?</p>
http://stackoverflow.com/questions/1705961/how-to-link-to-static-library-in-c/1705972#17059725Answer by dajobe for how to link to static library in c?dajobe2009-11-10T06:20:30Z2009-11-10T06:20:30Z<pre><code>cc -o yourprog yourprog.c -lstatic
</code></pre>
<p>or</p>
<pre><code>cc -o yourprog yourprog.c libstatic.a
</code></pre>
http://stackoverflow.com/questions/1705324/vfprintf-causes-run-time-error/1705353#17053531Answer by dajobe for vfprintf causes run-time errordajobe2009-11-10T02:47:11Z2009-11-10T02:47:11Z<p>Also <code>__func__</code> is not defined in a header file, it's a pre-defined constant. See <a href="http://stackoverflow.com/questions/1552454/can-i-substitute-func-into-an-identifier-name-in-a-c-macro">Can I substitute <strong>func</strong> into an identifier name in a C macro?</a> for more.</p>
http://stackoverflow.com/questions/1628897/rdf-and-uuid-why-no-urn-schema/1628926#16289261Answer by dajobe for RDF and uuid. why no urn schema ?dajobe2009-10-27T05:36:26Z2009-10-27T05:36:26Z<p>Following the chain of specifications, the IANA <a href="http://www.iana.org/assignments/urn-namespaces/" rel="nofollow">URN namespace registry</a> does indeed register 'uuid' as a namespace after 'urn:'. So yes, the URL above is wrong and it should start 'urn:uuid' as you were expecting.</p>
http://stackoverflow.com/questions/1594566/jquery-javascript-rdf-plugin/1596207#15962071Answer by dajobe for JQuery/Javascript RDF plugindajobe2009-10-20T17:43:36Z2009-10-20T17:43:36Z<p>You are probably looking for <a href="http://code.google.com/p/rdfquery/" rel="nofollow">RDF Query</a> which "is an easy-to-use Javascript library for RDF-related processing". There are lots of examples of use of it at the author's blog: <a href="http://www.jenitennison.com/blog/" rel="nofollow">Jeni's Musings</a>.</p>
http://stackoverflow.com/questions/1392508/how-do-i-get-a-list-of-all-tags-used-in-a-particular-flickr-set/1551735#15517350Answer by dajobe for how do i get a list of all tags used in a particular flickr setdajobe2009-10-11T20:50:15Z2009-10-11T20:50:15Z<p>There isn't a 1 step answer to this but you can get this using the existing APIs. Start with <a href="http://www.flickr.com/services/api/flickr.photosets.getList.html" rel="nofollow">flickr.photosets.getList</a> and <a href="http://www.flickr.com/services/api/flickr.photosets.getInfo.html" rel="nofollow">flickr.photosets.getInfo</a> APIs to get the list of photos (Photo IDs) in the set you want then use <a href="http://www.flickr.com/services/api/flickr.tags.getListPhoto.html" rel="nofollow">flickr.tags.getListPhoto</a> to get the tags for each of the photos. Then create your tag histogram. These should be all available from any of the language interfaces to flickr.</p>
http://stackoverflow.com/questions/1549131/bitfield-masks-in-c/1549171#15491711Answer by dajobe for Bitfield masks in Cdajobe2009-10-10T21:54:44Z2009-10-10T21:54:44Z<p>I don't think is possible - even with offsetof() which works for byte offsets but does not seem to work for bitfields. I would redeclare the fields as enums/defines (0x01 0x02 etc) and manage the bits yourself, so you can get your atomic changes.</p>
http://stackoverflow.com/questions/125597/is-it-reasonable-to-have-boost-as-a-dependency-for-a-c-open-source-project13Is it reasonable to have Boost as a dependency for a C++ open source project?dajobe2008-09-24T05:44:09Z2009-10-07T16:13:20Z
<p>Boost is meant to be <strong>the</strong> standard non-standard C++ library that every C++ user can use. Is it reasonable to assume it's available for an open source C++ project, or is it a large dependency too far?</p>
http://stackoverflow.com/questions/697442/lexer-parser-tools/1469966#14699662Answer by dajobe for Lexer/parser toolsdajobe2009-09-24T05:53:49Z2009-09-24T05:53:49Z<p>There are a bunch of good answers to this question already in <a href="http://stackoverflow.com/questions/428892/what-parser-generator-do-you-recommend">What parser generator do you recommend</a></p>
<p>I've done several flex/bison systems myself but now I'd replace both with <a href="http://www.hwaci.com/sw/lemon/" rel="nofollow">Lemon</a> from sqlite since it's one tool, re-entrant and thread safe as well as having a streaming/pull-based model.</p>
http://stackoverflow.com/questions/1374618/alpha-transparent-pngs-not-displaying-correctly-in-mobile-safari/1386916#1386916-1Answer by dajobe for Alpha transparent PNGs not displaying correctly in Mobile Safaridajobe2009-09-06T22:40:35Z2009-09-06T22:40:35Z<p>This is really more a web design question than a programming one, how about asking on <a href="http://doctype.com/" rel="nofollow">Doctype</a></p>
http://stackoverflow.com/questions/1386862/access-png-metadata/1386911#13869111Answer by dajobe for Access PNG Metadatadajobe2009-09-06T22:38:22Z2009-09-06T22:38:22Z<p><a href="http://pmt.sourceforge.net/pngcrush/" rel="nofollow">PNGCrush</a> can remove metadata as well as optimize/recompress the bitmap images.</p>
http://stackoverflow.com/questions/1383649/concatenating-strings-in-c-which-method-is-more-efficient/1383651#13836510Answer by dajobe for Concatenating strings in C, which method is more efficient?dajobe2009-09-05T15:56:00Z2009-09-05T15:56:00Z<p>Neither is terribly efficient since both methods have to calculate the string length or scan it each time. Instead, since you calculate the strlen()s of the individual strings anyway, put them in variables and then just strncpy() twice.</p>
http://stackoverflow.com/questions/1281277/htaccess-allow-localhost-problem/1281282#12812821Answer by dajobe for .htaccess allow localhost problemdajobe2009-08-15T06:05:49Z2009-08-15T06:05:49Z<p>Use the order the other way around, ie:</p>
<pre><code>order deny,allow
deny from all
allow from 127.0.0.1
</code></pre>
http://stackoverflow.com/questions/1148956/object-oriented-c-api-for-tokyo-cabinet/1149097#11490973Answer by dajobe for Object-oriented C++ API for Tokyo Cabinet?dajobe2009-07-19T02:26:51Z2009-07-19T02:26:51Z<p><a href="http://labs.gree.jp/Top/OpenSource/Flare-en.html" rel="nofollow">Flare</a> seems to provide a C++ binding to Tokyo Cabinet. Source code on <a href="http://github.com/fujimoto/flare/tree/master" rel="nofollow">Git Hub</a></p>
http://stackoverflow.com/questions/1043647/how-often-do-i-run-autoconf/1054266#10542660Answer by dajobe for How often do I run autoconf?dajobe2009-06-28T04:52:29Z2009-06-28T04:52:29Z<p>You should typically be building debian packages from releases so you know what you are packaging - that's usually tarball package-VERSION.tar.gz. In that case, there is not usually any need to run autotools, except for the case where the config.{sub,guess} are too old and can't run on the targeted system.</p>
<p>Anyway, you asked a lot of questions but the first one is based on the problem: </p>
<blockquote>
<p>"But it doesn't work. It complains
that the configure file is missing."</p>
</blockquote>
<p>which doesn't explain what failed. Your sequence at the top of the question includes running <code>./configure</code> so it can't be missing.</p>
<p><code>configure</code> is always present when autotools are correctly run so most of your later questions are rather confusing.</p>
http://stackoverflow.com/questions/1049355/browser-fails-to-recognise-content-type-header-correctly/1052051#10520512Answer by dajobe for Browser fails to recognise Content Type header correctlydajobe2009-06-27T03:27:52Z2009-06-27T03:27:52Z<p>From your code it looks like you are relying on the mimetypes in the rdf library (you don't say which one). When a browser such as firefox / IE (you don't say which you are using) sees a mime type <code>application/</code><em>SOMETHING</em> it typically offers to save it rather than view it.</p>
<p>The mime type for RDF/XML is <code>application/rdf+xml</code> (I know, since I wrote the spec) and that will cause the save-as approach. The mime type for Turtle (which I created in <a href="http://www.w3.org/TeamSubmission/turtle/#sec-mediaReg" rel="nofollow">Turtle note</a>) is not registered but was suggested to be <code>text/turtle</code> which should display fine.</p>
http://stackoverflow.com/questions/993063/what-are-the-strengths-and-weaknesses-of-a-triplestore-database/999154#9991543Answer by dajobe for What are the strengths and weaknesses of a triplestore database?dajobe2009-06-16T00:51:53Z2009-06-16T00:51:53Z<p>I'm the creator of <a href="http://librdf.org/" rel="nofollow" title="Redland">Redland</a> which includes native triple stores in C plus I've used some of the Java systems like Jena and Sesame.</p>
<p>It's hard to say more without knowing what your problem is but in general native triple stores work better if your problem space/query pattern is more 'graphy', rather than 'objecty'. Objecty means you tend to always manipulate - set/get the same pattern of data each time - in that case you might as well use ORM or other object-relational mappping and a fixed schema. If your problem and schema is more dynamic - 'Graphy' - you may benefit from the triple store approach where it's easier to hop across the data than it is typically in a RDBMS world (aka joins).</p>
<p>Of course there is also the document-approach too such as CouchDB but that's hard to know from the info you've given.</p>
http://stackoverflow.com/questions/990079/how-do-i-grab-just-the-parsed-infobox-of-a-wikipedia-article/990099#9900992Answer by dajobe for How do I grab just the parsed Infobox of a wikipedia article?dajobe2009-06-13T06:12:59Z2009-06-13T06:12:59Z<p>I suggest you use <a href="http://dbpedia.org/" rel="nofollow">DBPedia</a> instead which has already done the work of turning the data in wikipedia into usable, linkable, open forms.</p>
http://stackoverflow.com/questions/987808/what-is-the-best-way-to-build-open-source-libraries-dlls-for-windows-developers-t2What is the best way to build open source libraries DLLs for Windows developers to use?dajobe2009-06-12T17:01:01Z2009-06-12T20:40:33Z
<p>I have several C free software/open source libraries that I develop on Linux and OSX with the GNU toolchain (automake, conf, flex, bison, gcc, ...) but I occasionally get requests to provide Windows DLLs. I'd like to be able to provide those without having to spend a lot of time and money with Windows Visual Studio development. I do have a Windows XP virtual machine available and I also know the software is portable as occasionally I get patches to make it build in on windows.</p>
<p>What approaches or tools should I be using? Cross compiling on Linux? using Visual Studio Express or something else? I would prefer something that is fully automated from a SVN repository. I do not count cygwin as a solution since that does not seem to provide what Windows developers need, as far I understand the issues - linking and DLLs.</p>
http://stackoverflow.com/questions/967420/when-to-cdata-vs-escape-vice-versa/967755#9677551Answer by dajobe for When to CDATA vs. Escape & Vice Versa?dajobe2009-06-09T01:18:52Z2009-06-09T01:18:52Z<p>I've seen people use CDATA for the above which is OK, and for wrapping things that are not XML - such as e.g. JSON or CSS - and that's a better reason to use it. The problem happens when people use it to quote element-based markup such as HTML, and then the confusion happens.</p>
<p>People do not expect</p>
<pre><code><![CDATA[<foo>bar</foo>]]>
</code></pre>
<p>to be identical to</p>
<pre><code>&lt;foo&gt;bar&lt;/foo&gt;
</code></pre>
<p>as far as XML systems are concerned.</p>
<p>See RSS tag soup for examples of the horror of escaping levels.</p>
<p>You also have to be sure that the character sequence ']]>' will never appear in your wrapped data since that's the terminator.</p>
<p>So unless readability is paramount or you are wrapping non-element markup, I recommend avoiding CDATA.</p>
http://stackoverflow.com/questions/1734559/url-regex-with-regex-h-in-c/1735921#1735921Comment by dajobe on URL regex with regex.h in cdajobe2009-11-16T21:17:08Z2009-11-16T21:17:08Zyes, especially since IPv6 has abbreviated forms that inet_pton will handle. It's not just 0-9 and .http://stackoverflow.com/questions/1736460/what-is-the-best-way-to-store-a-url-value-using-mysqlComment by dajobe on What is the best way to store a URL value using MySQL?dajobe2009-11-15T03:43:32Z2009-11-15T03:43:32Z255 is far too short as other people have pointed out. You'll need at least 2K if you go by the specs. The question is: what do you want to do with it? Just store as-is or treat as text? That will give you the type (BLOB or VARCHAR/TEXT)http://stackoverflow.com/questions/1735640/malloc-and-free/1735662#1735662Comment by dajobe on malloc and freedajobe2009-11-14T23:11:25Z2009-11-14T23:11:25ZSystem memory meaning physical memory as opposed to virtual memory. It seems unlikely the questioner has a system with 10000000 Gbytes of physical memory thus the program is probably not what is intended.http://stackoverflow.com/questions/1727549/linux-datetime-locale-library-in-c/1727596#1727596Comment by dajobe on Linux datetime/locale library in Cdajobe2009-11-13T07:01:19Z2009-11-13T07:01:19ZThat might work but it will be influenced by the application's current locale and if the locale-specific formatting of the day name is too long, it will overflow the daybuf[].http://stackoverflow.com/questions/1727556/xml-parsing-with-java-dom-parser-converts-xml-declaration-into-elementsComment by dajobe on XML parsing with java dom parser converts xml declaration into elementsdajobe2009-11-13T06:58:54Z2009-11-13T06:58:54Zthere is no question here, what do you want to do? Also if this is homework, please tag it as such.http://stackoverflow.com/questions/1684197/problem-with-sparqlwrapper-python/1690604#1690604Comment by dajobe on Problem with SPARQLWrapper (Python)dajobe2009-11-09T19:04:32Z2009-11-09T19:04:32ZWhy don't you say how and/or point to the code so the next person can see the answer.http://stackoverflow.com/questions/1628897/rdf-and-uuid-why-no-urn-schemaComment by dajobe on RDF and uuid. why no urn schema ?dajobe2009-10-27T14:29:31Z2009-10-27T14:29:31ZIf the problem "why does my rdf not validate with this particular software" - it should have been the question.http://stackoverflow.com/questions/1628897/rdf-and-uuid-why-no-urn-schema/1628926#1628926Comment by dajobe on RDF and uuid. why no urn schema ?dajobe2009-10-27T14:28:07Z2009-10-27T14:28:07ZIt is still wrong, however many times you find evidence of that on the web with some search engine.http://stackoverflow.com/questions/428892/what-parser-generator-do-you-recommend/430484#430484Comment by dajobe on What parser generator do you recommenddajobe2009-09-24T05:55:53Z2009-09-24T05:55:53ZThe elkhound parser seems to have moved to <a href="http://scottmcpeak.com/elkhound/" rel="nofollow">scottmcpeak.com/elkhound</a> if somebody is looking for it now.http://stackoverflow.com/questions/1415538/using-include-to-load-opencl-codeComment by dajobe on using #include to load opencl codedajobe2009-09-12T16:42:19Z2009-09-12T16:42:19ZThere's no question here.http://stackoverflow.com/questions/1386862/access-png-metadata/1386911#1386911Comment by dajobe on Access PNG Metadatadajobe2009-09-07T02:15:19Z2009-09-07T02:15:19ZIt's available in MacPorts if you have that installed, with "port install pngcrush". Otherwise you will need to follow the build instructions and may need the apple developer packages for headers etc.http://stackoverflow.com/questions/1253132/how-does-scanf-work-inside-the-osComment by dajobe on How does scanf() work inside the OS?dajobe2009-08-10T05:39:15Z2009-08-10T05:39:15ZThey are typically not part of the OS - but part of the C library (libc, glibc, ...). scanf() uses the POSIX read() and printf the POSIX write() ultimately. Some standard Unix programming books should help at this level such as Advanced Programming in the UNIX Environment (APUE).http://stackoverflow.com/questions/1253053/cs-bad-functions-vs-their-good-alternatives/1253068#1253068Comment by dajobe on C's "bad" functions vs. their "good" alternativesdajobe2009-08-10T05:35:21Z2009-08-10T05:35:21ZThat also refers to Microsoft's Security Development Lifecycle (SDL) Banned Function Calls at <a href="http://msdn.microsoft.com/en-us/library/bb288454.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>http://stackoverflow.com/questions/1223472/sparql-query-and-distinct-count/1223573#1223573Comment by dajobe on SPARQL Query and distinct countdajobe2009-08-06T01:49:14Z2009-08-06T01:49:14Zit doesn't but aggregates are getting added to SPARQL 1.1 and they are widely implemented (via different extensions, as noted)http://stackoverflow.com/questions/1213844/when-it-comes-to-developing-for-the-iphone-should-i-use-git-or-subversion/1214109#1214109Comment by dajobe on When it comes to developing for the IPhone, should I use Git or Subversion?dajobe2009-08-02T06:31:12Z2009-08-02T06:31:12ZI thought the main sponsors of SVK were backing out of it: <a href="http://lists.bestpractical.com/pipermail/svk-users/2009-May/000425.html" rel="nofollow">lists.bestpractical.com/pipermail/svk-users/…</a> and by implication you should go use a dedicated distributed vcs - such as git, mercurial, bzr, darcs, ...