An HTML/CSS/JS code editor in 230+ bytes
xem.github.io
An HTML/CSS/JS code editor in 230+ bytes
1–10 of 57 posts
Re: An HTML/CSS/JS code editor in 230+ bytes
#2Re: An HTML/CSS/JS code editor in 230+ bytes
#3Similar? https://github.com/runexec/static-prime#static-prime
Re: An HTML/CSS/JS code editor in 230+ bytes
#4Re: An HTML/CSS/JS code editor in 230+ bytes
#5Or save everything on the URL so it can be bookmarked too.
Re: An HTML/CSS/JS code editor in 230+ bytes
#6In fact, I created a CSS library, min, that's 995 bytes - http://minfwk.com/.
Re: An HTML/CSS/JS code editor in 230+ bytes
#7Wow! This topic is successful!
You can also take a look at this 512b project that didn't live long on HN yesterday:
A minesweeper game https://news.ycombinator.com/item?id=6853868
And my other code golfing projects: http://xem.github.io/?golfing
==========
Re: An HTML/CSS/JS code editor in 230+ bytes
#8t3[v="value"] ... t2[v] ... t1[v]
rather than
t3.value ... t2.value ... t1.value
to save 1 fucking char.
Re: An HTML/CSS/JS code editor in 230+ bytes
#9Awesome. I love small things. In fact, I created a CSS library, min, that's 995 bytes - http://minfwk.com/ .
Re: An HTML/CSS/JS code editor in 230+ bytes
#10Use of `i--` in loop for condition check wasn't intuitive at first. Apparently `i--` will return the current value of i (before decrementing).