mirror of
https://gitlab.com/octtspacc/OcttKB
synced 2025-04-22 03:07:20 +02:00
OcttKB Cross-Repo Sync (HTML to Raw)
This commit is contained in:
parent
1c8f2edfe3
commit
40fa28856d
@ -2,7 +2,7 @@ caption: Index
|
|||||||
created: 20230109112202970
|
created: 20230109112202970
|
||||||
creator: Octt
|
creator: Octt
|
||||||
list-before: $:/core/ui/SideBar/Open
|
list-before: $:/core/ui/SideBar/Open
|
||||||
modified: 20230404134708883
|
modified: 20230919180549005
|
||||||
modifier: Octt
|
modifier: Octt
|
||||||
tags: $:/tags/SideBar
|
tags: $:/tags/SideBar
|
||||||
title: OcttKB/Index
|
title: OcttKB/Index
|
||||||
@ -14,11 +14,11 @@ title: OcttKB/Index
|
|||||||
<!-- caption: {{$:/language/SideBar/Contents/Caption}} --->
|
<!-- caption: {{$:/language/SideBar/Contents/Caption}} --->
|
||||||
|
|
||||||
; Other things
|
; Other things
|
||||||
: [[🖍️ Comments/Issues/PRs?|https://gitlab.com/octtspacc/OcttKB/-/issues]]
|
: [[🖍️ Comments/Issues/PRs (Git)|https://gitlab.com/octtspacc/OcttKB/-/issues]]
|
||||||
: [[🏳️🌈 Translate this site (Google)|https://translate.google.com/translate?sl=en&tl=it&hl=en&u=https://kb.octt.eu.org&client=webapp]]
|
: [[🏳️🌈 Translate this site (Google)|https://translate.google.com/translate?sl=en&tl=it&hl=en&u=https://kb.octt.eu.org&client=webapp]]
|
||||||
|
|
||||||
{{$:/OcttKB/LicensingButtons}}
|
{{$:/OcttKB/LicensingButtons}}
|
||||||
|
|
||||||
<br>
|
<div style="margin-top: 16px">
|
||||||
|
''Last edit at'' {{$:/OcttKB/LastEditTime}} <<#[ Activity "https://gitlab.com/octtspacc/OcttKB/activity">>
|
||||||
''Last edit at'' {{$:/OcttKB/LastEditTime}}
|
</div>
|
@ -1,11 +1,13 @@
|
|||||||
created: 20230216212048745
|
created: 20230216212048745
|
||||||
creator: Octt
|
creator: Octt
|
||||||
modified: 20230216214806516
|
icon: 🕰️
|
||||||
|
modified: 20230919165558817
|
||||||
modifier: Octt
|
modifier: Octt
|
||||||
|
page-cover: https://source.unsplash.com/random?clock
|
||||||
tags: Time
|
tags: Time
|
||||||
title: Clock
|
title: Clock
|
||||||
|
|
||||||
<<wikipediaframe Clock en>>
|
<<^wikipediaframe Clock en>>
|
||||||
|
|
||||||
; Some Clocks
|
; Some Clocks
|
||||||
: <<YoutubeL vugulzS0EoU "2 Retro Clocks with an ESP32 (Couldn't be simpler!)">>
|
: <<YoutubeL vugulzS0EoU "2 Retro Clocks with an ESP32 (Couldn't be simpler!)">>
|
||||||
|
6
Wiki-OcttKB/tiddlers/Normal/_Spacc BBS.tid
Normal file
6
Wiki-OcttKB/tiddlers/Normal/_Spacc BBS.tid
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
created: 20230919165602032
|
||||||
|
creator: Octt
|
||||||
|
modified: 20230919165627104
|
||||||
|
modifier: Octt
|
||||||
|
tags: [[Spacc Inc.]] WIP
|
||||||
|
title: Spacc BBS
|
@ -0,0 +1,53 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8"/>
|
||||||
|
<meta name="viewport" content="width=device-width"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<button>Create</button>
|
||||||
|
<button>Suspend</button>
|
||||||
|
<button>Stop</button>
|
||||||
|
<script>
|
||||||
|
let audioCtx;
|
||||||
|
const startBtn = document.querySelector("button:nth-of-type(1)");
|
||||||
|
const susresBtn = document.querySelector("button:nth-of-type(2)");
|
||||||
|
const stopBtn = document.querySelector("button:nth-of-type(3)");
|
||||||
|
susresBtn.setAttribute("disabled", "disabled");
|
||||||
|
stopBtn.setAttribute("disabled", "disabled");
|
||||||
|
|
||||||
|
startBtn.onclick = () => {
|
||||||
|
startBtn.setAttribute("disabled", "disabled");
|
||||||
|
susresBtn.removeAttribute("disabled");
|
||||||
|
stopBtn.removeAttribute("disabled");
|
||||||
|
audioCtx = new AudioContext();
|
||||||
|
const oscillator = new OscillatorNode(audioCtx, { frequency: 1000 });
|
||||||
|
const gainNode = new GainNode(audioCtx, { gain: 0.1 });
|
||||||
|
oscillator.connect(gainNode);
|
||||||
|
gainNode.connect(audioCtx.destination);
|
||||||
|
oscillator.start(0);
|
||||||
|
};
|
||||||
|
|
||||||
|
susresBtn.onclick = () => {
|
||||||
|
if (audioCtx.state === "running") {
|
||||||
|
audioCtx.suspend().then(() => {
|
||||||
|
susresBtn.textContent = "Resume";
|
||||||
|
});
|
||||||
|
} else if (audioCtx.state === "suspended") {
|
||||||
|
audioCtx.resume().then(() => {
|
||||||
|
susresBtn.textContent = "Suspend";
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
stopBtn.onclick = () => {
|
||||||
|
audioCtx.close().then(() => {
|
||||||
|
startBtn.removeAttribute("disabled");
|
||||||
|
susresBtn.setAttribute("disabled", "disabled");
|
||||||
|
susresBtn.textContent = "Suspend";
|
||||||
|
stopBtn.setAttribute("disabled", "disabled");
|
||||||
|
});
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,7 @@
|
|||||||
|
created: 20230919165216265
|
||||||
|
creator: Octt
|
||||||
|
modified: 20230919170921899
|
||||||
|
modifier: Octt
|
||||||
|
tags:
|
||||||
|
title: $:/AudioExperiments/AudioContext
|
||||||
|
type: text/html
|
@ -1,6 +1,6 @@
|
|||||||
created: 20230111212908327
|
created: 20230111212908327
|
||||||
creator: Octt
|
creator: Octt
|
||||||
modified: 20230228224933898
|
modified: 20230919174923171
|
||||||
modifier: Octt
|
modifier: Octt
|
||||||
tags: $:/tags/Macro
|
tags: $:/tags/Macro
|
||||||
title: $:/Macros/Frames
|
title: $:/Macros/Frames
|
||||||
@ -67,10 +67,19 @@ data:text/html;utf8,
|
|||||||
<iframe style=<<iFrame100Style>> frameborder="0" src="$Src$" scrolling="no"></iframe>
|
<iframe style=<<iFrame100Style>> frameborder="0" src="$Src$" scrolling="no"></iframe>
|
||||||
\end
|
\end
|
||||||
|
|
||||||
|
\define iFrameUriDirect(Src)
|
||||||
|
<iframe frameborder="0" src=$Src$></iframe>
|
||||||
|
\end
|
||||||
|
|
||||||
\define iFrame100UriDirect(Src)
|
\define iFrame100UriDirect(Src)
|
||||||
<iframe style=<<iFrame100Style>> frameborder="0" src=$Src$></iframe>
|
<iframe style=<<iFrame100Style>> frameborder="0" src=$Src$></iframe>
|
||||||
\end
|
\end
|
||||||
|
|
||||||
|
\define iFrameTid(Tid)
|
||||||
|
<<EmbedFromLine "$Tid$">>
|
||||||
|
<<iFrameUriDirect """<<b64TidUriEnc "$Tid$">>""">>
|
||||||
|
\end
|
||||||
|
|
||||||
\define iFrame100Tid(Tid)
|
\define iFrame100Tid(Tid)
|
||||||
<<EmbedFromLine "$Tid$">>
|
<<EmbedFromLine "$Tid$">>
|
||||||
<<iFrame100UriDirect """<<b64TidUriEnc "$Tid$">>""">>
|
<<iFrame100UriDirect """<<b64TidUriEnc "$Tid$">>""">>
|
||||||
|
BIN
Wiki-OcttKB/tiddlers/System/Res/_silence.opus.ogg
Normal file
BIN
Wiki-OcttKB/tiddlers/System/Res/_silence.opus.ogg
Normal file
Binary file not shown.
6
Wiki-OcttKB/tiddlers/System/Res/_silence.opus.ogg.meta
Normal file
6
Wiki-OcttKB/tiddlers/System/Res/_silence.opus.ogg.meta
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
created: 20230919181125572
|
||||||
|
creator: Octt
|
||||||
|
modified: 20230919181554744
|
||||||
|
modifier: Octt
|
||||||
|
title: $:/Res/silence.opus
|
||||||
|
type: audio/ogg
|
9
Wiki-OcttKB/tiddlers/System/_AudioExperiments.tid
Normal file
9
Wiki-OcttKB/tiddlers/System/_AudioExperiments.tid
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
created: 20230919165712277
|
||||||
|
creator: Octt
|
||||||
|
modified: 20230919182444286
|
||||||
|
modifier: Octt
|
||||||
|
title: $:/AudioExperiments
|
||||||
|
|
||||||
|
<div>Silent: <audio src=<<datauri "$:/Res/silence.opus">> controls loop></audio></div>
|
||||||
|
<div>Music: <audio src="//hlb0.octt.eu.org/Res/LoveLab-Ext.webm" controls loop></audio></div>
|
||||||
|
<<iFrameTid "$:/AudioExperiments/AudioContext">>
|
@ -1,5 +1,5 @@
|
|||||||
created: 20230919071130244
|
created: 20230919182650866
|
||||||
current-tiddler: GettingStarted
|
current-tiddler: GettingStarted
|
||||||
modified: 20230919071130244
|
modified: 20230919182650866
|
||||||
title: $:/HistoryList
|
title: $:/HistoryList
|
||||||
type: application/json
|
type: application/json
|
@ -1,6 +1,8 @@
|
|||||||
|
modified: 20230919181132853
|
||||||
|
modifier: Octt
|
||||||
status: complete
|
status: complete
|
||||||
title: $:/Import
|
title: $:/Import
|
||||||
|
|
||||||
The following tiddlers were imported:
|
The following tiddlers were imported:
|
||||||
|
|
||||||
# [[$:/plugins/danielo515/ContextPlugin]]
|
# [[$:/Res/silence.opus]]
|
@ -1,6 +1,6 @@
|
|||||||
created: 20230919064614700
|
created: 20230919165206218
|
||||||
creator: Octt
|
creator: Octt
|
||||||
list:
|
list:
|
||||||
modified: 20230919070811486
|
modified: 20230919182016211
|
||||||
modifier: Octt
|
modifier: Octt
|
||||||
title: $:/StoryList
|
title: $:/StoryList
|
7
Wiki-OcttKB/tiddlers/System/state/_tab--1442537726.tid
Normal file
7
Wiki-OcttKB/tiddlers/System/state/_tab--1442537726.tid
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
created: 20230919170930485
|
||||||
|
creator: Octt
|
||||||
|
modified: 20230919170934924
|
||||||
|
modifier: Octt
|
||||||
|
title: $:/state/tab--1442537726
|
||||||
|
|
||||||
|
$:/core/ui/TiddlerInfo/Fields
|
@ -0,0 +1,7 @@
|
|||||||
|
created: 20230919170603859
|
||||||
|
creator: Octt
|
||||||
|
modified: 20230919170603859
|
||||||
|
modifier: Octt
|
||||||
|
title: $:/state/folded/$:/AudioExperiments/AudioContext
|
||||||
|
|
||||||
|
hide
|
@ -0,0 +1,7 @@
|
|||||||
|
created: 20230919165759151
|
||||||
|
creator: Octt
|
||||||
|
modified: 20230919170606688
|
||||||
|
modifier: Octt
|
||||||
|
title: $:/state/folded/$:/AudioExperiments
|
||||||
|
|
||||||
|
show
|
@ -1,7 +1,7 @@
|
|||||||
created: 20220920092307479
|
created: 20220920092307479
|
||||||
creator: Octt
|
creator: Octt
|
||||||
modified: 20230919064934480
|
modified: 20230919182600967
|
||||||
modifier: Octt
|
modifier: Octt
|
||||||
title: $:/state/tab/sidebar--595412856
|
title: $:/state/tab/sidebar--595412856
|
||||||
|
|
||||||
$:/core/ui/SideBar/Recent
|
OcttKB/Index
|
@ -1,6 +1,6 @@
|
|||||||
created: 20230817233312379
|
created: 20230817233312379
|
||||||
creator: Octt
|
creator: Octt
|
||||||
modified: 20230916143815972
|
modified: 20230919171234137
|
||||||
modifier: Octt
|
modifier: Octt
|
||||||
title: $:/state/toc/$:/ToC-$:/Apps--1697730578
|
title: $:/state/toc/$:/ToC-$:/Apps--1697730578
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
created: 20230817233308156
|
created: 20230817233308156
|
||||||
creator: Octt
|
creator: Octt
|
||||||
modified: 20230905212738729
|
modified: 20230919181732096
|
||||||
modifier: Octt
|
modifier: Octt
|
||||||
title: $:/state/toc/$:/ToC-$:/Tools--1697730578
|
title: $:/state/toc/$:/ToC-$:/Tools--1697730578
|
||||||
|
|
||||||
close
|
open
|
@ -1,7 +1,7 @@
|
|||||||
created: 20230916143816834
|
created: 20230916143816834
|
||||||
creator: Octt
|
creator: Octt
|
||||||
modified: 20230916154151317
|
modified: 20230919171254858
|
||||||
modifier: Octt
|
modifier: Octt
|
||||||
title: $:/state/toc/$:/ToC-OcttKB--1697730578
|
title: $:/state/toc/$:/ToC-OcttKB--1697730578
|
||||||
|
|
||||||
open
|
close
|
@ -1,6 +1,6 @@
|
|||||||
created: 20221108155618185
|
created: 20221108155618185
|
||||||
creator: Octt
|
creator: Octt
|
||||||
modified: 20230905212459417
|
modified: 20230919181232676
|
||||||
modifier: Octt
|
modifier: Octt
|
||||||
title: $:/state/tree/$:/Macros/
|
title: $:/state/tree/$:/Macros/
|
||||||
|
|
||||||
|
7
Wiki-OcttKB/tiddlers/System/state/tree/$/Res/_.tid
Normal file
7
Wiki-OcttKB/tiddlers/System/state/tree/$/Res/_.tid
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
created: 20230919181407392
|
||||||
|
creator: Octt
|
||||||
|
modified: 20230919181407393
|
||||||
|
modifier: Octt
|
||||||
|
title: $:/state/tree/$:/Res/
|
||||||
|
|
||||||
|
show
|
@ -1,7 +1,7 @@
|
|||||||
created: 20230108193801573
|
created: 20230108193801573
|
||||||
creator: Octt
|
creator: Octt
|
||||||
modified: 20230905220515685
|
modified: 20230919181019560
|
||||||
modifier: Octt
|
modifier: Octt
|
||||||
title: $:/state/tree/$:/Styles/
|
title: $:/state/tree/$:/Styles/
|
||||||
|
|
||||||
show
|
hide
|
@ -1,7 +1,7 @@
|
|||||||
created: 20230126190600213
|
created: 20230126190600213
|
||||||
creator: Octt
|
creator: Octt
|
||||||
modified: 20230208191315547
|
modified: 20230919181011629
|
||||||
modifier: Octt
|
modifier: Octt
|
||||||
title: $:/state/tree/$:/
|
title: $:/state/tree/$:/
|
||||||
|
|
||||||
hide
|
show
|
@ -1,6 +1,6 @@
|
|||||||
created: 20230127124809746
|
created: 20230127124809746
|
||||||
creator: Octt
|
creator: Octt
|
||||||
modified: 20230404134644361
|
modified: 20230919181006664
|
||||||
modifier: Octt
|
modifier: Octt
|
||||||
title: $:/state/tree/OcttKB/
|
title: $:/state/tree/OcttKB/
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user