for (const elm of [...document.querySelectorAll(".s-item")]) {if (elm.querySelector(".s-item__info > .s-item__details > .s-item__detail > .s-item__shipping") == null) elm.style.display="none"} |
// Only using native browser features (no jQuery). | |
// Uses `fetch`, `DOMParser` and `querySelectorAll`. | |
const getTitle = (url) => { | |
return fetch(url) | |
.then((response) => response.text()) | |
.then((html) => { | |
const doc = new DOMParser().parseFromString(html, "text/html"); | |
const title = doc.querySelectorAll('title')[0]; | |
return `${url}, ${title.innerText}`; |
- Gimel Studio https://github.com/GimelStudio/GimelStudio
- chaiNNer https://github.com/chaiNNer-org/chaiNNer
- GIE https://github.com/alexge50/gie
Browser based
- NIMP https://github.com/dan335/nimp https://nimp.app/
- Flow engine image https://github.com/NORYOM/Flow-Engine-Image https://rawcdn.githack.com/NORYOM/Flow-Engine-Image/68d75b69f16b8fabc20fc0c4603c9f9476e5e5de/canvas.html http://manmanerwan.cn/
- Pixel Flow https://github.com/madbrain/pixel-flow
- batchnode https://batchnode.com/ https://batchnode.com/app.html
These are VMs running built with JavaScript/WASM allowing you to run an operating system within your browser, all client side.
<html> | |
<div id="app"></div> | |
<script> | |
'use strict';let zzfx,zzfxV,zzfxX | |
// ZzFXMicro - Zuper Zmall Zound Zynth - v1.1.8 ~ 884 bytes minified | |
zzfxV=.3 // volume | |
zzfx= // play sound | |
(p=1,k=.05,b=220,e=0,r=0,t=.1,q=0,D=1,u=0,y=0,v=0,z=0,l=0,E=0,A=0,F=0,c=0,w=1,m=0,B=0)=>{let | |
M=Math,R=44100,d=2*M.PI,G=u*=500*d/R/R,C=b*=(1-k+2*k*M.random(k=[]))*d/R,g=0,H=0,a=0,n=1,I=0 |
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders] | |
"Personal"=hex(2):44,00,3a,00,5c,00,4d,00,79,00,44,00,6f,00,63,00,75,00,6d,00,65,00,6e,00,74,00,73,00,00,00 | |
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders] | |
"Personal"="D:\\MyDocuments" |
- Lindenmayer-System-Explorer https://raw.githack.com/JohnWinkelman/Lindenmayer-System-Explorer/master/index.html
- Turtle Toy http://orteil.dashnet.org/lsystem
- https://jobtalle.com/lindenmayer_systems.html
- https://anvaka.github.io/lsystem/
- https://github.com/benvan/lsys can animate, has a tutorial, old, good performance
Hiren’s BootCD 15.2 https://www.hirensbootcd.org/hbcd-v152/ https://www.hirensbootcd.org/files/Hirens.BootCD.15.2.zip
Hiren’s BootCD 15.1 https://www.hirensbootcd.org/hbcd-v151/ https://www.hirensbootcd.org/files/Hirens.BootCD.15.1.zip
Hiren’s BootCD 15.0 https://www.hirensbootcd.org/hbcd-v150/ https://www.hirensbootcd.org/files/Hirens.BootCD.15.0.zip
Hiren’s BootCD 14.1 https://www.hirensbootcd.org/hbcd-v141/ https://www.hirensbootcd.org/files/Hirens.BootCD.14.1.zip
Hiren’s BootCD 14.0 https://www.hirensbootcd.org/hbcd-v140/ https://www.hirensbootcd.org/files/Hirens.BootCD.14.0.zip
Hiren’s BootCD 13.2 https://www.hirensbootcd.org/hbcd-v132/ https://www.hirensbootcd.org/files/Hirens.BootCD.13.2.zip
Hiren’s BootCD 13.1 https://www.hirensbootcd.org/hbcd-v131/ https://www.hirensbootcd.org/files/Hirens.BootCD.13.1.zip
Hiren’s BootCD 13.0 https://www.hirensbootcd.org/hbcd-v130/ https://www.hirensbootcd.org/files/Hirens.BootCD.13.0.zip
Hiren’s BootCD 12.0 https://www.hirensbootcd.org/hbcd-v120/ http
gradle.taskGraph.whenReady { | |
println "rootProject: " + rootProject.name | |
println "childProjects: " + rootProject.childProjects | |
def dot = new File(rootProject.buildDir, 'project.dot') | |
dot.delete() | |
def command = "./gradlew " + gradle.startParameter.getTaskNames().join(" ") | |
println "command: " + command |