Initial commit. - web-allergy - Stop the web industry poisoning your Internet experience!
(HTM) git clone git://bitreich.org/web-allergy git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/web-allergy
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Tags
(DIR) README
(DIR) LICENSE
---
(DIR) commit cd0fd3c4b21054420b117087b2125359e9f0ecc6
(HTM) Author: Christoph Lohmann <20h@r-36.net>
Date: Wed, 31 Jul 2024 17:24:15 +0200
Initial commit.
Diffstat:
A LICENSE | 1 +
A README.md | 22 ++++++++++++++++++++++
A web.ttl | 48 +++++++++++++++++++++++++++++++
3 files changed, 71 insertions(+), 0 deletions(-)
---
(DIR) diff --git a/LICENSE b/LICENSE
@@ -0,0 +1 @@
+This repository is public domain.
(DIR) diff --git a/README.md b/README.md
@@ -0,0 +1,22 @@
+# Health On The Internet Is Important
+
+We at Bitreich care for your health.
+
+When using the web, we experience more and more itching, inner rage,
+changes of our mental position -- as a long term effect. The next time
+the same elements of the web are revisited, the itching and other
+symptoms are even bigger.
+
+This means, the web industry is hiding allergens! They only do it for the
+profit!
+
+We want to show transparency.
+
+Do you feel the itching too?
+
+## Bugs
+
+If you see any bugs, please e-mail:
+
+ Christoph Lohmann <20h@r-36.net>
+
(DIR) diff --git a/web.ttl b/web.ttl
@@ -0,0 +1,48 @@
+# An ontology of the Web for tracking allergies
+
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
+@prefix s: <http://www.w3.org/2000/01/rdf-schema#>.
+@prefix owl: <http://www.w3.org/2002/07/owl#>.
+@prefix dc: <http://purl.org/dc/terms/>.
+@prefix : <https://w3.org/ns/pim/web#>.
+@prefix web: <https://w3.org/ns/pim/web#>. # @@ claim the space
+
+<> a owl:Ontology;
+dc:title "An Ontology for Web Allergies";
+s:comment """... """ .
+
+:WebItem a s:Class;
+ s:label "web item"@en.
+
+:Allergen a s:Class; = <https://www.wikidata.org/wiki/Q186752>;
+ s:label "allergen"@en
+
+:MainAllergen a s:Class; s:subcClassOf :Allergen;
+ s:label "main allergen";
+ s:comment """One of the main allergens when using the Web.""" ;
+ owl:disjointUnionOf
+( :Javascript
+:WebAssembly
+:HTML
+:XHTML
+:CSS
+:XPath
+:JSON
+:HTTP
+:Firefox
+:Chromium
+:RDF ) .
+
+:Javascript a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "javascript"@en .
+:WebAssembly a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "webassembly"@en.
+:HTML a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "html"@en .
+:XHTML a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "xhtml"@en .
+:CSS a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "css"@en .
+:XPath a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "xpath"@en .
+:JSON a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "json"@en .
+:HTTP a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "http"@en .
+:Firefox a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "firefox"@en .
+:Chromium a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "chromium"@en .
+:RDF a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "rdf"@en .
+
+# ENDS