better namings

This commit is contained in:
fred 2024-01-14 19:05:53 +01:00
parent df55740e80
commit 51f760f35b
8 changed files with 3180 additions and 7 deletions

View File

@ -20,7 +20,7 @@ keygen --help
PLAYER key & wishes can be controled through : ```~/.zen/Astroport.ONE/command.sh``` or directly through TW (Tag="voeu") PLAYER key & wishes can be controled through : ```~/.zen/Astroport.ONE/command.sh``` or directly through TW (Tag="voeu")
Each wish, is a derivated key, it has an IPNS publishing and can be associated to its own ASTROBOT program to take care about Friends data collect & merge. Each wish, is a derivated key, it has an IPNS publishing and can be associated to its own ASTROBOT program to take care about Friends data collect & merge.
VISA.new.sh is creating TW from ```templates/twdefault.html``` and ```templates/minimal.html``` VISA.new.sh is creating TW from ```templates/twdefault.html``` and ```templates/twuplanet.html```
This script is important as it initialize PLAYER and connect him to STATION... You can add more different templates... This script is important as it initialize PLAYER and connect him to STATION... You can add more different templates...
Visit https://tiddlywiki.com to understand all the capacities this tools have inside. Visit https://tiddlywiki.com to understand all the capacities this tools have inside.

View File

@ -143,7 +143,7 @@ for SECTOR in ${SECTORS[@]}; do
## NEW TW TEMPLATE ## NEW TW TEMPLATE
[[ ! -s ${INDEX} ]] \ [[ ! -s ${INDEX} ]] \
&& sed "s~_SECTOR_~${SECTOR}~g" ${MY_PATH}/../templates/empty.html > ${INDEX} \ && sed "s~_SECTOR_~${SECTOR}~g" ${MY_PATH}/../templates/twsector.html > ${INDEX} \
&& echo "REFRESHING SECTOR FROM empty TEMPLATE *****" && echo "REFRESHING SECTOR FROM empty TEMPLATE *****"
## SET SECTOR ## SET SECTOR

View File

