name: tufte-viz description: | Ideate and critique data visualizations using Edward Tufte's principles from "The Visual Display of Quantitative Information." Use this skill when: (1) Designing new data visualizations or charts (2) Critiquing or improving existing visualizations (3) Reviewing dashboards or reports for graphical integrity (4) Deciding between visualization approaches (5) Reducing chartjunk or improving data-ink ratio (6) Planning small multiples or high-density displays
| # Call onefetch if we navigate to a new repository | |
| LAST_REPO="" | |
| cd() { | |
| builtin cd "$@"; | |
| git rev-parse 2>/dev/null; | |
| if [ $? -eq 0 ]; then | |
| if [ "$LAST_REPO" != $(basename $(git rev-parse --show-toplevel)) ]; then | |
| onefetch | |
| LAST_REPO=$(basename $(git rev-parse --show-toplevel)) |
Recent government decisions about research infrastructure funding are, of course, disappointing for the humanities — particularly those of us who have working in the digital realm. But we need to remember that at it’s heart infrastructure is people, and there is much we can do now — right now, starting today — to support and develop capacity for digital research in the humanities. For example:
-
Ensure that people get appropriate recognition for digital projects in hiring and promotion processes. The Modern Language Assoc and the American Historical Assoc have both developed guidelines around this — it would be great to see this addressed in Australia.
-
Find ways to reward and encourage openness in the sharing of skills, tools, resources, data, and code. I have learnt so much through the generosity of others in the DH community, but we nee
I did a bit of review of the Linked Data of a respected CH institution, which will remain unnamed. Below are my findings
- go to http://www.culturaitalia.it/oaiProviderCI/listRecords.html (note: http://www.culturaitalia.it/oaiProviderCI/OAIHandler is the OAI endpoint for automated/complete downloading)
- specify metadataPrefix: cidoc_crm
- save the first RDF record as ex1.rdf
- convert to turtle:
Any GitHub wiki can be cloned by appending wiki.git to the repo url, so the clone url for
the repo https://myorg/myrepo/ is: git@github.com:myorg/myrepo.wiki.git (for ssh) or https://github.com/my/myrepo.wiki.git (for https).
You make edits, and commit and push your changes, like any normal repo. This wiki repo
is distinct from any clone of the project repo (the repo without wiki.get appended).
| @prefix : <http://localhost/jena_example/#> . | |
| @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | |
| @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | |
| @prefix tdb: <http://jena.hpl.hp.com/2008/tdb#> . | |
| @prefix ja: <http://jena.hpl.hp.com/2005/11/Assembler#> . | |
| @prefix text: <http://jena.apache.org/text#> . | |
| @prefix fuseki: <http://jena.apache.org/fuseki#> . | |
| ## Example of a TDB dataset and text index | |
| ## Initialize TDB |
| /* An HTML template in 180 bytes (minified) | |
| Features: Escapes HTML, accepts either strings or functions as values, and that's all (it doesn't handle looping). | |
| Usage: | |
| OneEightyT( | |
| "<h1>{name}</h1><div>{content} @ {currentTime}</div>", | |
| { | |
| name: "Stella", |
| { "@context": { | |
| "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#", | |
| "rdfs": "http://www.w3.org/2000/01/rdf-schema#", | |
| "owl": "http://www.w3.org/2002/07/owl#", | |
| "express": "http://example.com/express#", | |
| "defines": { | |
| "@reverse": "rdfs:isDefinedBy" | |
| }, | |
| "propertyOf": { | |
| "@id": "rdfs:domain", |
| package org.tempura.console.util; | |
| import java.util.ArrayList; | |
| import java.util.Collections; | |
| import java.util.List; | |
| /** | |
| * Usage: | |
| * <li>String msg = Ansi.Red.and(Ansi.BgYellow).format("Hello %s", name)</li> | |
| * <li>String msg = Ansi.Blink.colorize("BOOM!")</li> |