Показаны сообщения с ярлыком javascript. Показать все сообщения
Показаны сообщения с ярлыком javascript. Показать все сообщения

2012-12-03

когда коту делать нечего...

Emscripten is an LLVM to JavaScript compiler. It takes LLVM bitcode (which can be generated from C/C++ using Clang, or any other language that can be converted into LLVM bitcode) and compiles that into JavaScript, which can be run on the web (or anywhere else JavaScript can run).
Using Emscripten, you can
  • Compile C and C++ code into JavaScript and run that on the web
  • Run code in languages like Python as well, by compiling CPython from C to JavaScript and interpreting code in that on the web
.....

      • This is the Lua interpreter, compiled from C to JavaScript using Emscripten, running in your browser (without any plugins).
      • TrueType font rendering in JavaScript, using FreeType
      • lzma.js - LZMA ported to JS
      • sql.js - SQLite ported to JS

      Куда катится мир .. (с) nponeccop

      2012-11-26

      When ...

      When I see three layers of weird DSLs for configuring a single app

      When somebody says “it’s written in C, so it must be fast”

      When somebody tries to explain JavaScript’s prototype system

      When I hear your new PL doesn’t have exceptions and requires manual error handling instead

      When somebody says he doesn’t like exceptions because he likes to handle errors where they appear

      Moar here