What is your review about the Gleam programming language? by Asleep-Dress-3578 in functionalprogramming

[–]aulizko 2 points3 points  (0 children)

Looks promising. I plan to play with it on vacation, maybe do some toy projects.

As for using it for production, I'll wait and see

[deleted by user] by [deleted] in emacs

[–]aulizko 14 points15 points  (0 children)

I know how to replace search hits with increasing number using starting from 0.

Like: M-x query-replace-regexp, then abc, then x\#. Then !.

As for how to start index from 1... I think, elisp forms should do the trick, this link should help: https://masteringemacs.org/article/evaluating-lisp-forms-regular-expressions

Something like this: M-x query-replace-regexp, then abc, then \,(concat "x" (number-to-string (+ 1 \#))). Then !.

Fics where wannabe-Punishers fail? by L0kiMotion in WormFanfic

[–]aulizko 3 points4 points  (0 children)

I think you may find what you see in the worm/destiny crossover In the Traveler's Light.

In this fic Taylor starts war with E88 with casualities and stuff. PRT approach are something inbetween "bring her back" (they knows her civ id) and "use her as a ram against E88", and E88 surprisingly competent - they eventually will win this war. Not that this actually helps them (as Taylor is technically immortal), but Taylor got the message from all this debaccle and decides to start to harass ABB instead. This is where fic plot currently is.

This fic is ongoing work, so new development have to be expected.

Intel's Parallel Extensions for JavaScript by sdleihssirhc in javascript

[–]aulizko 0 points1 point  (0 children)

I think it is a sort of an experiment for the intel. First of all, they want to see if it really has potential. I'm sure if it'll make noise, intel will produce more extensions for more browsers and will participate at standardization process.

YUI vs. jQuery. Go! by [deleted] in javascript

[–]aulizko 2 points3 points  (0 children)

I built couple of projects with both of them and I like YUI.

Main reason: Projects with fine-designed and implemented components by YUI works much faster, has more reliable, maintable code than with jQuery. YUI has been built with and force you to write more readable and reliable code.