BlindJS is an extremely useful tool for lectures, lessons and presentations.
It allows you to write code samples quickly and without any chance for mistakes.
BlindJS is a Javascript library that replaces content with pre-defined code in your code
editor or web page.
Show the code - right click and "Open With BlindJS"
Go back to regular editing - right click and "Terminate BlindJS"
ctrl+P and type ext install ShaiMesisterano.blindjs
lib/blind.min.js before </body>
<div id="divElement">
function func(){
alert("Super Awesome!");
}
</div>
<textarea id="textareaElement">
</textarea>
BlindJS.start({
input: divElement.innerText,
output: textareaElement
});
Type Random Keys:
Real Code:
function func(){ alert("Super Awesome!"); }
BlindJS was created by Shai Mesisterano and is licensed under MIT.