-
Go to a URI without access
-
Login with webid and password
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# for i in `find $(pwd) -name publicTypeIndex.ttl` ; do bin/fixsolidterms.sh "$i" ; done | |
FILE=$1 | |
TMPFILE=/tmp/solidterms.ttl | |
sed 's/https:\/\/www.w3.org\/ns\/solid\/terms#/http:\/\/www.w3.org\/ns\/solid\/terms#/g' $FILE > $TMPFILE | |
touch -r $TMPFILE $FILE | |
mv $TMPFILE $FILE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Hello Solid World</title> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.1/css/bulma.min.css"> | |
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script> | |
</head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<script | |
src="https://solid.github.io/releases/solid.js/solid-client.min.js" | |
></script> | |
<script type="module" src="./main.js"></script> | |
<style> | |
li > input:checked ~ .child {display: none;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<script src="https://solid.github.io/solid-auth-client/dist/solid-auth-client.bundle.js"></script> | |
<script type="module" src="./main.js"></script> | |
<style> | |
#login {display: none;} | |
#webid:empty ~ #login {display: inline;} | |
#webid:empty ~ #logout {display: none;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<script src="https://solid.github.io/solid-auth-client/dist/solid-auth-client.bundle.js"></script> | |
<script type="module" src="./main.js"></script> | |
<style> | |
#login {display: none;} | |
#webid:empty ~ #login {display: inline;} | |
#webid:empty ~ #logout {display: none;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<script | |
src="https://solid.github.io/releases/solid.js/solid-client.min.js" | |
></script> | |
<script type="module" src="./main.js"></script> | |
<style> | |
li > input:checked ~ .child {display: none;} |
-
Use Firefox Browser
-
Go to https://databox.me/ and get a username
-
Note down your username
-
Enter your name and in the Webid box enter : https://username.databox.me/profile/card#me
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fs = require("fs"); | |
var forge = require('node-forge'); | |
var debug = require('debug')('converter'); | |
var BigInteger = forge.jsbn.BigInteger; | |
// change as necessary | |
var countryName = 'UK'; | |
var domain = 'http://databox.me/'; | |
var localityName = 'London'; | |
var organizationName = 'databox.me'; |
- allow Key generation in chrome://settings/content
- register an account that will generate a cert - eg. https://databox.me/ creates user.crt
- on OSX