Saved by TiddlyWiki

This commit is contained in:
OcttKB-TiddlyWiki-Sync
2022-11-07 20:04:42 +00:00
parent b0a58d1484
commit 3748801326

View File

@ -263,7 +263,7 @@ Error message and password prompt
{"created":"20221105114920520","text":"''Base64'' is a 8-bit-binary to text data encoding scheme.\n\nDue to the format using a character set of 64 characters, representable by 6 bits, a minimal b64 block is ''24 bits'' large (lcm(8,6)), which is 3 binary bytes, or 4 b64 text characters.","tags":"i18n:en","title":"Base64:en","modified":"20221105120759433"},
{"created":"20220923190200484","text":"''BitTorrent'' is an open [[peer-to-peer|peer-to-peer:en]] file sharing protocol. It is expecially common among the [[free sharing]] community.\n\nIts only requirement for each user is a client application, meaning that efficiently sharing with BitTorrent is effectively free, since a beefy server isn't needed to make the content circulate.\n\nFor this reason, the protocol is most commonly used to share large files that have a lot of people requesting them, such as movies, operating systems, and videogames.\n\nThis kind of information would be usually expensive to share using a traditional client-server infrastructure, but with BitTorrent every client can seed (send) data to other requesting clients, exponentially optimizing delivery.","tags":"Internet BitTorrent P2P i18n:en","title":"BitTorrent:en","modified":"20220926115016291"},
{"created":"20220925131851817","text":"!! Creative Commons\n\n!!! ''Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)''\n\nThis is a human-readable summary of (and not a substitute for) the [[license|https://creativecommons.org/licenses/by-sa/4.0/legalcode]]. \n\n\u003Cdetails>\n\u003Csummary>Disclaimer\u003C/summary>\n\u003Cp>This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.\u003C/p>\n\n\u003Cp>Creative Commons is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.\u003C/p>\n\u003C/details>\n\n!!!'' You are free to:''\n\n''Share'' — copy and redistribute the material in any medium or format\n\n''Adapt'' — remix, transform, and build upon the material\nfor any purpose, even commercially.\n\nThe licensor cannot revoke these freedoms as long as you follow the license terms.\n\n!!! ''Under the following terms:''\n\n''Attribution'' — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.\n\n''ShareAlike'' — If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original.\n\n''No additional restrictions'' — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.\n\n!!! ''Notices:''\nYou do not have to comply with the license for elements of the material in the public domain or where your use is permitted by an applicable exception or limitation.\n\nNo warranties are given. The license may not give you all of the permissions necessary for your intended use. For example, other rights such as publicity, privacy, or moral rights may limit how you use the material.","title":"CC BY-SA 4.0:en","modified":"20220926115015643","tags":"i18n:en"},
{"created":"20221104154013306","text":"\u003Ciframe\nstyle=\"Margin:0px; Padding:0px; Width:100vw; Height:100vh;\"\nframeBorder=\"0\"\nplaceholder=\"test\"\nsrc='data:text/html;utf8,\n\u003C!--\u003CEXTRACT:Dashboard.html>--->\n\u003C!DOCTYPE html>\n\u003Chtml>\n\u003Chead>\n\u003Cstyle>\nBody {\n\tText-Align: Center;\n\tUser-Select: None;\n\tFont-Family: Sans-Serif;\n}\n\nA {\n\tColor: Black;\n\tText-Decoration: None;\n}\nUl {\n\tText-Align: Left;\n\tList-Style: None;\n}\nLi {\n\tLine-Height: 1.75em;\n\tFont-Size: Larger;\n}\n\n.TextLineImg {\n\tWidth: 1em;\n\tHeight: 1em;\n\tVertical-Align: Text-Top;\n\tPadding-Left: 8px;\n\tPadding-Right: 8px;\n}\n\n.Margin4 {\n\tMargin: 4px;\n}\n\n.MainDiv {\n\tWidth: 100vw;\n\tHeight: 100wh;\n}\n\u003C/style>\n\u003C/head>\n\u003Cbody>\n\u003Ch2 id=\"ClockTime\" class=\"Margin4\">\u003C/h2>\n\u003Cp id=\"ClockDate\" class=\"Margin4\">\u003C/p>\n\u003Chr>\n\u003Cdiv id=\"MainDiv\">\u003C/div>\n\u003Cscript>\n/* https://stackoverflow.com/a/2998874 */\nfunction ZeroPad(Num, Pad) {\n\tvar Zero = Pad - Num.toString().length + 1;\n\treturn Array(+(Zero > 0 && Zero)).join(\"0\") + Num;\n};\nfunction TimePad(Num) {\n\treturn ZeroPad(Num, 2);\n};\n\n/*\nconst URLs = [\n\t\"whoogle-eur.herokuapp.com\",\n\t\"invidious.nerdvpn.de\",\n];\n*/\nlet Bookmarks = `\nhttps://github.com GitHub;\nhttps://gitlab.com GitLab;\nhttps://invidious.nerdvpn.de Invidious;\nhttps://app.standardnotes.com Standard Notes;\nhttp://octt.ddns.net:8036 Wallabag;\nhttps://whoogle-eur.herokuapp.com Whoogle;\nhttps://www.wikipedia.org Wikipedia;\nhttps://mail.yahoo.com Yahoo Mail;\n`;\n\nfunction SetTime() {\n\tlet Time = new Date();\n\tlet Y = Time.getFullYear();\n\tlet M = TimePad(Time.getMonth() + 1);\n\tlet D = TimePad(Time.getDate()); /* Month day */\n\tlet N = Time.getDay(); /* Week day */\n\tlet h = TimePad(Time.getHours());\n\tlet m = TimePad(Time.getMinutes());\n\tlet s = TimePad(Time.getSeconds());\n\t/*\n\th = h \u003C 10 ? \"0\"+h : h;\n\tm = m \u003C 10 ? \"0\"+m : m;\n\ts = s \u003C 10 ? \"0\"+s : s;\n\t*/\n\tClockTime.textContent = h + \":\" + m + \":\" + s;\n\tClockDate.textContent = Y + \"-\" + M + \"-\" + D;\n};\n\nfunction LoadBookmarks() {\n\tlet UlURLs = \"\";\n\tlet List = Bookmarks.trim().split(\";\");\n\tfor (let i=0; i\u003CList.length; i++) {\n\t\tlet Item = List[i].trim();\n\t\tif (Item) {\n\t\t\tlet Split = Item.indexOf(\" \");\n\t\t\tlet Href = Item.substring(0, Split);\n\t\t\tlet Name = Item.substring(Split+1);\n\t\t\tUlURLs += \"\u003Cli>\u003Ca href=\\\"\" + Href + \"\\\">\u003Cimg class=\\\"TextLineImg\\\" src=\\\"\" + Href + \"/favicon.ico\" + \"\\\">\" + Name + \"\u003C/a>\u003C/li>\";\n\t\t};\n\t};\n/*\nfor (let i=0; i\u003CURLs.length; i++) {\n\tlet URL = URLs[i];\n\tif (!URL.startsWith(\"http://\") && !URL.startsWith(\"https://\")) {\n\t\tURL = \"https://\" + URL;\n\t};\n\tUlURLs += \"\u003Cli>\u003Cimg src=\\\"https://icons.duckduckgo.com/ip3/\" + URL + \".ico\" + \"\\\">\u003Ca href=\\\"\" + URL + \"\\\">\" + URL + \"\u003C/a>\u003C/li>\";\n};\n*/\n\tMainDiv.innerHTML += \"\u003Cul>\" + UlURLs + \"\u003C/ul>\";\n};\n\nfunction ClockDateToggle() {\n\tClockDate.hidden = !ClockDate.hidden;\n};\nClockTime.onclick = ClockDateToggle;\nClockDate.onclick = ClockDateToggle;\n\nsetInterval(() => {\n\tSetTime();\n}, 150);\n\nLoadBookmarks();\n\u003C/script>\n\u003C/body>\n\u003C/html>\n\u003C!--\u003C/EXTRACT>--->\n'>\u003C/iframe>","tags":"","title":"Dashboard.html","modified":"20221107193947209"},
{"created":"20221104154013306","text":"\u003Ciframe\nstyle=\"Margin:0px; Padding:0px; Width:100vw; Height:100vh;\"\nframeBorder=\"0\"\nplaceholder=\"test\"\nsrc='data:text/html;utf8,\n\u003C!--\u003CEXTRACT:Dashboard.html>--->\n\u003C!DOCTYPE html>\n\u003Chtml>\n\u003Chead>\n\u003Cstyle>\nBody {\n\tText-Align: Center;\n\tUser-Select: None;\n\tFont-Family: Sans-Serif;\n}\n\nA {\n\tColor: Black;\n\tText-Decoration: None;\n}\nUl {\n\tText-Align: Left;\n\tList-Style: None;\n}\nLi {\n\tLine-Height: 1.75em;\n\tFont-Size: Larger;\n}\n\n.TextLineImg {\n\tWidth: 1em;\n\tHeight: 1em;\n\tVertical-Align: Text-Top;\n\tPadding-Left: 8px;\n\tPadding-Right: 8px;\n}\n\n.Margin4 {\n\tMargin: 4px;\n}\n\n.MainDiv {\n\tWidth: 100vw;\n\tHeight: 100wh;\n}\n\u003C/style>\n\u003C/head>\n\u003Cbody>\n\u003Ch2 id=\"ClockTime\" class=\"Margin4\">\u003C/h2>\n\u003Cp id=\"ClockDate\" class=\"Margin4\">\u003C/p>\n\u003Chr>\n\u003Cinput type=\"text\" id=\"Search\">\u003Cbutton>Search\u003C/button>\n\u003Cul id=\"BookmarksList\">\u003C/ul>\n\u003C!--\u003Cdiv id=\"MainDiv\">\u003C/div>--->\n\u003Cscript>\n/* https://stackoverflow.com/a/2998874 */\nfunction ZeroPad(Num, Pad) {\n\tvar Zero = Pad - Num.toString().length + 1;\n\treturn Array(+(Zero > 0 && Zero)).join(\"0\") + Num;\n};\nfunction TimePad(Num) {\n\treturn ZeroPad(Num, 2);\n};\n\n/*\nconst URLs = [\n\t\"whoogle-eur.herokuapp.com\",\n\t\"invidious.nerdvpn.de\",\n];\n*/\nlet Bookmarks = `\nhttps://cryptpad.devol.it/drive CryptPad;\nhttps://www.deepl.com/translator DeepL;\nhttps://gitea.it Gitea;\nhttps://github.com GitHub;\nhttps://gitlab.com GitLab;\nhttps://invidious.nerdvpn.de Invidious;\nhttps://librespeed.org LibreSpeed;\nhttps://odysee.com Odysee;\nhttps://www.openstreetmap.org OpenStreetMap;\nhttps://app.standardnotes.com Standard Notes;\nhttps://temp-mail.org/en Temp Mail;\nhttps://voidlinux.org/packages Void Linux/Packages;\nhttp://octt.ddns.net:8036 Wallabag;\nhttps://whoogle-eur.herokuapp.com Whoogle;\nhttps://www.wikipedia.org Wikipedia;\nhttps://mail.yahoo.com Yahoo Mail;\n`;\n\nfunction SetTime() {\n\tlet Time = new Date();\n\tlet Y = Time.getFullYear();\n\tlet M = TimePad(Time.getMonth() + 1);\n\tlet D = TimePad(Time.getDate()); /* Month day */\n\tlet N = Time.getDay(); /* Week day */\n\tlet h = TimePad(Time.getHours());\n\tlet m = TimePad(Time.getMinutes());\n\tlet s = TimePad(Time.getSeconds());\n\t/*\n\th = h \u003C 10 ? \"0\"+h : h;\n\tm = m \u003C 10 ? \"0\"+m : m;\n\ts = s \u003C 10 ? \"0\"+s : s;\n\t*/\n\tClockTime.textContent = h + \":\" + m + \":\" + s;\n\tClockDate.textContent = Y + \"-\" + M + \"-\" + D;\n};\n\nfunction LoadBookmarks() {\n\tlet UlURLs = \"\";\n\tlet List = Bookmarks.trim().split(\";\");\n\tfor (let i=0; i\u003CList.length; i++) {\n\t\tlet Item = List[i].trim();\n\t\tif (Item) {\n\t\t\tlet Split = Item.indexOf(\" \");\n\t\t\tlet Href = Item.substring(0, Split);\n\t\t\tlet Name = Item.substring(Split+1);\n\t\t\t/*UlURLs += \"\u003Cli>\u003Ca href=\\\"\" + Href + \"\\\">\u003Cimg class=\\\"TextLineImg\\\" src=\\\"\" + Href + \"/favicon.ico\" + \"\\\">\" + Name + \"\u003C/a>\u003C/li>\";*/\n\t\t\tUlURLs += \"\u003Cli>\u003Ca href=\\\"\" + Href + \"\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">\u003Cimg class=\\\"TextLineImg\\\" src=\\\"https://icons.duckduckgo.com/ip3/\" + Href.replace(/^https?:\\/\\//, \"\").split(\"/\")[0] + \".ico\" + \"\\\">\" + Name + \"\u003C/a>\u003C/li>\";\n\t\t};\n\t};\n/*\nfor (let i=0; i\u003CURLs.length; i++) {\n\tlet URL = URLs[i];\n\tif (!URL.startsWith(\"http://\") && !URL.startsWith(\"https://\")) {\n\t\tURL = \"https://\" + URL;\n\t};\n\tUlURLs += \"\u003Cli>\u003Cimg src=\\\"https://icons.duckduckgo.com/ip3/\" + URL + \".ico\" + \"\\\">\u003Ca href=\\\"\" + URL + \"\\\">\" + URL + \"\u003C/a>\u003C/li>\";\n};\n*/\n\t/*MainDiv.innerHTML += \"\u003Cul>\" + UlURLs + \"\u003C/ul>\";*/\n\tBookmarksList.innerHTML += UlURLs;\n};\n\nfunction ClockDateToggle() {\n\tClockDate.hidden = !ClockDate.hidden;\n};\nClockTime.onclick = ClockDateToggle;\nClockDate.onclick = ClockDateToggle;\n\nsetInterval(() => {\n\tSetTime();\n}, 150);\n\nLoadBookmarks();\n\u003C/script>\n\u003C/body>\n\u003C/html>\n\u003C!--\u003C/EXTRACT>--->\n'>\u003C/iframe>","tags":"","title":"Dashboard.html","modified":"20221107200421535"},
{"created":"20220922204615800","title":"English","icon":"$:/languages/en-GB/icon","modified":"20220922204615800"},
{"created":"20221008141221923","text":"!! Flags\n\n* Scaling: `-vf scale=${w}:${h}`\n\n* Framerate: `-r ${r}`, `-framerate ${r}` (//use both because one sometimes doesn't work//)\n\n!!! Audio/Video Flags\n\n//These are specified as `-flag:a` or `-flag:v`.//\n\n* Bitrate: `-b:{a|v} ${n}{k|m|...}`\n\n* Codec: `-c:{a|v} ${codec}`\n\n!!! Audio Flags\n\n* Audio channels: `-ac ${n}`\n\n!! Codecs List\n\n!!! Audio Codecs\n\n* libopus\n\n!!! Video Codecs\n\n* h263, h264, libx265\n* libvpx-vp8, libvpx-vp9\n* libaom-av1\n\n!! Tips\n\n* [[Trim Video|https://shotstack.io/learn/use-ffmpeg-to-trim-video]]\n* [[Image+Audio -> Video|https://superuser.com/questions/1041816/combine-one-image-one-audio-file-to-make-one-video-using-ffmpeg]]","tags":"i18n:en Snippets","title":"FFmpeg/Snippets","modified":"20221105125724506"},
{"created":"20220923195125955","text":"''Free sharing'' is a philosophy founded on the belief that: every kind of information that is created to be publicly available has to be shareable by anyone without any restrictions.\n\nThe reasoning behind this philosophy is that the whole of humanity can benefit, in the long run, if each person creating works of culture puts aside their egoistic desires of wealth and power, and instead decides to explicitly allow anyone to freely share the works in question.\n\nPeople who believe in free sharing not only often choose to leave freedoom of sharing what they create to the world, but also engage in mutual exchanges of public information that is officially not free (usually, hidden behind paywalls and/or licenses that don't allow redistribution).\n\nThis last kind of behaviour is not to be confused with [[computer piracy]], which is a term indicating the unauthorized redistribution of digital content with the main scope of monetary gain, not the spirit of sharing or bettering humanity.","tags":"i18n:en","title":"Free sharing","modified":"20220926115016122"},