@ -36,7 +36,7 @@ LIBRA=$(head -n 2 ${MY_PATH}/../A_boostrap_nodes.txt | tail -n 1 | cut -d ' ' -f
TWMODEL="/ipfs/bafybeie6sx76balvpeehvbh5du7oc5fhjuwydryympeh3qnm5s3b2jrvwe" TWMODEL="/ipfs/bafybeie6sx76balvpeehvbh5du7oc5fhjuwydryympeh3qnm5s3b2jrvwe"
# ipfs cat $TWMODEL > templates/twdefault.html # ipfs cat $TWMODEL > templates/twdefault.html
MINIMAL="/ipfs/bafybeicpfrsx44lkib4352eulvohmgdpaww3sau3qtbj7fzj6qw7xsokhy" MINIMAL="/ipfs/bafybeicpfrsx44lkib4352eulvohmgdpaww3sau3qtbj7fzj6qw7xsokhy"
# ipfs cat $MINIMAL > templates/minimal.html # ipfs cat $MINIMAL > templates/twuplanet.html
################################################################################ ################################################################################
mkdir -p ~/.zen/tmp/${MOATS}/TW mkdir -p ~/.zen/tmp/${MOATS}/TW
@ -71,7 +71,7 @@ if [[ $SALT != "" && PEPPER != "" ]]; then
# COPY TW TEMPLATE # COPY TW TEMPLATE
[[ ${LON} && ${LAT} ]] \ [[ ${LON} && ${LAT} ]] \
&& cp ${MY_PATH}/../templates/minimal.html ~/.zen/tmp/${MOATS}/TW/index.html \ && cp ${MY_PATH}/../templates/twuplanet.html ~/.zen/tmp/${MOATS}/TW/index.html \
|| cp ${MY_PATH}/../templates/twdefault.html ~/.zen/tmp/${MOATS}/TW/index.html || cp ${MY_PATH}/../templates/twdefault.html ~/.zen/tmp/${MOATS}/TW/index.html
else else

24
install_lazydocker_linux.sh Executable file
View File

@ -0,0 +1,24 @@
#!/bin/bash
# allow specifying different destination directory
DIR="${DIR:-"$HOME/.local/bin"}"
# map different architecture variations to the available binaries
ARCH=$(uname -m)
case $ARCH in
i386|i686) ARCH=x86 ;;
armv6*) ARCH=armv6 ;;
armv7*) ARCH=armv7 ;;
aarch64*) ARCH=arm64 ;;
esac
# prepare the download URL
GITHUB_LATEST_VERSION=$(curl -L -s -H 'Accept: application/json' https://github.com/jesseduffield/lazydocker/releases/latest | sed -e 's/.*"tag_name":"\([^"]*\)".*/\1/')
GITHUB_FILE="lazydocker_${GITHUB_LATEST_VERSION//v/}_$(uname -s)_${ARCH}.tar.gz"
GITHUB_URL="https://github.com/jesseduffield/lazydocker/releases/download/${GITHUB_LATEST_VERSION}/${GITHUB_FILE}"
# install/update the local binary
curl -L -o lazydocker.tar.gz $GITHUB_URL
tar xzvf lazydocker.tar.gz lazydocker
install -Dm 755 lazydocker -t "$DIR"
rm lazydocker lazydocker.tar.gz

4
search
View File

@ -6,11 +6,11 @@ if [ "$1" == "" ]; then
else else
echo " Searching for "$1" recursively. Please Wait..." echo " Searching for "$1" recursively. Please Wait..."
echo "------------------------------------------------------------------------------" echo "------------------------------------------------------------------------------"
grep -h -r --exclude-dir='.git*' --exclude='minimal.html' --exclude='empty.html' -H --colour=always "$1" ./ grep -h -r --exclude-dir='.git*' --exclude='twuplanet.html' --exclude='twsector.html' -H --colour=always "$1" ./
fi fi
echo "------------------------------------------------------------------------------" echo "------------------------------------------------------------------------------"
if [ "$2" != "" ]; then if [ "$2" != "" ]; then
echo " To replace \"$1\" whith \"$2\", please run" echo " To replace \"$1\" whith \"$2\", please run"
echo " grep -rl --exclude-dir='.git*' --exclude='minimal.html' --exclude='empty.html' '$1' ./ | xargs sed -i 's~$1~$2~g'" echo " grep -rl --exclude-dir='.git*' --exclude='twuplanet.html' --exclude='twsector.html' '$1' ./ | xargs sed -i 's~$1~$2~g'"
fi fi
## THIS IS A GREAT RETRO ENGINEERING AND CODING TOOLS ## THIS IS A GREAT RETRO ENGINEERING AND CODING TOOLS

3149
templates/twsector.html Normal file

File diff suppressed because one or more lines are too long

View File

@ -20,7 +20,7 @@ INDEX=$4 ## SECTOR TW index file
[[ ! -s ${RSS} ]] && echo "BAD RSS INPUT" && exit 1 [[ ! -s ${RSS} ]] && echo "BAD RSS INPUT" && exit 1
[[ ! -d ~/.zen/tmp/${MOATS}/${SECTOR}/ ]] && echo "BAD UPLANET CONTEXT" && exit 1 [[ ! -d ~/.zen/tmp/${MOATS}/${SECTOR}/ ]] && echo "BAD UPLANET CONTEXT" && exit 1
[[ ! -s ${INDEX} ]] \ [[ ! -s ${INDEX} ]] \
&& sed "s~_SECTOR_~${SECTOR}~g" ${MY_PATH}/../templates/empty.html > ${INDEX} \ && sed "s~_SECTOR_~${SECTOR}~g" ${MY_PATH}/../templates/twsector.html > ${INDEX} \
&& echo "REFRESHING SECTOR FROM empty TEMPLATE *****" && echo "REFRESHING SECTOR FROM empty TEMPLATE *****"