Skip to content
#

webassembly

web-assembly logo

WebAssembly (abbreviated Wasm) is a binary instruction format for a stack-based virtual machine. Wasm is designed as a portable target for compilation of high-level languages like C/C++/Rust, enabling deployment on the web for client and server applications.

Here are 1,482 public repositories matching this topic...

iris
asyslinux
asyslinux commented Dec 28, 2019

Dear developers. I write my custom specific web server for work with specific archive files, compression, encryption, etc. And i want to publish my web server under BSD-2-Clause license.

In my project i use Iris and Iris logger as basement.
I'm not going to use the name of your project to promote my project.

Can I publish my project under the BSD-2-Clause license?

Thanks.

imle
imle commented Apr 8, 2020

Device: arduino-nano33

The code in src/examples/pwm/pwm.go produces the following error:

panic: runtime error: nil pointer dereference

it looks like the PWM.getTimer method is returning nil from src/machine/machine_atsamd21.go:1196 which doesn't seem to have a matching set of Pin numbers to the src/machine/board_arduino_nano33.go:13 file.

Are these numbers supposed

wasmer
ballercat
ballercat commented Oct 14, 2018

Problem

walt-cli package when linking multiple .walt files together can "wrap" the modules in a stand-alone JS module. The resulting module is too large because it serialized the dependency tree with the AST information encoded directly into the output, resulting in a massive amount of js.

Encoding the dependencies into the file is done to ensure the module can be used stand-alone in br

minexew
minexew commented Apr 2, 2020

Env:

  • python 3.8
  • capstone 4.0.1
  • ubuntu 18.04 (WSL)

Repro:

import capstone
md = capstone.Cs(capstone.CS_ARCH_X86, capstone.CS_MODE_32)
md.detail = True

# case 1
# expected: fstcw  WORD PTR [ebp-0x4] (based on Objdump disassembly which round-trips with GNU as)
for insn in md.disasm(b"\x9B\xD9\x7D\xFC", 0):
    print(insn.address, insn.mnemonic, insn.op_str)

print(
pdugre
pdugre commented Mar 30, 2020

Hi!

I am using the wasm2js tool on a WebAssembly module written in Rust using wasm-bindgen(no emscripten involved) to generate code that works on Internet Explorer. However, since I added a new library which internally makes use of i64, this import has been added to the wasm2js output:

import { getTempRet0 } from 'env';

From what I understand, this method is used by

bradleypeabody
bradleypeabody commented Sep 15, 2019

Right now if you make a something.vugu and manually create a something.go and then run vugugen or the devserver, ParserGo will happy clobber your something.go file with its output.

It should instead look inspect the file first to ensure it has the appropriate "DO NOT EDIT" comment in it before overwriting.

perspective
uno
jeromelaban
jeromelaban commented Mar 18, 2020

Current behavior

The code behind class of a XAML file is incorrectly marked as sealed by the source generator. This prevents inheriting from controls that define XAML.

Expected behavior

Even though the default WinUI 2 UserControl template does add a sealed specifier for a UserControl, removing it is possible; Uno should do the same.

Environment

Organization
WebAssembly
Website
webassembly.org
Wikipedia
Wikipedia

Related Topics

asmjs javascript
You can’t perform that action at this time.