V7
V8
Our great sponsors
V7 | V8 | |
---|---|---|
2 | 41 | |
1,344 | 19,731 | |
0.0% | 0.9% | |
0.4 | 10.0 | |
over 1 year ago | 3 months ago | |
C | C++ | |
GNU General Public License v3.0 or later | GNU General Public License v3.0 or later |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
V7
-
Microvium Is Small
Nice! A few years ago I took a stab at this problem space with https://github.com/cesanta/v7 ; with fun tricks like in-place compacting GC, stdlib JS object graph "frozen" in rom etc
-
JavaScript Is Weird
https://github.com/cesanta/v7
Languages are not all equal nor do they all function in the same way, and that's not my opinion.
Javascript syntax itself is one thing, and you can certainly feel free to Javascriptify some C++ libraries and make it all look a certain way for specific tasks, while managing things behind the scenes, up to a point... but there is no getting around the fact that SOMEONE and some languages are needed to implement low level systems functionality.
the power of Cython or the Python C FFI is that it allows you to script/glue modular native code.
You then state "C++14 may have been ratified 7 years ago but it's not the target code your build chain spits out"
no, a C++ COMPILER spits out assembler code that then gets assembled and linked into an executable.
The C++ or C code corresponds directly to a given set of assembler instructions which correspond directly to CPU instructions.
You claim that Python programming of microcontrollers is mainstream, but this is not true nor possible. Python SCRIPTING of code modules (that cannot be written in Python) is certainly one way to assemble a system from pre-built legos.
If you refer to knowing what I'm talking about as gatekeeping and egoism, might I suggest that you insist less forcefully in the correctness of incorrect things you state? we could be done with this spat in short order if YOU would refrain from speaking falsehoods. lies.untrue things.
I look forward to your lisp c compiler. make sure that it's 100% lisp from the bottom up, or I'll consider you're having ceded my point. Consider that the lisp you author in has a garbage collection system that lisp cannot have written originally, nor has any semantics for the underlying memory structures of, but hey, I guess if one is committed to pretending that all languages are equal for all tasks, who am I to question ones self-identification with a given language.
V8
-
Trouble understanding IEEE754 for 0.1 (To Binary 64bit and back)
Behind the scenes: strtod, but I'm not gonna pretend I understand any of that ;)
- CVE-2022-1096 Chrome Exploit in the Wild - 99.0.4844.84 for Windows, Mac and Linux address it also Edge 99.0.1150.55
-
Chrome 0day is being exploited now for CVE-2022-1096; update immediately
Looks like these are the two commits, based on the issue number:
https://github.com/v8/v8/commit/0981e91a4f8692af337e2588562a...
https://github.com/v8/v8/commit/a2cae2180a7a6d64ccdede44d730...
Although there could be others.
-
Inline Assembly Language. What is that?
https://github.com/v8/v8/blob/master/src/objects/dictionary.h https://wiki.cdot.senecacollege.ca/wiki/Inline_Assembly_Language https://en.cppreference.com/w/c/language/asm https://en.wikipedia.org/wiki/Inline_assembler https://stackoverflow.com/questions/2268562/what-are-intrinsics https://www.codeproject.com/Articles/15971/Using-Inline-Assembly-in-C-C https://stackoverflow.com/questions/48518225/what-are-intrinsic-types-in-javascript https://stackoverflow.com/questions/12168575/executing-generated-assembler-inline
-
MoarVM may compete with JVM and .Net in a decade.
Many of the languages with much faster implementations and quicker development have literal millions of dollars paying for their progress. I mean, look at the list of authors for V8. That's tens (if not hundreds) of billions of tech heavy weights contributing. Java was painfully slow for the longest time, even with all the money and promotion that Sun put behind it.
-
HTML comments work in JavaScript too
Source:
https://github.com/v8/v8/blob/main/src/parsing/scanner.cc#L3...
And also this nice article
"The scanner chooses a specific scanner method or token based on a maximum lookahead of 4 characters, the longest ambiguous sequence of characters in JavaScript"
-
Where is Array.prototype.flat in v8 source? No array-flat.tq in src/builtins
From what I understand, builtins are coded with v8 torque language in .tq files. However in src/builtins, there is no array-flat.tq file. Then where is it implemented?
-
What parsing techniques do you use to support a good language server?
It must be a fairly large echo chamber since it has room for Clang, GCC, V8, OpenJDK, Roslyn, etc. (The Zend parser for PHP seems to use some flavor of YACC, but given PHP, I don't know if that strengthens or weakens my point.)
- [AskJS] What is the library that javascript uses underneath for async/await?
- When calling built in functions, is it possible to see their code?
What are some alternatives?
Duktape - Duktape - embeddable Javascript engine with a focus on portability and compact footprint
ChakraCore - ChakraCore is an open source Javascript engine with a C API. [Moved to: https://github.com/chakra-core/ChakraCore]
Lua - Lua is a powerful, efficient, lightweight, embeddable scripting language. It supports procedural programming, object-oriented programming, functional programming, data-driven programming, and data description.
ChaiScript - Embedded Scripting Language Designed for C++
Cython - The most widely used Python to C compiler
Wren - The Wren Programming Language. Wren is a small, fast, class-based concurrent scripting language.
SWIG - SWIG is a software development tool that connects programs written in C and C++ with a variety of high-level programming languages.
Flutter - Flutter makes it easy and fast to build beautiful apps for mobile and beyond
sol2 - Sol3 (sol2 v3.0) - a C++ <-> Lua API wrapper with advanced features and top notch performance - is here, and it's great! Documentation:
CppSharp - Tools and libraries to glue C/C++ APIs to high-level languages