diff --git a/Wiki-OcttKB/tiddlers/Normal/JavaScript/_Libraries.tid b/Wiki-OcttKB/tiddlers/Normal/JavaScript/_Libraries.tid index b0555f0..5cb9e54 100644 --- a/Wiki-OcttKB/tiddlers/Normal/JavaScript/_Libraries.tid +++ b/Wiki-OcttKB/tiddlers/Normal/JavaScript/_Libraries.tid @@ -1,6 +1,6 @@ created: 20230429182925276 creator: Octt -modified: 20240128184623406 +modified: 20240130163041628 modifier: Octt tags: 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">> * [[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) }` -* [[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'' * [[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]]">> -* [[Lodash|https://lodash.com/]] - More modern fork of Underscore, useful for working with data objects - <<[ "[[Git|https://github.com/lodash]]">> +** [[cheerio|https://cheerio.js.org/]] --- //The fast, flexible & elegant library for parsing and manipulating HTML and XML//, slimmer substitute for jQuery, works on Node +* [[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">> !!! ''Polyfills'' diff --git a/Wiki-OcttKB/tiddlers/Normal/OcttKB/_Data.tid b/Wiki-OcttKB/tiddlers/Normal/OcttKB/_Data.tid index 31fd005..6ee6ec1 100644 --- a/Wiki-OcttKB/tiddlers/Normal/OcttKB/_Data.tid +++ b/Wiki-OcttKB/tiddlers/Normal/OcttKB/_Data.tid @@ -1,7 +1,8 @@ created: 20230109220804304 creator: Octt -modified: 20240129095852920 +modified: 20240130121203024 modifier: Octt +page-cover: https://source.unsplash.com/random?data tags: OcttKB $:/i18n:en title: OcttKB/Data diff --git a/Wiki-OcttKB/tiddlers/Normal/Web/_Development.tid b/Wiki-OcttKB/tiddlers/Normal/Web/_Development.tid index 1cd4b78..2c6ba1d 100644 --- a/Wiki-OcttKB/tiddlers/Normal/Web/_Development.tid +++ b/Wiki-OcttKB/tiddlers/Normal/Web/_Development.tid @@ -1,12 +1,14 @@ created: 20230221204801305 creator: Octt -modified: 20240119001119592 +modified: 20240130151210109 modifier: Octt tags: title: Web/Development <<^WikipediaFrame "Web development">> +* [[Ravelrumba - Blogging design and front end development|https://www.ravelrumba.com/]] + !!! ''References'' ; 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]] ** customize video quality by changing codec: <> +* [[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]] ** [[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]] @@ -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]] ** [[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]] -** [[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/]] *** [[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]] + +* [[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/]]" diff --git a/Wiki-OcttKB/tiddlers/Normal/_Animal Crossing.tid b/Wiki-OcttKB/tiddlers/Normal/_Animal Crossing.tid index da0db37..d72ae26 100644 --- a/Wiki-OcttKB/tiddlers/Normal/_Animal Crossing.tid +++ b/Wiki-OcttKB/tiddlers/Normal/_Animal Crossing.tid @@ -1,7 +1,7 @@ created: 20230110225425199 creator: Octt icon: πŸƒ -modified: 20231111000325649 +modified: 20240130172729377 modifier: Octt page-cover: https://source.unsplash.com/random?Animal_Crossing 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]] * [[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">> +* [[[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 :
Animali Crostini πŸƒ (Animal Crossing Moments) diff --git a/Wiki-OcttKB/tiddlers/Normal/_CSS.tid b/Wiki-OcttKB/tiddlers/Normal/_CSS.tid index 74fbd05..72af936 100644 --- a/Wiki-OcttKB/tiddlers/Normal/_CSS.tid +++ b/Wiki-OcttKB/tiddlers/Normal/_CSS.tid @@ -1,7 +1,7 @@ created: 20230209150101862 creator: Octt icon: πŸ’… -modified: 20240130004423944 +modified: 20240130154503348 modifier: Octt page-cover: https://images.unsplash.com/photo-1523437113738-bbd3cc89fb19 tags: Web Frontend @@ -9,6 +9,9 @@ title: CSS <<^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'' * [[CSS Attribute Selectors|https://www.w3schools.com/css/css_attribute_selectors.asp]] @@ -28,8 +31,11 @@ title: CSS !!! ''Amazing'' * [[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]] * [[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]] -* [[25 CSS Paper Effects|https://freefrontend.com/css-paper-effects/]] -* [[Reusable CSS "Sticker" Effect|https://dev.to/5t3ph/reusable-css-sticker-effect-44lc]] +* [[CSS-only Calendar App Concept|https://codepen.io/davidkpiano/pen/wBGjMr]] diff --git a/Wiki-OcttKB/tiddlers/Normal/_Calculator.tid b/Wiki-OcttKB/tiddlers/Normal/_Calculator.tid index d975a25..696fae9 100644 --- a/Wiki-OcttKB/tiddlers/Normal/_Calculator.tid +++ b/Wiki-OcttKB/tiddlers/Normal/_Calculator.tid @@ -1,7 +1,8 @@ created: 20230215213812453 creator: Octt -modified: 20230217143401588 +modified: 20240130121513294 modifier: Octt +page-cover: https://source.unsplash.com/random?calculator title: Calculator <<^WikipediaFrame Calculator en>> diff --git a/Wiki-OcttKB/tiddlers/Normal/_Database.tid b/Wiki-OcttKB/tiddlers/Normal/_Database.tid index 860502c..79eaf35 100644 --- a/Wiki-OcttKB/tiddlers/Normal/_Database.tid +++ b/Wiki-OcttKB/tiddlers/Normal/_Database.tid @@ -1,7 +1,8 @@ created: 20231223234312578 creator: Octt -modified: 20240119162211752 +modified: 20240130143749965 modifier: Octt +page-cover: https://source.unsplash.com/random?database title: 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` * [[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` diff --git a/Wiki-OcttKB/tiddlers/Normal/_Emulation.tid b/Wiki-OcttKB/tiddlers/Normal/_Emulation.tid index c8296df..cc8f318 100644 --- a/Wiki-OcttKB/tiddlers/Normal/_Emulation.tid +++ b/Wiki-OcttKB/tiddlers/Normal/_Emulation.tid @@ -1,7 +1,8 @@ created: 20230116211647194 creator: Octt -modified: 20231212234134224 +modified: 20240130121545770 modifier: Octt +page-cover: https://source.unsplash.com/random?emulation tags: $:/i18n:en title: Emulation diff --git a/Wiki-OcttKB/tiddlers/Normal/_Fediverse.tid b/Wiki-OcttKB/tiddlers/Normal/_Fediverse.tid index bfb8a03..127f9ea 100644 --- a/Wiki-OcttKB/tiddlers/Normal/_Fediverse.tid +++ b/Wiki-OcttKB/tiddlers/Normal/_Fediverse.tid @@ -1,8 +1,9 @@ created: 20230114124144464 creator: Octt icon: -modified: 20231223123321502 +modified: 20240130121405070 modifier: Octt +page-cover: https://source.unsplash.com/random?fediverse tags: [[Social network]] title: Fediverse diff --git a/Wiki-OcttKB/tiddlers/Normal/_Gaming console.tid b/Wiki-OcttKB/tiddlers/Normal/_Gaming console.tid index 1f5c1b1..adb39f4 100644 --- a/Wiki-OcttKB/tiddlers/Normal/_Gaming console.tid +++ b/Wiki-OcttKB/tiddlers/Normal/_Gaming console.tid @@ -1,7 +1,8 @@ created: 20231119004553704 creator: Octt -modified: 20240110011644718 +modified: 20240130121432753 modifier: Octt +page-cover: https://source.unsplash.com/random?gaming-console tags: Gaming title: Gaming console diff --git a/Wiki-OcttKB/tiddlers/Normal/_JSON.tid b/Wiki-OcttKB/tiddlers/Normal/_JSON.tid index c0d5916..c3fa721 100644 --- a/Wiki-OcttKB/tiddlers/Normal/_JSON.tid +++ b/Wiki-OcttKB/tiddlers/Normal/_JSON.tid @@ -1,11 +1,13 @@ created: 20230202225750547 creator: Octt -modified: 20230429224405395 +modified: 20240130162618573 modifier: Octt tags: $:/i18n:en title: JSON <<^WikipediaFrame JSON en>> -* [[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]]">> +* [[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]]">> + +* [[XSLT equivalent for JSON|https://stackoverflow.com/questions/1618038/xslt-equivalent-for-json]] diff --git a/Wiki-OcttKB/tiddlers/Normal/_JavaScript HTML DOM API.tid b/Wiki-OcttKB/tiddlers/Normal/_JavaScript HTML DOM API.tid new file mode 100644 index 0000000..c3eaa90 --- /dev/null +++ b/Wiki-OcttKB/tiddlers/Normal/_JavaScript HTML DOM API.tid @@ -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">>>HTMLInputElement...
+ +* select() --- //selects all the text in a `