This commit is contained in:
fred 2023-01-01 19:06:39 +01:00
commit 7010b0c836
2 changed files with 16 additions and 19 deletions

View File

@ -73,27 +73,23 @@ header {
<article>
<div class="row justify-center">
<h1 class="video-title">
<center><a href="https://twitch.com/zicmama" target="twitch">COCODING TWITCH TW</a><br></center><br>
<a href="https://astroport.com">Astroport.ONE</a>
<a href="https://git.p2p.legal/qo-op/Astroport.ONE" target="code">- ♥BOX Edition - </a>
<a href="https://olympe.network">Olympe.Network</a><br>
<a target="code" href="http://opencollective.com/monnaie-libre/projects/bunker-box">Recopiez les vidéos que vous aimez dans les capsules de votre TW!
<br>Une fois votre G1Visa obtenu, direction <a target="gchange" href="https://gchange.fr">https://gchange.fr</a> !</a>
<h1 class="video-title">
<center>
<a href="https://twitch.com/zicmama" target="twitch">COCODING TWITCH TW</a><br><br>
<a href="https://astroport.com">Astroport.ONE</a>
<a href="https://opencollective.com/monnaie-libre/projects/coeurbox" target="funding">- ♥BOX Edition - </a>
<a href="https://olympe.network">Olympe.Network</a><br>
</center>
<a target="gchange" href="https://gchange.fr">Recopiez les vidéos que vous aimez dans les capsules de votre TW!
<br>Une fois votre G1Visa obtenu, direction https://gchange.fr !</a>
</h1>
</div>
</article>
<article>
<div class="row justify-center">
</div>
</article>
<article>
<div class="row justify-center">
<p><h3>Devenez INTERNET - Installez IPFS - Activez >>> <a href="https://git.p2p.legal/qo-op/Astroport.ONE" target="code"><b>Astroport.ONE</b></a> <<< </h3>
<ul>
<li>Ajoutez <a href="http://127.0.0.1:8080/ipns/docs.ipfs.tech/install/ipfs-companion/" target="code"><b>ipfs-companion</b></a> à votre navigateur</li>
</ul>
</p>
<ul>
<li>Devenez INTERNET - Installez IPFS - Ajoutez <a href="http://127.0.0.1:8080/ipns/docs.ipfs.tech/install/ipfs-companion/" target="doc"><b>ipfs-companion</b></a> à votre navigateur </li>
</ul>
</div>
</article>
BECOME ASTROŊAUTE
@ -113,8 +109,9 @@ Need help? Contact support@qo-op.com
Astroport' operates a 100% blockchain digitalization.
Copy, store, share, broadcast your multimedia and json channels in IPFS, between friends!
Take possession of your TW. Make freedom of expression uncensurable, unstoppable.
<br/><center><a href="https://git.p2p.legal/qo-op/Astroport.ONE">
>>> Let's reboot the INTERNET - Install IPFS - Activate Astroport.ONE <<<
</a></center><br/>
<center>
<h6>
<a href="https://madeinzion.org">Made In Zion funded project _\/_ </a> powered by <a href="https://astroport.com"><span>"</span>Astroport<span>"</span></a>

View File

@ -55,7 +55,7 @@ myDate() {
}
myDomainName() {
local myDomainName=$(hostname -d 2>/dev/null) && [ -z "$myDomainName" ] && myDomainName=$(domainname 2>/dev/null) && [ "$myDomainName" = "(none)" ] && myDomainName="localhost"
local myDomainName=$(domainname 2>/dev/null) && [ "$myDomainName" = "(none)" ] && myDomainName=$(hostname -d 2>/dev/null) && [ -z "$myDomainName" ] && myDomainName="localhost"
[ -n "$myDomainName" ] && echo "$myDomainName"
}
@ -95,7 +95,7 @@ myHome() {
myHostName() {
local myHostName=$(hostname |sed 's/\.'"$(myDomainName)"'$//')
[ -n "$(myDomainName)" ] && myHostName="${myHostName}.$(myDomainName)" || myDomainName=${myHostName#*.}
[ -n "$(myDomainName)" ] && myHostName="${myHostName}.$(myDomainName)"
[ -n "$myHostName" ] && echo "$myHostName"
}