├── README.md ├── bin └── clip.sh ├── index.md ├── LICENSE └── index.html /README.md: -------------------------------------------------------------------------------- 1 | # big 2 | for big presentations 3 | -------------------------------------------------------------------------------- /bin/clip.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | BIGDIR="/home/melvin/mel/big" 4 | 5 | cd $BIGDIR 6 | 7 | xclip -o | awk ' /^ [^ ]/ { print "---" } ; /^ [^ ]/ { printf "-" } ; { print } ' > $BIGDIR/index.md 8 | 9 | big-presentation-compose 10 | big-presentation-offline 11 | 12 | rm rubik-v4-latin-regular.woff2 rubik-v4-latin-regular.woff highlight.js highlight.css big.js big.css 13 | 14 | mv index.offline.html index.html 15 | 16 | cat index.md 17 | 18 | 19 | if [[ "$1" == "nocommit" ]] 20 | then 21 | echo "no commit" 22 | exit 23 | fi 24 | 25 | 26 | git add . 27 | 28 | git commit -m "Update main presentation" 29 | 30 | git push origin master 31 | 32 | git checkout gh-pages 33 | 34 | git merge master --no-edit 35 | 36 | git push origin gh-pages 37 | 38 | git checkout master 39 | -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- 1 | Solid Summary 10/8/2018 2 | --- 3 | Following updates on gitter and github 4 | - Discussing extending server for payments with dmitri 5 | --- 6 | Looking at issue #685 7 | - Ensure solid-server works when installed globally with npm 8 | - https://github.com/solid/node-solid-server/issues/685 9 | - Helping with debug 10 | --- 11 | Looking at issue #736 12 | - Have one login for client and serve 13 | - https://github.com/solid/node-solid-server/issues/736 14 | - Learning a bit more about how auth works 15 | - Looking at proposals from Ruben and Dmitri 16 | --- 17 | Work on Solid Pay 18 | - Started user story : paywall 19 | - https://docs.solidpay.org/user-story-paywall 20 | - Started writing up 21 | - Beginning design of code 22 | - Discussing on gitter 23 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Melvin Carvalho 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | big

Solid Summary 10/8/2018

Following updates on gitter and github
3 | 
Looking at issue #685
4 | 
Looking at issue #736
5 | 
Work on Solid Pay
6 | 
--------------------------------------------------------------------------------