OcttKB Cross-Repo Sync (HTML to Raw)

This commit is contained in:
octospacc 2024-01-30 17:28:29 +00:00
parent 3e8e23fc1a
commit 2b3d04cd98
47 changed files with 172 additions and 88 deletions

View File

@ -1,6 +1,6 @@
created: 20230429182925276 created: 20230429182925276
creator: Octt creator: Octt
modified: 20240128184623406 modified: 20240130163041628
modifier: Octt modifier: Octt
tags: tags:
title: JavaScript/Libraries title: JavaScript/Libraries
@ -13,13 +13,14 @@ Note: some are still in [[Web/Development]]
* `jsdom`: //JavaScript implementation of various web standards, for use with Node.js// --- <<[# Git "https://github.com/jsdom/jsdom">> * `jsdom`: //JavaScript implementation of various web standards, for use with Node.js// --- <<[# Git "https://github.com/jsdom/jsdom">>
* [[Axios|https://axios-http.com/]] --- //Promise based HTTP client for the browser and node.js// --- <<[# Git"https://github.com/axios">> * [[Axios|https://axios-http.com/]] --- //Promise based HTTP client for the browser and node.js// --- <<[# Git"https://github.com/axios">>
** [[How to display response error message with axios|https://stackoverflow.com/questions/44385872/how-to-display-response-error-message-with-axios]] --- `try { ... } catch(err) { console.log(err.response.data.message) }` ** [[How to display response error message with axios|https://stackoverflow.com/questions/44385872/how-to-display-response-error-message-with-axios]] --- `try { ... } catch(err) { console.log(err.response.data.message) }`
* [[cheerio|https://cheerio.js.org/]] --- //The fast, flexible & elegant library for parsing and manipulating HTML and XML.// * [[DefiantJS|https://www.defiantjs.com/]] --- //provides the ability for you to build smart templates applicable on JSON structures, based upon proven & standardized technologies such as XSLT and XPath// (currently has some bugs, they can be accounted for in own code) --- <<[# Git "https://github.com/hbi99/defiant.js">>
!!! ''Do-all'' !!! ''Do-all''
* [[jQuery|https://jquery.com/]] --- //write less, do more// for general operations (has optional libraries for selectors and UI) --- <<[ "[[Git|https://github.com/jquery]]">> * [[jQuery|https://jquery.com/]] --- //write less, do more// for general operations (has optional libraries for selectors and UI) --- <<[ "[[Git|https://github.com/jquery]]">>
* [[Licia|https://licia.liriliri.io/]] - //utility library to get daily works done// - <<[ "[[Git|https://github.com/liriliri/licia]]">> ** [[cheerio|https://cheerio.js.org/]] --- //The fast, flexible & elegant library for parsing and manipulating HTML and XML//, slimmer substitute for jQuery, works on Node
* [[Lodash|https://lodash.com/]] - More modern fork of Underscore, useful for working with data objects - <<[ "[[Git|https://github.com/lodash]]">> * [[Licia|https://licia.liriliri.io/]] --- //utility library to get daily works done// --- <<[ "[[Git|https://github.com/liriliri/licia]]">>
* [[Lodash|https://lodash.com/]] --- More modern fork of Underscore, useful for working with data objects ...supports "[[Custom Builds|https://lodash.com/custom-builds]]" that include only the functions you want --- <<[ "[[Git|https://github.com/lodash]]">>
* [[🐚 zx|https://google.github.io/zx/]] --- //A tool for writing better scripts//, it's like better sh scripting done via JavaScript. --- <<[# Git"https://github.com/google/zx">> * [[🐚 zx|https://google.github.io/zx/]] --- //A tool for writing better scripts//, it's like better sh scripting done via JavaScript. --- <<[# Git"https://github.com/google/zx">>
!!! ''Polyfills'' !!! ''Polyfills''

View File

@ -1,7 +1,8 @@
created: 20230109220804304 created: 20230109220804304
creator: Octt creator: Octt
modified: 20240129095852920 modified: 20240130121203024
modifier: Octt modifier: Octt
page-cover: https://source.unsplash.com/random?data
tags: OcttKB $:/i18n:en tags: OcttKB $:/i18n:en
title: OcttKB/Data title: OcttKB/Data

View File

@ -1,12 +1,14 @@
created: 20230221204801305 created: 20230221204801305
creator: Octt creator: Octt
modified: 20240119001119592 modified: 20240130151210109
modifier: Octt modifier: Octt
tags: tags:
title: Web/Development title: Web/Development
<<^WikipediaFrame "Web development">> <<^WikipediaFrame "Web development">>
* [[Ravelrumba - Blogging design and front end development|https://www.ravelrumba.com/]]
!!! ''References'' !!! ''References''
; Misc ; Misc
@ -52,6 +54,9 @@ title: Web/Development
* [[Convert HTML5 Canvas Sequence to a Video File|https://stackoverflow.com/questions/19235286/convert-html5-canvas-sequence-to-a-video-file/62065826#62065826]] * [[Convert HTML5 Canvas Sequence to a Video File|https://stackoverflow.com/questions/19235286/convert-html5-canvas-sequence-to-a-video-file/62065826#62065826]]
** customize video quality by changing codec: <<MDNLink Web/API/MediaRecorder/mimeType#examples MediaRecorder/mimeType>> ** customize video quality by changing codec: <<MDNLink Web/API/MediaRecorder/mimeType#examples MediaRecorder/mimeType>>
* [[Convert Images to Data URIs for Faster Page Loads|https://jeffreyeverhart.com/2016/04/30/images-data-uris-faster-page-loads/]]
** [[Data URIs for CSS Images: More Tests, More Questions|https://www.ravelrumba.com/blog/data-uris-for-css-images-more-tests-more-questions/]]
* [[Hail, Babel! The Transpiling Overlord|https://www.telerik.com/blogs/hail-babel-the-transpiling-overlord]] * [[Hail, Babel! The Transpiling Overlord|https://www.telerik.com/blogs/hail-babel-the-transpiling-overlord]]
** [[Using babel to transpile to es3 (safari compliant)|https://stackoverflow.com/questions/40205547/using-babel-to-transpile-to-es3-safari-compliant]] ** [[Using babel to transpile to es3 (safari compliant)|https://stackoverflow.com/questions/40205547/using-babel-to-transpile-to-es3-safari-compliant]]
** [[How to Convert ES6 into ES5 using Babel|https://medium.com/@SunnyB/how-to-convert-es6-into-es5-using-babel-1b533d31a169]] ** [[How to Convert ES6 into ES5 using Babel|https://medium.com/@SunnyB/how-to-convert-es6-into-es5-using-babel-1b533d31a169]]
@ -59,7 +64,10 @@ title: Web/Development
* [[How to add full text search to your website|https://medium.com/dev-channel/how-to-add-full-text-search-to-your-website-4e9c80ce2bf4]] * [[How to add full text search to your website|https://medium.com/dev-channel/how-to-add-full-text-search-to-your-website-4e9c80ce2bf4]]
** [[BlogSearch|https://github.com/kbumsik/blogsearch]] ** [[BlogSearch|https://github.com/kbumsik/blogsearch]]
** [[MiniSearch, a client-side full-text search engine|https://lucaongaro.eu/blog/2019/01/30/minisearch-client-side-fulltext-search-engine.html]] ** [[MiniSearch, a client-side full-text search engine|https://lucaongaro.eu/blog/2019/01/30/minisearch-client-side-fulltext-search-engine.html]]
** [[Client-side full-text search in CSS|https://www.redotheweb.com/2013/05/15/client-side-full-text-search-in-css.html?]] (+ a bit of JS :c) ** [[Client-side full-text search in CSS|https://www.redotheweb.com/2013/05/15/client-side-full-text-search-in-css.html?]] (+ a bit of JS :c) --- <<[# Gist "https://gist.github.com/alisonailea/6527599">>
** [[Lunr.js|https://github.com/olivernn/lunr.js/]] ** [[Lunr.js|https://github.com/olivernn/lunr.js/]]
*** [[Add Search to Your Static Site with Lunr.js (Hugo, Vanilla JS)|https://aaronluna.dev/blog/add-search-to-static-site-lunrjs-hugo-vanillajs/]] *** [[Add Search to Your Static Site with Lunr.js (Hugo, Vanilla JS)|https://aaronluna.dev/blog/add-search-to-static-site-lunrjs-hugo-vanillajs/]]
*** [[Adding Super Fast Frontend Search in Rails with Lunr|https://blog.cloud66.com/adding-super-fast-frontend-search-in-rails-with-lunr]] *** [[Adding Super Fast Frontend Search in Rails with Lunr|https://blog.cloud66.com/adding-super-fast-frontend-search-in-rails-with-lunr]]
* [[PDFObject|https://pdfobject.com/]] --- //An open-source standards-friendly JavaScript utility for embedding PDF files into HTML documents.//
** the site also contains general tips and alternatives, such as "[[Embedding PDFs without using JavaScript|https://pdfobject.com/static/]]"

View File

@ -1,7 +1,7 @@
created: 20230110225425199 created: 20230110225425199
creator: Octt creator: Octt
icon: 🍃 icon: 🍃
modified: 20231111000325649 modified: 20240130172729377
modifier: Octt modifier: Octt
page-cover: https://source.unsplash.com/random?Animal_Crossing page-cover: https://source.unsplash.com/random?Animal_Crossing
tags: Nintendo $:/i18n:en Game Proprietary tags: Nintendo $:/i18n:en Game Proprietary
@ -31,8 +31,14 @@ I can't for example really play Japan festivities because only the Japan ROM inc
* [[Decompilation of Animal Forest (zeldaret)|https://github.com/zeldaret/af]] * [[Decompilation of Animal Forest (zeldaret)|https://github.com/zeldaret/af]]
* [[ac-decomp|https://github.com/Prakxo/ac-decomp]] --- //Decompilation in progress of Animal Crossing for the Nintendo GameCube// * [[ac-decomp|https://github.com/Prakxo/ac-decomp]] --- //Decompilation in progress of Animal Crossing for the Nintendo GameCube//
* [[ACSE|https://github.com/Cuyler36/ACSE]] --- //save editor for Animal Crossing main series games// --- note that, for my experience, and from looking at the code, the "Remove Resetti Bit" option doesn't work for ACWW
* [[marcrobledo acnl-editor|https://www.marcrobledo.com/acnl-editor/]] --- //An Animal Crossing: New Leaf savegame editor made in HTML5// --- <<#[ Git "https://github.com/marcrobledo/acnl-editor">> * [[marcrobledo acnl-editor|https://www.marcrobledo.com/acnl-editor/]] --- //An Animal Crossing: New Leaf savegame editor made in HTML5// --- <<#[ Git "https://github.com/marcrobledo/acnl-editor">>
* [[[Action Replay] Impedire a Resetti di apparire|https://t.me/Animali_Crostini/156]] --- EUR/PAL: `221d139c 00000000`
* [[Guida ACWW animalcrossingitalia|http://web.archive.org/web/20120905223120/http://www.bauce.it/ACWW/Benvenuto_files/Guida_ACWW.pdf]]
; Content ; Content
: <dt> Animali Crostini 🍃 (Animal Crossing Moments) : <dt> Animali Crostini 🍃 (Animal Crossing Moments)

View File

@ -1,7 +1,7 @@
created: 20230209150101862 created: 20230209150101862
creator: Octt creator: Octt
icon: 💅 icon: 💅
modified: 20240130004423944 modified: 20240130154503348
modifier: Octt modifier: Octt
page-cover: https://images.unsplash.com/photo-1523437113738-bbd3cc89fb19 page-cover: https://images.unsplash.com/photo-1523437113738-bbd3cc89fb19
tags: Web Frontend tags: Web Frontend
@ -9,6 +9,9 @@ title: CSS
<<^wikipediaframe CSS en>> <<^wikipediaframe CSS en>>
* [[Temani Afif|https://dev.to/afif]] --- //Your favorite CSS Hacker// --- <<[# "GitHub Profile" "https://github.com/Afif13">>
** [[CSS Tip|https://css-tip.com/]] --- // A micro blog to share CSS Tips & Tricks// --- <<[# Git "https://github.com/Afif13/CSS-Tip">>
!!! ''References'' !!! ''References''
* [[CSS Attribute Selectors|https://www.w3schools.com/css/css_attribute_selectors.asp]] * [[CSS Attribute Selectors|https://www.w3schools.com/css/css_attribute_selectors.asp]]
@ -28,8 +31,11 @@ title: CSS
!!! ''Amazing'' !!! ''Amazing''
* [[CSS Zen Garden|https://csszengarden.com/]] --- //The Beauty of CSS Design// * [[CSS Zen Garden|https://csszengarden.com/]] --- //The Beauty of CSS Design//
* [[25 CSS Paper Effects|https://freefrontend.com/css-paper-effects/]]
* [[Reusable CSS "Sticker" Effect|https://dev.to/5t3ph/reusable-css-sticker-effect-44lc]]
* [[26 Impressive web projects built with CSS only.|https://medium.mybridge.co/26-impressive-web-projects-built-with-css-only-4a4c2f773a21?gi=c96d73b5b5d2]]
* [[Pure CSS Minesweeper|https://codepen.io/bali_balo/pen/BLJONZ?editors=1100]] * [[Pure CSS Minesweeper|https://codepen.io/bali_balo/pen/BLJONZ?editors=1100]]
* [[Spinning Diagrams with CSS|https://x.st/spinning-diagrams-with-css]] * [[Spinning Diagrams with CSS|https://x.st/spinning-diagrams-with-css]]
* [[Bubble Sort...in PURE CSS? [No JS] 😱|https://dev.to/grahamthedev/bubble-sortin-pure-css-no-js-3bb1]] * [[Bubble Sort...in PURE CSS? [No JS] 😱|https://dev.to/grahamthedev/bubble-sortin-pure-css-no-js-3bb1]]
* [[25 CSS Paper Effects|https://freefrontend.com/css-paper-effects/]] * [[CSS-only Calendar App Concept|https://codepen.io/davidkpiano/pen/wBGjMr]]
* [[Reusable CSS "Sticker" Effect|https://dev.to/5t3ph/reusable-css-sticker-effect-44lc]]

View File

@ -1,7 +1,8 @@
created: 20230215213812453 created: 20230215213812453
creator: Octt creator: Octt
modified: 20230217143401588 modified: 20240130121513294
modifier: Octt modifier: Octt
page-cover: https://source.unsplash.com/random?calculator
title: Calculator title: Calculator
<<^WikipediaFrame Calculator en>> <<^WikipediaFrame Calculator en>>

View File

@ -1,7 +1,8 @@
created: 20231223234312578 created: 20231223234312578
creator: Octt creator: Octt
modified: 20240119162211752 modified: 20240130143749965
modifier: Octt modifier: Octt
page-cover: https://source.unsplash.com/random?database
title: Database title: Database
<<^wikipediaframe Database>> <<^wikipediaframe Database>>
@ -26,3 +27,9 @@ title: Database
* [[--skip-grant-tables option cannot execute statement|https://stackoverflow.com/questions/54751024/skip-grant-tables-option-cannot-execute-statement]] --- in `mysql>` execute `flush privileges` * [[--skip-grant-tables option cannot execute statement|https://stackoverflow.com/questions/54751024/skip-grant-tables-option-cannot-execute-statement]] --- in `mysql>` execute `flush privileges`
* [[MySQL LENGTH() Function|https://www.w3schools.com/sql/func_mysql_length.asp]] (not LEN on MySQL!) * [[MySQL LENGTH() Function|https://www.w3schools.com/sql/func_mysql_length.asp]] (not LEN on MySQL!)
!!! SQLite
<<^wikipediaframe SQLite>>
* [[Copying data from one SQLite database to another|https://stackoverflow.com/questions/2359205/copying-data-from-one-sqlite-database-to-another/40353567#40353567]] --- best way is probably `sqlite3 old.sqlite ".dump { names of tables }" | sqlite3 new.sqlite`

View File

@ -1,7 +1,8 @@
created: 20230116211647194 created: 20230116211647194
creator: Octt creator: Octt
modified: 20231212234134224 modified: 20240130121545770
modifier: Octt modifier: Octt
page-cover: https://source.unsplash.com/random?emulation
tags: $:/i18n:en tags: $:/i18n:en
title: Emulation title: Emulation

View File

@ -1,8 +1,9 @@
created: 20230114124144464 created: 20230114124144464
creator: Octt creator: Octt
icon: icon:
modified: 20231223123321502 modified: 20240130121405070
modifier: Octt modifier: Octt
page-cover: https://source.unsplash.com/random?fediverse
tags: [[Social network]] tags: [[Social network]]
title: Fediverse title: Fediverse

View File

@ -1,7 +1,8 @@
created: 20231119004553704 created: 20231119004553704
creator: Octt creator: Octt
modified: 20240110011644718 modified: 20240130121432753
modifier: Octt modifier: Octt
page-cover: https://source.unsplash.com/random?gaming-console
tags: Gaming tags: Gaming
title: Gaming console title: Gaming console

View File

@ -1,11 +1,13 @@
created: 20230202225750547 created: 20230202225750547
creator: Octt creator: Octt
modified: 20230429224405395 modified: 20240130162618573
modifier: Octt modifier: Octt
tags: $:/i18n:en tags: $:/i18n:en
title: JSON title: JSON
<<^WikipediaFrame JSON en>> <<^WikipediaFrame JSON en>>
* [[JSON Editor Online|https://jsoneditoronline.org]] + formatter, filterer, querier - <<[ "[[Git|https://github.com/josdejong/jsoneditor]]">> * [[JSON Editor Online|https://jsoneditoronline.org]] + formatter, filterer, querier --- <<[ "[[Git|https://github.com/josdejong/jsoneditor]]">>
* [[JMESPath|https://jmespath.org/]] - cross-platform //query language for JSON// - <<[ "[[Git|https://github.com/jmespath]]">> * [[JMESPath|https://jmespath.org/]] --- cross-platform //query language for JSON// --- <<[ "[[Git|https://github.com/jmespath]]">>
* [[XSLT equivalent for JSON|https://stackoverflow.com/questions/1618038/xslt-equivalent-for-json]]

View File

@ -0,0 +1,19 @@
created: 20240130123607678
creator: Octt
modified: 20240130135809151
modifier: Octt
tags: JavaScript Web HTML
title: JavaScript HTML DOM API
Note that some of the following resources are still not copied from other pages.
* [[HTML DOM Events|https://www.w3schools.com/jsref/dom_obj_event.asp]]
* <$let parentUrl="https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement"><a href=<<parentUrl>>>HTMLInputElement</a>...<div>
* <a href=`$(parentUrl)$/select`>select()</a> --- //selects all the text in a `<textarea>` element or in an `<input>` element that includes a text field.//
</div></$let>
* [[How to get text from all descendents of an element (disregarding scripts)?|https://stackoverflow.com/questions/2532043/how-to-get-text-from-all-descendents-of-an-element-disregarding-scripts]]
* [[Converting HTML string into DOM elements?|https://stackoverflow.com/questions/3103962/converting-html-string-into-dom-elements#3104237]] --- `doc = new DOMParser().parseFromString(htmlString, 'text/html')`
* [[set doctype using javascript|https://stackoverflow.com/questions/21523487/set-doctype-using-javascript]]
* [[Insert an element after another DOM element with JavaScript|https://attacomsian.com/blog/javascript-insert-element-after]] --- //`target.parentNode.insertBefore(elem, target.nextSibling)`//

View File

@ -1,6 +1,6 @@
created: 20221110145611678 created: 20221110145611678
creator: Octt creator: Octt
modified: 20240119004231712 modified: 20240130124051881
modifier: Octt modifier: Octt
tags: Development $:/i18n:en Web tags: Development $:/i18n:en Web
title: JavaScript title: JavaScript
@ -39,13 +39,7 @@ title: JavaScript
* [[How to convert uint8 Array to base64 Encoded String?|https://stackoverflow.com/questions/12710001/how-to-convert-uint8-array-to-base64-encoded-string/66046176#66046176]] * [[How to convert uint8 Array to base64 Encoded String?|https://stackoverflow.com/questions/12710001/how-to-convert-uint8-array-to-base64-encoded-string/66046176#66046176]]
* [[What is the JavaScript version of sleep()?|https://stackoverflow.com/questions/951021/what-is-the-javascript-version-of-sleep#39914235]] --- `await new Promise(r => setTimeout(r, milliseconds));` * [[What is the JavaScript version of sleep()?|https://stackoverflow.com/questions/951021/what-is-the-javascript-version-of-sleep#39914235]] --- `await new Promise(r => setTimeout(r, milliseconds));`
* [[Convert letter to number in JavaScript|https://stackoverflow.com/questions/27877197/convert-letter-to-number-in-javascript]] (or parse a String that contains a number and happens to contain letters as a Number) --- <<MDNLink Web/JavaScript/Reference/Global_Objects/parseInt parseInt()>> * [[Convert letter to number in JavaScript|https://stackoverflow.com/questions/27877197/convert-letter-to-number-in-javascript]] (or parse a String that contains a number and happens to contain letters as a Number) --- <<MDNLink Web/JavaScript/Reference/Global_Objects/parseInt parseInt()>>
* [[How to get text from all descendents of an element (disregarding scripts)?|https://stackoverflow.com/questions/2532043/how-to-get-text-from-all-descendents-of-an-element-disregarding-scripts]]
* [[Converting HTML string into DOM elements?|https://stackoverflow.com/questions/3103962/converting-html-string-into-dom-elements#3104237]] --- `doc = new DOMParser().parseFromString(htmlString, 'text/html')`
* [[set doctype using javascript|https://stackoverflow.com/questions/21523487/set-doctype-using-javascript]]
* [[JavaScript Regex Replace Tutorial|https://www.javascripttutorial.net/javascript-regex/replace/]] * [[JavaScript Regex Replace Tutorial|https://www.javascripttutorial.net/javascript-regex/replace/]]
* [[Insert an element after another DOM element with JavaScript|https://attacomsian.com/blog/javascript-insert-element-after]] --- //`target.parentNode.insertBefore(elem, target.nextSibling)
`//
* [[Send POST data using XMLHttpRequest|https://stackoverflow.com/questions/9713058/send-post-data-using-xmlhttprequest]] * [[Send POST data using XMLHttpRequest|https://stackoverflow.com/questions/9713058/send-post-data-using-xmlhttprequest]]
* [[fetch API [and comparison with XMLHttpRequest]|https://davidwalsh.name/fetch]] * [[fetch API [and comparison with XMLHttpRequest]|https://davidwalsh.name/fetch]]
@ -57,7 +51,6 @@ title: JavaScript
* <<MDNLink Web/JavaScript/Reference/Global_Objects/Array/concat "Array.prototype.concat()">> --- //used to merge two or more arrays, does not change the existing arrays but instead returns a new one// * <<MDNLink Web/JavaScript/Reference/Global_Objects/Array/concat "Array.prototype.concat()">> --- //used to merge two or more arrays, does not change the existing arrays but instead returns a new one//
* [[XMLHttpRequest|https://www.w3schools.com/xml/xml_http.asp]] * [[XMLHttpRequest|https://www.w3schools.com/xml/xml_http.asp]]
** <<MDNLink Web/API/XMLHttpRequest/Synchronous_and_Asynchronous_Requests "Synchronous and asynchronous requests">> ** <<MDNLink Web/API/XMLHttpRequest/Synchronous_and_Asynchronous_Requests "Synchronous and asynchronous requests">>
* [[HTML DOM Events|https://www.w3schools.com/jsref/dom_obj_event.asp]]
* <<httpsL tixy.land>> --- //(t,i,x,y) => "creative code golfing"// --- <<[# Git"https://github.com/aemkei/tixy">> * <<httpsL tixy.land>> --- //(t,i,x,y) => "creative code golfing"// --- <<[# Git"https://github.com/aemkei/tixy">>

View File

@ -1,6 +1,6 @@
created: 20230129163138871 created: 20230129163138871
creator: Octt creator: Octt
modified: 20230301121014329 modified: 20240130163630610
modifier: Octt modifier: Octt
tags: $:/i18n:en Game Proprietary tags: $:/i18n:en Game Proprietary
title: Mirror's Edge title: Mirror's Edge

View File

@ -1,7 +1,8 @@
created: 20221202225134930 created: 20221202225134930
creator: Octt creator: Octt
modified: 20231112001653635 modified: 20240130152333354
modifier: Octt modifier: Octt
page-cover: https://raw.githubusercontent.com/misskey-dev/misskey/develop/assets/title_float.svg
tags: Fediverse tags: Fediverse
title: Misskey title: Misskey
@ -10,5 +11,4 @@ title: Misskey
[[Misskey|https://misskey-hub.net/en]] is an open, semi-decentralized social media platform. Decentralization is founded on the [[ActivityPub|ActivityPub]] protocol. [[Misskey|https://misskey-hub.net/en]] is an open, semi-decentralized social media platform. Decentralization is founded on the [[ActivityPub|ActivityPub]] protocol.
* [[https://github.com/misskey-dev]] * [[https://github.com/misskey-dev]]
* [[藍: Misskey Artworks (Miss Ai)|https://xn--931a.moe/]]
[img[https://raw.githubusercontent.com/misskey-dev/misskey/develop/assets/title_float.svg]]

View File

@ -1,6 +1,6 @@
created: 20230207185346822 created: 20230207185346822
creator: Octt creator: Octt
modified: 20231213001702461 modified: 20240130143901325
modifier: Octt modifier: Octt
tags: JavaScript tags: JavaScript
title: Node.js title: Node.js
@ -11,6 +11,7 @@ title: Node.js
* [[Node.js check if path is file or directory|https://stackoverflow.com/a/43701801]] * [[Node.js check if path is file or directory|https://stackoverflow.com/a/43701801]]
* [[How to copy files and folders in Node.js?|https://javascript.plainenglish.io/how-to-copy-files-and-folders-in-node-js-e37394fdf4c0]] --- //Multiple ways to copy files in Node.js// * [[How to copy files and folders in Node.js?|https://javascript.plainenglish.io/how-to-copy-files-and-folders-in-node-js-e37394fdf4c0]] --- //Multiple ways to copy files in Node.js//
* [[How To Get the MIME Type of a File in Node.js|https://dev.to/victrexx2002/how-to-get-the-mime-type-of-a-file-in-nodejs-p6c]]
; Docs ; Docs
: [[Node.js HTTP Module|https://www.w3schools.com/nodejs/nodejs_http.asp]] : [[Node.js HTTP Module|https://www.w3schools.com/nodejs/nodejs_http.asp]]

View File

@ -1,7 +1,8 @@
created: 20230227073605348 created: 20230227073605348
creator: Octt creator: Octt
modified: 20230227074002723 modified: 20240130121821679
modifier: Octt modifier: Octt
page-cover: https://source.unsplash.com/random?palette
tags: Color tags: Color
title: Palette title: Palette

View File

@ -1,7 +1,8 @@
created: 20221102121324531 created: 20221102121324531
creator: Octt creator: Octt
modified: 20231223211424877 modified: 20240130121451980
modifier: Octt modifier: Octt
page-cover: https://source.unsplash.com/random?retrogaming
tags: Emulation Retro $:/i18n:en Gaming tags: Emulation Retro $:/i18n:en Gaming
title: Retrogaming title: Retrogaming

View File

@ -1,17 +1,23 @@
created: 20230905232949767 created: 20230905232949767
creator: Octt creator: Octt
modified: 20240128180642888 modified: 20240130161941155
modifier: Octt modifier: Octt
tags: tags:
title: Static site generator title: Static site generator
<<^wikipediaframe "Static site generator">> <<^wikipediaframe "Static site generator">>
* <<linkdescgit Docusaurus "https://docusaurus.io" "Easy to maintain open source documentation websites." "https://github.com/facebook/docusaurus">> * <<linkdescgit Docusaurus "https://docusaurus.io" "Easy to maintain open source documentation websites." "https://github.com/facebook/docusaurus">> (website contains a Showcase section with many sites)
** [[Support Relative Path|https://github.com/facebook/docusaurus/issues/448#issuecomment-908777029]] ** [[Support Relative Path|https://github.com/facebook/docusaurus/issues/448#issuecomment-908777029]]
** [[Option to generate offline static HTML files usable without server|https://github.com/facebook/docusaurus/issues/3825]] ** [[Option to generate offline static HTML files usable without server|https://github.com/facebook/docusaurus/issues/3825]]
*** [[Docusaurus-Static|https://octospacc.gitlab.io/editocttrialTools/docusaurus-static/]] --- my hack for solving the problem *** [[Docusaurus-Static|https://octospacc.gitlab.io/editocttrialTools/docusaurus-static/]] --- my hack for solving the problem
** [[@easyops-cn/docusaurus-search-local|https://github.com/easyops-cn/docusaurus-search-local]] --- //Offline/local search for Docusaurus v2/v3// --- <<[# Demo"https://easyops-cn.github.io/docusaurus-search-local/">> ** [[@easyops-cn/docusaurus-search-local|https://github.com/easyops-cn/docusaurus-search-local]] --- //Offline/local search for Docusaurus v2/v3// --- <<[# Demo"https://easyops-cn.github.io/docusaurus-search-local/">>
** [[How to use math equations in Docusaurus|https://aloci.me/mathjax-katex/]] --- a KaTeX integration is officially aknowledged, unfortunately for my experience alignment and spacing of some symbols is broken; better to just inject MathJax
* [[mdBook|https://rust-lang.github.io/mdBook/]] --- //command line tool to create books with Markdown. It is ideal for creating product or API documentation, tutorials, course materials or anything that requires a clean, easily navigable and customizable presentation.// --- <<[# Git "https://github.com/rust-lang/mdBook">>
* <<linkdescgit Retype "https://retype.com" "ultra-high-performance ✨ static website generator that builds a website based on simple Markdown text files" "https://github.com/retypeapp">> --- seems catered towards docs/notes sites
* <<linkdescgit Hugo "https://gohugo.io" "The worlds fastest framework for building websites" "https://github.com/gohugoio/hugo">> * <<linkdescgit Hugo "https://gohugo.io" "The worlds fastest framework for building websites" "https://github.com/gohugoio/hugo">>
* [[Hexo|https://hexo.io/]] --- //A fast, simple & powerful blog framework// * [[Hexo|https://hexo.io/]] --- //A fast, simple & powerful blog framework//
@ -26,5 +32,3 @@ title: Static site generator
* [[Pelican|https://getpelican.com/]] * [[Pelican|https://getpelican.com/]]
** [[Eevee|https://kura.gg/eevee/]] --- //A Material Design theme for Pelican// ** [[Eevee|https://kura.gg/eevee/]] --- //A Material Design theme for Pelican//
* <<linkdescgit Retype "https://retype.com" "ultra-high-performance ✨ static website generator that builds a website based on simple Markdown text files" "https://github.com/retypeapp">> --- seems catered towards docs/notes sites

View File

@ -1,7 +1,7 @@
created: 20220924193842295 created: 20220924193842295
creator: Octt creator: Octt
icon: 🐈 icon: 🐈
modified: 20240130003932997 modified: 20240130141118491
modifier: Octt modifier: Octt
page-cover: https://source.unsplash.com/random/?computer-cat page-cover: https://source.unsplash.com/random/?computer-cat
tags: TiddlyWiki Wiki Zettelkasten Libre tags: TiddlyWiki Wiki Zettelkasten Libre
@ -52,6 +52,8 @@ It is a libre, JavaScript-rich, non-linear notebook, that can well adapt to anyo
!!! Misc !!! Misc
* [[TiddlyWiki Sharing Edition|https://tiddlywiki.com/share]] --- //allows users to create links to wikis with the special capability of containing embedded tiddlers that are loaded into the target wiki at startup//, all content encoded in the URL hash, by using the experimental Share plugin
* [[Fun with Feeds (a proof of concept RSS reader)|https://talk.tiddlywiki.org/t/fun-with-feeds-a-proof-of-concept-rss-reader/6490]] --- <<[# TiddlyWiki"https://saqimtiaz.github.io/sq-tw/temp/feedreader.html">> (use CTRL+Shift+L to switch to normal UI) * [[Fun with Feeds (a proof of concept RSS reader)|https://talk.tiddlywiki.org/t/fun-with-feeds-a-proof-of-concept-rss-reader/6490]] --- <<[# TiddlyWiki"https://saqimtiaz.github.io/sq-tw/temp/feedreader.html">> (use CTRL+Shift+L to switch to normal UI)
* [[Has anyone generated an RSS feed from TiddlyWiki?|https://talk.tiddlywiki.org/t/has-anyone-generated-an-rss-feed-from-tiddlywiki/966/25]] * [[Has anyone generated an RSS feed from TiddlyWiki?|https://talk.tiddlywiki.org/t/has-anyone-generated-an-rss-feed-from-tiddlywiki/966/25]]

View File

@ -1,7 +1,7 @@
created: 20230114161806791 created: 20230114161806791
creator: Octt creator: Octt
icon: 🎆 icon: 🎆
modified: 20230221195107270 modified: 20240130121733694
modifier: Octt modifier: Octt
page-cover: https://source.unsplash.com/random?web-design page-cover: https://source.unsplash.com/random?web-design
tags: Internet $:/i18n:en $:/Apps tags: Internet $:/i18n:en $:/Apps
@ -43,7 +43,9 @@ https://source.unsplash.com/{From}/[Size]/?[Keywords]
!!! ''Random Picture from the Gallery'' !!! ''Random Picture from the Gallery''
<a href="https://unsplash.com" rel="noopener noreferrer" target="_blank"><img class="Img90" src="https://source.unsplash.com/random"></a> <a href="https://unsplash.com" rel="noopener noreferrer" target="_blank">
<img class="Img90" src="https://source.unsplash.com/random">
</a>
<!-- <!--
<a href="https://source.unsplash.com/random?{{{[<now hh.mm.ss.XXX>]}}}">a</a> <a href="https://source.unsplash.com/random?{{{[<now hh.mm.ss.XXX>]}}}">a</a>

View File

@ -1,7 +1,8 @@
created: 20230206192842398 created: 20230206192842398
creator: Octt creator: Octt
modified: 20240119172421330 modified: 20240130121341180
modifier: Octt modifier: Octt
page-cover: https://source.unsplash.com/random?wordpress
tags: Web PHP CMS tags: Web PHP CMS
title: WordPress title: WordPress

View File

@ -1,6 +1,6 @@
created: 20230817233205916 created: 20230817233205916
creator: Octt creator: Octt
modified: 20240118233818349 modified: 20240130162351619
modifier: Octt modifier: Octt
tags: XML WIP tags: XML WIP
title: XPath title: XPath
@ -8,3 +8,5 @@ title: XPath
<<^wikipediaframe XPath>> <<^wikipediaframe XPath>>
* [[XPather|http://xpather.com/]] --- //XPath online real-time tester, evaluator and generator for XML & HTML// * [[XPather|http://xpather.com/]] --- //XPath online real-time tester, evaluator and generator for XML & HTML//
* [[Getting attribute using XPath|https://stackoverflow.com/questions/4531995/getting-attribute-using-xpath#4532084]] --- `query/to/element/`''`@attribute`''

View File

@ -3,7 +3,7 @@
.width: 33 .width: 33
created: 20240129095948486 created: 20240129095948486
creator: Octt creator: Octt
modified: 20240129234018781 modified: 20240130144632702
modifier: Octt modifier: Octt
tags: $:/Apps tags: $:/Apps
title: $:/Apps/MagicBox title: $:/Apps/MagicBox
@ -11,7 +11,7 @@ title: $:/Apps/MagicBox
\define SearchResults(fields) \define SearchResults(fields)
<$list filter="[!is[system]search:$fields${$:/temp/MagicBox!!.input}sort[title]limit[100]]"> <$list filter="[!is[system]search:$fields${$:/temp/MagicBox!!.input}sort[title]limit[100]]">
<div class=`MagicBoxApplet result ${[{$:/Apps/MagicBox!!.type}]}$` style=`background-image: url("${[{!!page-cover}]}$");`> <div class=`MagicBoxApplet result ${[{$:/Apps/MagicBox!!.type}]}$` style=`background-image: url("${[{!!page-cover}]}$");`>
<$button class="tc-btn-invisible"> <$button class="OcttKB-BorderFocus tc-btn-invisible">
<$action-sendmessage $message="tm-close-tiddler" $param=<<closeOnChoose>>/> <$action-sendmessage $message="tm-close-tiddler" $param=<<closeOnChoose>>/>
<$action-navigate $to={{!!title}}/> <$action-navigate $to={{!!title}}/>
<!--<$link to={{!!title}}>--> <!--<$link to={{!!title}}>-->
@ -35,13 +35,14 @@ title: $:/Apps/MagicBox
&nbsp; &nbsp;
<$range field=".width" min="19" max="49"/>{{!!.width}} <$range field=".width" min="19" max="49"/>{{!!.width}}
&nbsp; &nbsp;
<$edit-text tiddler="$:/temp/MagicBox" field=".input" class="_input" placeholder="Search..." tabindex="0"/> <$edit-text tiddler="$:/temp/MagicBox" field=".input" class="OcttKB-BorderFocus _input" placeholder="Search..." tabindex="0"/>
</div> </div>
<$action-sendmessage $message="tm-focus-selector" $param=".MagicBoxApplet.options > ._input"/> <$action-sendmessage $message="tm-focus-selector" $param=".MagicBoxApplet.options > ._input"/>
<<script script='try { <<script script='try {
document.querySelector(".MagicBoxApplet.options > ._input")?.focus(); var inputElem = document.querySelector("div.tc-tiddler-frame.tc-tiddler-view-frame[data-tiddler-title=\"$:/Apps/MagicBox/Overlay\"] .MagicBoxApplet.options > ._input, .MagicBoxApplet.options > ._input");
document.querySelector("div.tc-tiddler-frame.tc-tiddler-view-frame[data-tiddler-title=\"$:/Apps/MagicBox/Overlay\"] .MagicBoxApplet.options > ._input")?.focus(); inputElem?.focus();
inputElem?.select();
} catch(e) { $OcttKB.ErrAtLine(e) }'>><<script off>> } catch(e) { $OcttKB.ErrAtLine(e) }'>><<script off>>
<style> <style>
@ -74,12 +75,13 @@ title: $:/Apps/MagicBox
} }
.MagicBoxApplet.result pre { .MagicBoxApplet.result pre {
color: initial; color: initial;
max-height: 7em; max-height: 10em;
overflow-y: auto; overflow-y: auto;
margin: 0; margin: 0;
top: 1em; top: 0.5em;
position: relative; position: relative;
text-align: initial; text-align: initial;
font-size: small;
} }
.MagicBoxApplet.result h3 > a { .MagicBoxApplet.result h3 > a {
pointer-events: none; pointer-events: none;
@ -96,7 +98,7 @@ title: $:/Apps/MagicBox
</style> </style>
<$if value={{{ [{$:/temp/MagicBox!!.input}split[]count[]compare:integer:gteq[3]then[1]] }}}> <$if value={{{ [{$:/temp/MagicBox!!.input}split[]count[]compare:integer:gteq[3]then[1]] }}}>
<$if value={{{ [!is[system]search:title{$:/temp/MagicBox!!.input}then[]else[1]] }}}> <$if value={{{ [search:title{$:/temp/MagicBox!!.input}then[0]else[1]] }}}>
<$button> <$button>
<$action-sendmessage $message="tm-close-tiddler" $param=<<closeOnChoose>>/> <$action-sendmessage $message="tm-close-tiddler" $param=<<closeOnChoose>>/>
<$action-sendmessage $message="tm-new-tiddler" title={{$:/temp/MagicBox!!.input}} /> <$action-sendmessage $message="tm-new-tiddler" title={{$:/temp/MagicBox!!.input}} />

View File

@ -1,6 +1,6 @@
created: 20230112154615238 created: 20230112154615238
creator: Octt creator: Octt
modified: 20230813105657577 modified: 20240130140457967
modifier: Octt modifier: Octt
tags: $:/tags/Stylesheet tags: $:/tags/Stylesheet
title: $:/Styles/Embed title: $:/Styles/Embed
@ -48,7 +48,12 @@ label.Embed-Fullscreen-Btn {
input.Embed-Fullscreen-Btn:checked, input.Embed-Fullscreen-Btn:checked,
input.Embed-Fullscreen-Btn:checked ~ label, input.Embed-Fullscreen-Btn:checked ~ label,
input.Embed-Fullscreen-Btn:checked ~ iframe input.Embed-Fullscreen-Btn:checked ~ iframe
{ position: absolute; z-index: 99999; top: 2em/*0.64em*/; right: 0px; } {
position: absolute;/*fixed;*/
z-index: 99999;
top: 2em/*0.64em*/;
right: 0px;
}
input.Embed-Fullscreen-Btn:checked ~ iframe { input.Embed-Fullscreen-Btn:checked ~ iframe {
height: calc(100vh - 2em); height: calc(100vh - 2em);

View File

@ -1,6 +1,6 @@
created: 20230108190740128 created: 20230108190740128
creator: Octt creator: Octt
modified: 20240129121756874 modified: 20240130144331870
modifier: Octt modifier: Octt
tags: $:/tags/Stylesheet tags: $:/tags/Stylesheet
title: $:/Styles/Main title: $:/Styles/Main
@ -110,6 +110,7 @@ Div.View-Breadcrumbs
border-radius: 1em; border-radius: 1em;
} }
.OcttKB-BorderFocus:focus,
.tc-sidebar-search .tc-search .tc-popup-handle[type="search"]:focus { .tc-sidebar-search .tc-search .tc-popup-handle[type="search"]:focus {
border: 2px dashed <<--HeadingColor0>>; border: 2px dashed <<--HeadingColor0>>;
} }

View File

@ -1,5 +1,5 @@
created: 20240130004734701 created: 20240130172821991
current-tiddler: GettingStarted current-tiddler: GettingStarted
modified: 20240130004734701 modified: 20240130172821991
title: $:/HistoryList title: $:/HistoryList
type: application/json type: application/json

View File

@ -1,6 +1,6 @@
created: 20240129215525933 created: 20240130112855333
creator: Octt creator: Octt
list: list:
modified: 20240130004259074 modified: 20240130172625759
modifier: Octt modifier: Octt
title: $:/StoryList title: $:/StoryList

View File

@ -1,7 +1,5 @@
created: 20240128222912902 created: 20240128222912902
creator: Octt creator: Octt
modified: 20240129160709219 modified: 20240130163532498
modifier: Octt modifier: Octt
title: $:/config/Manager/Filter title: $:/config/Manager/Filter
MagicBox

View File

@ -1,8 +1,6 @@
created: 20211229144823211 created: 20211229144823211
creator: Octt creator: Octt
modified: 20231221142729068 modified: 20240130145028693
modifier: Octt modifier: Octt
tags: $:/km/keynav tags: $:/km/keynav
title: $:/config/shortcuts/StoryFirst title: $:/config/shortcuts/StoryFirst
shift-alt-Up

View File

@ -1,8 +1,6 @@
created: 20211229144841080 created: 20211229144841080
creator: Octt creator: Octt
modified: 20231221142732516 modified: 20240130145114687
modifier: Octt modifier: Octt
tags: $:/km/keynav tags: $:/km/keynav
title: $:/config/shortcuts/StoryLast title: $:/config/shortcuts/StoryLast
shift-alt-Down

View File

@ -1,8 +1,8 @@
created: 20211229144803909 created: 20211229144803909
creator: Octt creator: Octt
modified: 20231221142739629 modified: 20240130144815910
modifier: Octt modifier: Octt
tags: $:/km/keynav tags: $:/km/keynav
title: $:/config/shortcuts/StoryNext title: $:/config/shortcuts/StoryNext
shift-alt-Left shift-alt-Left shift-alt-Up

View File

@ -1,8 +1,8 @@
created: 20211229143921111 created: 20211229143921111
creator: Octt creator: Octt
modified: 20231221142743532 modified: 20240130144821891
modifier: Octt modifier: Octt
tags: $:/km/keynav tags: $:/km/keynav
title: $:/config/shortcuts/StoryPrev title: $:/config/shortcuts/StoryPrev
shift-alt-Right shift-alt-Right shift-alt-Down

View File

@ -1,6 +1,6 @@
created: 20220920140732083 created: 20220920140732083
creator: Octt creator: Octt
modified: 20240129223326435 modified: 20240130143619413
modifier: Octt modifier: Octt
title: $:/state/showeditpreview title: $:/state/showeditpreview

View File

@ -1,6 +1,6 @@
created: 20220920174307633 created: 20220920174307633
creator: Octt creator: Octt
modified: 20240129133637373 modified: 20240130140903653
modifier: Octt modifier: Octt
title: $:/state/sidebar title: $:/state/sidebar

View File

@ -0,0 +1,7 @@
created: 20240130163352898
creator: Octt
modified: 20240130163913678
modifier: Octt
title: $:/state/tab--1697244606
$:/core/ui/TiddlerInfo/Tools

View File

@ -1,7 +1,7 @@
created: 20231107221030108 created: 20231107221030108
creator: Octt creator: Octt
modified: 20240129160536894 modified: 20240130163540682
modifier: Octt modifier: Octt
title: $:/state/tab--23637530 title: $:/state/tab--23637530
$:/plugins/kookma/commander/snr/ui $:/plugins/kookma/commander/field/ui

View File

@ -1,7 +1,7 @@
created: 20220920090405977 created: 20220920090405977
creator: Octt creator: Octt
modified: 20240129230306596 modified: 20240130144710127
modifier: Octt modifier: Octt
title: $:/state/tab-1749438307 title: $:/state/tab-1749438307
$:/core/ui/ControlPanel/Appearance $:/core/ui/ControlPanel/KeyboardShortcuts

View File

@ -0,0 +1,7 @@
created: 20240130163555079
creator: Octt
modified: 20240130163943321
modifier: Octt
title: $:/state/tab-1964634701
$:/plugins/kookma/commander/field/uicomp/add-fields

View File

@ -1,7 +1,7 @@
created: 20230203222356189 created: 20230203222356189
creator: Octt creator: Octt
modified: 20240129002728746 modified: 20240130163630607
modifier: Octt modifier: Octt
title: $:/state/commander/log-tiddler title: $:/state/commander/log-tiddler
$:/temp/commander/logs/tid-1 $:/temp/commander/logs/tid-2

View File

@ -0,0 +1,7 @@
created: 20240130163644030
creator: Octt
modified: 20240130163644030
modifier: Octt
title: $:/state/commander/reveal/$:/plugins/kookma/commander/log/ui--23637530
open

View File

@ -1,6 +1,6 @@
created: 20231221120659464 created: 20231221120659464
creator: Octt creator: Octt
modified: 20231221142747652 modified: 20240130145117719
modifier: Octt modifier: Octt
title: $:/state/dropdown/keyboardshortcut/StoryFirst--502179266 title: $:/state/dropdown/keyboardshortcut/StoryFirst--502179266

View File

@ -1,6 +1,6 @@
created: 20231221120659032 created: 20231221120659032
creator: Octt creator: Octt
modified: 20231221142745564 modified: 20240130145115872
modifier: Octt modifier: Octt
title: $:/state/dropdown/keyboardshortcut/StoryLast--502179266 title: $:/state/dropdown/keyboardshortcut/StoryLast--502179266

View File

@ -1,6 +1,6 @@
created: 20231221120658624 created: 20231221120658624
creator: Octt creator: Octt
modified: 20231221142744876 modified: 20240130144850086
modifier: Octt modifier: Octt
title: $:/state/dropdown/keyboardshortcut/StoryNext--502179266 title: $:/state/dropdown/keyboardshortcut/StoryNext--502179266

View File

@ -1,6 +1,6 @@
created: 20231221120658160 created: 20231221120658160
creator: Octt creator: Octt
modified: 20231221142746236 modified: 20240130144851341
modifier: Octt modifier: Octt
title: $:/state/dropdown/keyboardshortcut/StoryPrev--502179266 title: $:/state/dropdown/keyboardshortcut/StoryPrev--502179266

View File

@ -1,6 +1,6 @@
created: 20220920092307479 created: 20220920092307479
creator: Octt creator: Octt
modified: 20240129223648813 modified: 20240130172746108
modifier: Octt modifier: Octt
title: $:/state/tab/sidebar--595412856 title: $:/state/tab/sidebar--595412856

View File

@ -1,6 +1,6 @@
created: 20230817233308156 created: 20230817233308156
creator: Octt creator: Octt
modified: 20240129215819354 modified: 20240130172629197
modifier: Octt modifier: Octt
title: $:/state/toc/$:/ToC-$:/Tools--1697730578 title: $:/state/toc/$:/ToC-$:/Tools--1697730578