Matti

Results 71 issues of Matti

**General Information** - [ ] Bug - [ ] Improvement - [ ] Feature - [X] Other **Description** Any ideas how this may compare to Elm and Svelte?

How to setup a dev environment so that the compilation of .js/.ng can be debugged (preferably step-wise)?

Recursion broken (fibo.js)? ``` var console = require("console"); var fibonacci = function(n) { if (n < 2) { return n; } return fibonacci(n - 2) + fibonacci(n - 1); };...

node nerd ../fib-main/fib.js ``` [*] Generating source file [*] Compiling with preset: speed [+] Creating Nerd binary lib for std_linux_0.0.16 g++ -std=c++17 -flto -Ofast -c nerdcore/src/nerd.cpp -o "/home/me/Downloads/nerd-master/.nerd/cached_std_linux_0.0.16/nerd.o" [+] Compiling...

I am new to npm and I thought that one can install it from the zip. I tried `npm install ./nerd-master` It says: ``` npm install ./nerd-master added 2 packages...

I am testing the Fibonacci code. As an example I am finding the 41st number. [fibo.zip](https://github.com/NerdLang/nerd/files/14023109/fibo.zip) node fibo.js returns pretty quickly, but ./fibo.out after nectar fibo.js -o fibo.out takes noticeably...

I initially looked at using civetweb to run a WebSocket Server: https://github.com/civetweb/civetweb Then I found this library. Now I am wondering, what point might civetweb have in comparison to this...

question

Based on: https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/getUserMedia the getUserMedia() method should be available only in secure contexts (HTTPS). However, I am deploying web-dictaphone on CivetWeb (https://github.com/civetweb/civetweb) locally and it seems to run fine over...

Does this work even when some sources suggest Android would not load versioned (e.g. .so.1.1) libraries?

Any comparison to Snowflake?