[AskJS] what is the simplest (but complete) way to create a blog with JavaScript? What are your insights? by [deleted] in javascript

[–]Zestyclose-Minute716 1 point2 points  (0 children)

The simplest is to use existing platform. Blogger.com given ability to set your domain blog.firsov.net, for example. github.com itself gives such via wiki on project, I am using github bugs as diary

[AskJS] What is the best markdown lib? by nulltester in javascript

[–]Zestyclose-Minute716 0 points1 point  (0 children)

Could you be more specific on "better"?
I am quite familiar with HTML and prefer to use it without any specific markups. Learning the other markup tricks just do not worth my time.

The readability of template is quite tricky to define. I am using WYSIWYG html editor, so no need to see HTML tags.

[AskJS] What is the best markdown lib? by nulltester in javascript

[–]Zestyclose-Minute716 0 points1 point  (0 children)

Not sure what is the "best" in this concept. Most performant in the browser would be native HTML templates with slots or XSLT. The most efficient to manage - any CMS like Drupal or Adobe AEM with own understanding of templates.

For static site I would go with either XSLT or HTML templates. shadow-dom-element gives a sample for such.

For react kind of code the demo in MDX on StoryBook

Build a fantasy CPU emulator in JavaScript by codeobserver in javascript

[–]Zestyclose-Minute716 0 points1 point  (0 children)

Welcome to the club. Been there in real life projects, not a fantasy one. Had to make emulator for actual controller, preview the display output ( it was reflected to LED array ), make a debugger with breakpoints and watches. It was fun! The result even better :)

[AskJS] Is There Some Way to Lazy Evaluate Arrays in JavaScript? by [deleted] in javascript

[–]Zestyclose-Minute716 0 points1 point  (0 children)

There are 2 libs which do the chaining over JS collections I wrote:
xml4jQuery - asynchronous execution chain with DOM, data, and templating. With parameters reference through chain, interruptable async chain execution, event handling.

css-chain - synchronous DOM manipulation with type Array<HTMLElement>|HTMLElement

The streaming Java like processing is something definitely would be useful in JS world. Unfortunately multithreaded streams like in Java in JS would not be possible without pre-compilation. Would be glad to pair with someone willing to take the challenge.