var notesJsonVar =
[
{
"id": "83",
"text": "Neocities site still using an image I deleted from the file : r\/neocities",
"text2": "",
"text3": "",
"url": "https:\/\/www.reddit.com\/r\/neocities\/comments\/11fuvst\/neocities_site_still_using_an_image_i_deleted\/",
"tag": "#fix #cache",
"time": 1731779546,
"rightFooter": "id<\/a>"
},
{
"id": "82",
"text": "Give users options \u00a0|\u00a0 Chrome Extensions \u00a0|\u00a0 Chrome for Developers",
"text2": "===\r\nSetting the extension as a link or page instead of a tab: \"open_in_tab\": false\r\n\r\n{\r\n \"name\": \"My extension\",\r\n ...\r\n \"options_ui\": {\r\n \"page\": \"options.html\",\r\n \"open_in_tab\": false\r\n },\r\n ...\r\n}",
"text3": "",
"url": "https:\/\/developer.chrome.com\/docs\/extensions\/develop\/ui\/options-page",
"tag": "#fix #option #extension",
"time": 1730966751,
"rightFooter": "id<\/a>"
},
{
"id": "81",
"text": "encodeURIComponent() - JavaScript | MDN",
"text2": "===\r\n\/\/ Encodes characters such as ?,=,\/,&,:\r\nconsole.log(`?x=${encodeURIComponent('test?')}`);\r\n\/\/ Expected output: \"?x=test?\"",
"text3": "",
"url": "https:\/\/developer.mozilla.org\/en-US\/docs\/Web\/JavaScript\/Reference\/Global_Objects\/encodeURIComponent",
"tag": "#JavaScript #JS",
"time": 1729878710,
"rightFooter": "id<\/a>"
},
{
"id": "80",
"text": "encodeURI() - JavaScript | MDN",
"text2": "===\r\nconst uri = 'https:\/\/mozilla.org\/?x=\u0448\u0435\u043b\u043b\u044b';\r\nconst encoded = encodeURI(uri);\r\nconsole.log(encoded);\r\n\/\/ Expected output: \"https:\/\/mozilla.org\/?x=\u0448\u0435\u043b\u043b\u044b\"\r\n\r\ntry {\r\n console.log(decodeURI(encoded));\r\n \/\/ Expected output: \"https:\/\/mozilla.org\/?x=\u0448\u0435\u043b\u043b\u044b\"\r\n} catch (e) {\r\n \/\/ Catches a malformed URI\r\n console.error(e);\r\n}",
"text3": "",
"url": "https:\/\/developer.mozilla.org\/en-US\/docs\/Web\/JavaScript\/Reference\/Global_Objects\/encodeURI",
"tag": "#JavaScript #JS",
"time": 1729878611,
"rightFooter": "id<\/a>"
},
{
"id": "79",
"text": "String.prototype.toLowerCase() - JavaScript | MDN",
"text2": "===\r\nconst sentence = 'The quick brown fox jumps over the lazy dog.';\r\n\r\nconsole.log(sentence.toLowerCase());\r\n\/\/ Expected output: \"the quick brown fox jumps over the lazy dog.\"",
"text3": "",
"url": "https:\/\/developer.mozilla.org\/en-US\/docs\/Web\/JavaScript\/Reference\/Global_Objects\/String\/toLowerCase",
"tag": "#JavaScript #JS",
"time": 1729810598,
"rightFooter": "id<\/a>"
},
{
"id": "78",
"text": "Element: insertAdjacentHTML() method - Web APIs | MDN",
"text2": "===\r\ninsertAdjacentHTML(position, text)\r\n===\r\ndocument.querySelector(\"#test\").insertAdjacentHTML(\"afterend\", `test`);\r\ndocument.head.insertAdjacentHTML(\"beforeend\", `