Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shaimesisterano/blindjs
BlindJS is a Javascript library that allows blind typing of pre-defined code. So stop worrying about writing valid code and start typing fast as hell!
https://github.com/shaimesisterano/blindjs
brackets-extension lecture presentation vscode-extension
Last synced: 4 months ago
JSON representation
BlindJS is a Javascript library that allows blind typing of pre-defined code. So stop worrying about writing valid code and start typing fast as hell!
- Host: GitHub
- URL: https://github.com/shaimesisterano/blindjs
- Owner: ShaiMesisterano
- License: mit
- Created: 2013-07-01T19:49:00.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2023-02-05T23:24:07.000Z (about 2 years ago)
- Last Synced: 2024-09-28T06:42:09.878Z (4 months ago)
- Topics: brackets-extension, lecture, presentation, vscode-extension
- Language: JavaScript
- Homepage: http://www.mcterano.com/blindjs
- Size: 15 MB
- Stars: 16
- Watchers: 3
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
![]()
The no code mistakes tool for presenters
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.
How To Use BlindJS In VSCode?
Watch a 1:30 video: https://www.youtube.com/watch?v=zoC78I4eF4o
Commands
Show the code - right click and "Open With BlindJS"
Go back to regular editing - right click and "Terminate BlindJS"
How To Install BlindJS In VSCode?
Open VSCode and typectrl+P
and typeext install ShaiMesisterano.blindjs
How To Use BlindJS In The Browser?
- Include
lib/blind.min.js
before</body>
- Create a wrapper and insert your code:
<div id="divElement">
function func(){
alert("Super Awesome!");
}
</div>
- Add textarea placeholder:
<textarea id="textareaElement">
</textarea>
- Start BlindJS with reference to an input text ∧ output element:
BlindJS.start({
input: divElement.innerText,
output: textareaElement
});
About
BlindJS was created by Shai Mesisterano
and is licensed under MIT.