Skip to content

Instantly share code, notes, and snippets.

View rtroncy's full-sized avatar

Raphael Troncy rtroncy

View GitHub Profile
@jplu
jplu / sampleTypeMapping.nt
Created March 29, 2017 13:19
Sample of types mapping.
@prefix schema: <http://schema.org/> .
@prefix dbo: <http://dbpedia.org/ontology/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix dul: <http://ontologydesignpatterns.org/ont/dul/DUL.owl#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix nerd: <http://nerd.eurecom.fr/ontology#> .
@prefix neel: <http://neelchallenge/ontology/> .
@prefix stanford: <http://stanfordnlp.github.io/CoreNLP/ner.html#> .
@prefix mo: <http://purl.org/ontology/mo/> .
@prefix itsrdf: <http://www.w3.org/2005/11/its/rdf#> .
@pasqLisena
pasqLisena / bnf.moonlight.ttl
Created January 31, 2017 16:07
Manifestation modelling - BnF example
@prefix crm: <http://www.cidoc-crm.org/cidoc-crm/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix ecrm: <http://erlangen-crm.org/current/> .
@prefix efrbroo: <http://erlangen-crm.org/efrbroo/> .
@prefix mus: <http://data.doremus.org/ontology#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@giacbrd
giacbrd / tweetdownload.py
Last active August 29, 2022 06:00
A script for downloading (crawling) tweets by their IDs. A useful tool for creating datasets of tweets, as requested in popular research challenges on Twitter data (e.g., SemEval, #Microposts and TREC Microblog Track)
#!/usr/bin/env python
# encoding: utf-8
"""A script for downloading (crawling) tweets by their IDs.
A useful tool for creating datasets of tweets, as requested in popular research challenges on Twitter data
(e.g., SemEval, #Microposts and TREC Microblog Track).
It requires Twython (it optionally requires bz2file for compression).
This code is in https://gist.github.com/giacbrd/b996cfe2f1d24752f23bd119fdd678f2"""
__author__ = 'Giacomo Berardi <giacbrd.com>'
@ktk
ktk / Content-location.md
Last active August 23, 2016 15:43
Content-Location instead of 303

Ceci n'est pas une pipe

I got asked on Twitter on how I would use Content-Location with Linked Data, see https://twitter.com/elfpavlik/status/605693139119153153.

I'm referring to my remark from the Trifid-LD Readme:

Trifid-LD does not care about HTTPRange-14 and neither should you. We consider the extra 303 redirect round-trip a waste of precious response time. You get back what you asked for in content-negotiation.

As you can see later in the text we did think about the Content-Location header but didn't implement it so far. The reason is pretty simple: While I understand the problem (up to some point at least) from a meta-level I fail to see where this is an issue in the real world. I'm just an engineer and maybe I'm oversimplifying things here but as long as no one gives me a clear explanation on why this will lead to real world problems, I will continue to ignore HTTPR

// import javax.xml.bind.DatatypeConverter;
// import java.io.UnsupportedEncodingException;
// import java.security.MessageDigest;
// import java.security.NoSuchAlgorithmException;
// import java.util.UUID;
public static void main(String[] args) {
String hash;
try {
String ID = "";
@tomayac
tomayac / gist:c2358b1cbee764b679e9
Last active August 29, 2015 14:06
TwitPic backup script
// Browse through your photo collection page-by-page,
// each time pasting the script in the console.
// Then save images one-by-one, or just "Save as" > "Web page complete".
// The alt attribute contains the original tweet text.
// License: CC0. Author: Thomas Steiner (tomayac).
var images = [];
Array.prototype.forEach.call(document.querySelectorAll('div[class~="user-photo"] a img'), function(img, i) {
img.src = /.*?\/thumb\/.*?/g.test(img.src) ? img.src.replace('/thumb/', '/large/') : img.src;
images[i] = '<img src="' + img.src + '" alt="' + img.alt.replace(/"/g, '&quot;')+ '"/>';
});
@chrismetcalf
chrismetcalf / gist:5453013
Created April 24, 2013 15:28
#odw13 Barcamp Sessions - What is an open data business?

What is an open data business?

  • An organization that uses open data as a resource to be refined, improved, or augmented to provide additional value
  • If access to the open data is later limited or removed, the business will be adversely affected

How do we measure the the impact of open data businesses?

  • is it the value they add?
  • is it the value of the business?
  • how do you set a value on data that is free?
@chrisjacob
chrisjacob / README.md
Created February 18, 2011 03:44
Setup GitHub Pages "gh-pages" branch and "master" branch as subfolders of a parent project folder ("grandmaster").

Intro

Description: Setup GitHub Pages "gh-pages" branch and "master" branch as subfolders of a parent project folder ("grandmaster").

Author: Chris Jacob @_chrisjacob

Tutorial (Gist): https://gist.github.com/833223

The Result