並び順

ブックマーク数

期間指定

  • から
  • まで

721 - 760 件 / 1133件

新着順 人気順

WebAssemblyの検索結果721 - 760 件 / 1133件

  • WebAssembly

    OPA 1.0Kubernetes Overview & Architecture Policy Primer via Examples Tutorial: Ingress Validation Debugging TipsEnvoy Overview & Architecture Policy Primer via Examples Tutorial: Standalone Envoy Tutorial: Gloo Edge Tutorial: Istio Performance Debugging TipsOther Use Cases AWS CloudFormation Hooks Docker GraphQL APIs HTTP APIs Kafka SSH and sudo TerraformOperations Configuration Deployment Monitor

    • Go×WebAssemblyを使ってDOM操作を試してみる - なんかすごいブログ

      今回はWebAssemblyについて試してみました。以下目次で進めて行きます。 WebAssembyとは 今回のコード 作成した画面 前提条件 Goのコードを書いていく HTMLの作成 WebAssemblyへコンパイルする GOROOTからwasm_exec.jsをコピーしてくる HTTPサーバーを実行し、確認する HTMLのテキストを書き換え alertのダイアログを表示させる text-boxの入力値を別のtext-boxへ反映させる 躓いた点 ビルドが出来ない問題 js.NewCallbackには変更がある まとめ 参考 WebAssembyとは WebAssemblyは、ブラウザーで実行できるバイナリコードです。WebではJavaScriptが必須ですが、リッチな処理が実現出来るようになるにつれ性能が不足するシーンが増えてきています。この問題解決のために実行が高速になるよう設計さ

        Go×WebAssemblyを使ってDOM操作を試してみる - なんかすごいブログ
      • Rust WebAssembly module in an ES module wrapper from wasm-pack fails to load in Next.js · Issue #29362 · vercel/next.js

        You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

          Rust WebAssembly module in an ES module wrapper from wasm-pack fails to load in Next.js · Issue #29362 · vercel/next.js
        • GitHub - aduros/wasm4: Build retro games using WebAssembly for a fantasy console.

          No Glue Code: If you've ever tried to write even a simple "Hello World" with WebAssembly before, you'll know it usually involves writing a bunch of JS and HTML glue. WASM-4 removes all of that, games interface directly with the system through a small API. Minimalist: Fantasy consoles force developers to work with limited resources. This makes them simple to learn, and easier to focus on finishing

            GitHub - aduros/wasm4: Build retro games using WebAssembly for a fantasy console.
          • マイクロソフト、「C# 9.0」の計画示す--「Blazor WebAssembly」正式版もリリース

            Microsoftが「Build 2020」で発表した「.NET」関連のニュースのなかには、.NETチームによる同社のプログラミング言語「C#」の計画や、「Blazor WebAssembly」の正式版リリースが含まれている。 同社のC#リードデザイナーであるMads Torgersen氏によると、「C# 9.0」は「一般的なコーディングシナリオでのより高い明確さとシンプルさ」を追求しているという。しかし今回のリリースでは「データ形状に関する簡潔な、かつ不変性を備えた表現のサポート」に特に注力しているという。 C#は、MicrosoftのテクニカルフェローであるAnders Hejlsberg氏によって生み出された言語であり、2000年代初頭にリリースされた。なおHejlsberg氏は、大規模アプリケーション向けにJavaScriptの拡張言語として普及している「TypeScript」の生

              マイクロソフト、「C# 9.0」の計画示す--「Blazor WebAssembly」正式版もリリース
            • WebAssembly - WebAssembly | MDN

              WebAssembly は JavaScript のオブジェクトで、 WebAssembly に関するすべての機能の名前空間の役割をします。 他のグローバルオブジェクトとは異なり、 WebAssembly はコンストラクターではありません (関数オブジェクトではありません) 。数学の定数や関数の名前空間である Math や 、国際化のコンストラクターやその他の言語を意識した関数ための Intl と同様のものです。 WebAssembly オブジェクトの主な用途は次のとおりです。 WebAssembly.instantiate() 関数を用いた WebAssembly コードの読み込み。 WebAssembly.Memory()/WebAssembly.Table() コンストラクターによる新しいメモリーやテーブルインスタンスの生成。 WebAssembly.CompileError()/W

                WebAssembly - WebAssembly | MDN
              • 既存の C モジュールから WebAssembly へのコンパイル - WebAssembly | MDN

                WebAssembly の主な用途は、既存の C ライブラリーのエコシステムを取得し、開発者がウェブ上でそれらを利用できるようにすることです。 これらのライブラリーは、C の標準ライブラリー、オペレーティングシステム、ファイルシステムやその他のものにしばしば依存します。 Emscripten は、いくつかの制限はあるものの、これらの機能のほとんどを提供しています。 例として、 WebP のエンコーダーを wasm にコンパイルしてみましょう。WebP コーデックのソースは C 言語で書かれており、 GitHub にあり、拡張 API のドキュメントも同様に利用できます。これはとても良いスタート地点です。

                  既存の C モジュールから WebAssembly へのコンパイル - WebAssembly | MDN
                • WAT (WebAssembly Text Format) と Common Lisp で遊ぶ ~準備編~ - eshamster’s diary

                  lisp Advent Calendar 2020 7日目の記事です。 WebAssemblyを真面目に試そうと思ったらCやらRustやら他の言語からコンパイルして生成するものかと思いますが、せっかくそのテキスト形式 = WAT (WebAssembly Text Format) がS式なので直接書いて(書かせて)ちょっと遊んでみようという記事です。 2, 3回ぐらいに分けて書いていこうかと思いますが、今回は遊ぶ前の準備編で、静的なWATとそれを呼び出すJavaScriptファイルを用意して、(WATはバイナリ形式のWASMに変換した上で)配信するだけのCommon Lispサーバを作るあたりまでを扱います。 色々遊んでいるリポジトリは下記になります。 github.com 今回は下記ぐらいのコミット時点の内容になります(所々余分なコードがあるので、本文では適宜整理したものを記載しています

                    WAT (WebAssembly Text Format) と Common Lisp で遊ぶ ~準備編~ - eshamster’s diary
                  • WebAssembly: デフォルトで安全なエコシステムの構築 - WebAssembly SummitでのLin Clark氏の講演

                    Spring BootによるAPIバックエンド構築実践ガイド 第2版 何千人もの開発者が、InfoQのミニブック「Practical Guide to Building an API Back End with Spring Boot」から、Spring Bootを使ったREST API構築の基礎を学んだ。この本では、出版時に新しくリリースされたバージョンである Spring Boot 2 を使用している。しかし、Spring Boot3が最近リリースされ、重要な変...

                      WebAssembly: デフォルトで安全なエコシステムの構築 - WebAssembly SummitでのLin Clark氏の講演
                    • Audio Processing by WebAssembly

                      Korilakkuma I' m disseminating Web Music as Audio Programmer. C/C++, Audio Signal Processing (ALSA, Web Audio API) and Music 💖🎸🎹 Tokyo (sometimes Osaka), JAPAN WebAssembly とは WebAssembly とは, C / C++, Go や Rust などで実装され, (WebAssembly のために) コンパイルされたバイナリを実行するための JavaScript API です. WebAssembly を利用することによって, 以下のようなことが可能になります. パフォーマンスのネックになっている処理を WebAssembly を利用することで高速化する JavaScript の処理系では不可能な処理を実装する

                      • TinyGo - マイコンやWebAssemblyが作れる軽量なGo言語

                        Goは一つのコードから各種OSで動作するバイナリが生成できます。Raspberry Piでも動くバイナリが生成できるので、IoTなどでも使えます。しかし、それはRaspberry PiでLinuxが動くからに他なりません。 マイコンの場合はどうでしょうか。そこで使ってみたいのがTinyGoです。 TinyGoの使い方 TinyGoはWebAssemblyにも対応しています。そのコード例です。 package main // This calls a JS function from Go. func main() { println("adding two numbers:", add(2, 3)) // expecting 5 } // This function is imported from JavaScript, as it doesn't define a body. // Y

                          TinyGo - マイコンやWebAssemblyが作れる軽量なGo言語
                        • WebAssemblyランタイム「Wasmer 3.0」公開、WAPMパッケージを直接実行できる「run」コマンド実装

                          Wasmerは2022年11月23日(米国時間)、オープンソースのWebAssemblyランタイムの最新版「Wasmer 3.0」をリリースしたと発表した。 WebAssembly(「Wasm」と略される場合もある)は、Webブラウザなどモダンな実行環境での効率的なコード実行とコンパクトなコード表現を実現する安全でポータブルな低レベルフォーマット。World Wide Web Consortium(W3C)がコア仕様をW3C勧告として公開している。Wasmerは、WebAssemblyをサーバなどで実行できるようにするランタイムだ。 Wasmer 3.0の新機能 関連記事 利用者が増え続ける「WebAssembly」、ブラウザ実行できる4つ目の言語の魅力とは ソフトウェアコンサルティング会社のScott Logicは、「WebAssembly」の使用状況に関する2回目の年次調査を実施、結果

                            WebAssemblyランタイム「Wasmer 3.0」公開、WAPMパッケージを直接実行できる「run」コマンド実装
                          • Ruby & WebAssembly Introduction

                            RubyWorld Conference 2022 https://2022.rubyworld-conf.org/ja/program/day2/ Presentation Video https://youtu.be/UOPHsEml7D8?t=17487

                              Ruby & WebAssembly Introduction
                            • Amazon Prime VideoがWebAssemblyを採用/WebAssembly製のx86仮想マシンが登場/Flutter for Windowsが正式版にほか。2022年2月の人気記事

                              Amazon Prime VideoがWebAssemblyを採用/WebAssembly製のx86仮想マシンが登場/Flutter for Windowsが正式版にほか。2022年2月の人気記事 早いもので、北京冬季オリンピックが終わったと思ったら、今日からパラリンピックが開会です。 昨年夏のパラリンピックは個人的に、障害があるとは思えないほど強靱な人たちのレースが見られたトライアスロンと、なにも見えないはずなのにドリブルをしながら相手の密集を抜けてゴールを決めるブラインドサッカーが印象に残っています。 冬のパラリンピックでのアスリートの活躍も楽しみです。 さて、2月の人気記事を紹介していきましょう。 1位から3位 1位 Amazon Prime Videoが動画再生にWebAssemblyを採用。再生デバイス上にWasm VMをデプロイ、高フレームレートなど実現 2位 WebAssem

                                Amazon Prime VideoがWebAssemblyを採用/WebAssembly製のx86仮想マシンが登場/Flutter for Windowsが正式版にほか。2022年2月の人気記事
                              • GitHub - rberrelleza/openfaas-plus-webassembly: WebAssembly + OpenfaaS The Universal Runtime for Serverless Functions

                                You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                  GitHub - rberrelleza/openfaas-plus-webassembly: WebAssembly + OpenfaaS The Universal Runtime for Serverless Functions
                                • WebAssemblyをhtmlから呼び出す - Qiita

                                  はじめに 前回のWebAssemblyをwindows上で使用する では、C++で書いたソースをコンパイルしてNode.jsで呼び出してみました。しかし、普通のWebページはブラウザを使用してhtmlとJavaScriptを読み込みWebページを見ています。そのため、Webアセンブリでも同じようにブラウザからアクセスしてhtml、JavaScriptから呼び出して実現をする方法をまとめます。 環境 windows 10 python:3.6.5 emcc:1.39.16 clang:11.0.0 python:3.6.5 環境作成 前回のWebAssemblyをwindows上で使用するを見てください。 Webアセンブリファイルを作成する Webアセンブリ用のC++を作成してコンパイルをします。前回と同じですが、サンプルのコードとコンパイルのオプションが若干異なります。 C/C++ファイル

                                    WebAssemblyをhtmlから呼び出す - Qiita
                                  • WebAssemblyのスタンダロン・ランタイム「Wasmtime 1.0」公開 | OSDN Magazine

                                    非営利団体Bytecode Allianceは9月20日、WebAssemblyランタイム「Wasmtime 1.0」公開を発表した。 WasmtimeはWebAssemblyのスタンダロン・ランタイム。Linux、macOS、Windowsで動かすことができる。WebAssemblyをどこでも動かすことを目的に非営利団体Bytecode Allianceで開発されている。Bytecode Allianceは、WebAssembly、WebAssembly System Interface(WASI)などに関連した技術を開発する非営利団体として、Mozillaらが2019年に立ち上げた。WastimeはRustをベースとし、。高速、安全性を特徴とする。WASI標準と互換性があり、C/C++、Python、Go、.NETなどとの統合もサポートする。ライセンスはApache License 2

                                      WebAssemblyのスタンダロン・ランタイム「Wasmtime 1.0」公開 | OSDN Magazine
                                    • GitHub - glassmonkey/php-playground: PHP Playground by WebAssembly

                                      You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                        GitHub - glassmonkey/php-playground: PHP Playground by WebAssembly
                                      • GitHub - faasm/faasm: High-performance stateful serverless runtime based on WebAssembly

                                        Faasm is a high-performance stateful serverless runtime. Faasm provides multi-tenant isolation, yet allows functions to share regions of memory. These shared memory regions give low-latency concurrent access to data, and are synchronised globally to support large-scale parallelism across multiple hosts. Faasm combines software fault isolation from WebAssembly with standard Linux tooling, to provid

                                          GitHub - faasm/faasm: High-performance stateful serverless runtime based on WebAssembly
                                        • UnityでWebAssemblyを扱う - e.blog

                                          概要 今回はUnityと、ビルドしたアプリからWebAssemblyを利用する手順についてまとめたいと思います。 もともと、ビルド後のアプリに対してコードを追加することができないかなと思っていたところ、たるこすさんの以下の記事を見かけたのがきっかけです。 たるこすさんはこれをさらに汎用化し、VRCなどで振る舞いとモデルを組み合わせたものを使えるようにする、というすばらしい思想で個人プロジェクトを作っているようなので興味がある方はご覧になってください。 zenn.dev 今回の実装サンプルはGitHubにアップしてあります。 github.com WebAssemblyとは Wikipediaから引用させてもらうと以下ように説明されています。 WebAssemblyは、ウェブブラウザのクライアントサイドスクリプトとして動作するプログラミング言語(低水準言語)である。wasmとも称されており、

                                            UnityでWebAssemblyを扱う - e.blog
                                          • WebAssembly Aims to Eliminate the File System

                                            Join our community of software engineering leaders and aspirational developers. Always stay in-the-know by getting the most important news and exclusive content delivered fresh to your inbox to learn more about at-scale software development.

                                              WebAssembly Aims to Eliminate the File System
                                            • If you’re interested in WebAssembly, and don’t get enough depth here on DEV, read this…

                                              Ben Halpern for The DEV Team Posted on Mar 16, 2022 • Updated on Apr 13, 2022 If you’re interested in WebAssembly, and don’t get enough depth here on DEV, read this… WASM Builders is the new Forem in town. If you click that link, you’ll find the new WebAssembly Forem run by a consortium of deeply engaged companies looking to expand the impact of WebAssembly. It will always be our goal to help peop

                                                If you’re interested in WebAssembly, and don’t get enough depth here on DEV, read this…
                                              • Enhancing Playground Experience with WebAssembly-Compiled SpiceDB| AuthZed.com

                                                In this post, we'll go into detail about each of these steps to highlight the work behind the newly improved Authzed Playground experience and perhaps inspire others to experiment with WebAssembly. Interesting Note: Header image originally generated with DALL·E 2 with caption "purple database icon lifted by crane", slightly modified afterwards TL;DR: 1. Compile SpiceDB Go source as WebAssembly. 2.

                                                  Enhancing Playground Experience with WebAssembly-Compiled SpiceDB| AuthZed.com
                                                • Rust and WebAssembly Documentation

                                                  Welcome to an overview of the documentation provided by the Rust and WebAssembly Working Group. All of these projects are managed by the working group; there are other unofficial documentation resources as well! Many of these resources take the form of “books”; we collectively call these “The Rust and WebAssembly Bookshelf.” Some are large, some are small. Learn about Rust and WebAssembly If you’d

                                                  • RustでWebAssembly入門のためのまとめ

                                                    Rust で WebAssembly に入門する Introduction – Rust and WebAssembly 上記ページが Rust + WebAssembly のためのチュートリアル & リファレンスのページになります。このページを参考に、Rust のコードから WebAssembly を生成するための環境構築~サンプルコードの実装までを試します。 WebAssembly とは WebAssembly とは、ブラウザ上で動作するプログラミング言語の1種です。Javascriptと違いバイナリ形式での実行が可能であるため、実行速度がJavascriptに比べて向上します。 主要ブラウザ (Firefox, Chromium, Google Chrome, Microsoft Edge) 上で動作がサポートされています。IEは未対応です。 WebAssembly のコード(was

                                                      RustでWebAssembly入門のためのまとめ
                                                    • WebAssembly Everywhere

                                                      WebAssembly EverywhereJune 2022Overview WebAssembly is a binary instruction format for a stack-based virtual machine. It is designed as a portable compilation target for programming languages, enabling server & client applications to be deployed on the web. You might have seen the above definition of WebAssembly (Wasm) after a quick Google search. That’s a lot to digest. To grossly oversimplify, W

                                                      • WebAssembly vs. Kubernetes

                                                        Join our community of software engineering leaders and aspirational developers. Always stay in-the-know by getting the most important news and exclusive content delivered fresh to your inbox to learn more about at-scale software development.

                                                          WebAssembly vs. Kubernetes
                                                        • WebAssemblyモジュールを含むwebアプリをAWSを使って公開してみる - Qiita

                                                          この記事について 発端は、Rustを勉強する為に、ルービックキューブアプリをRust+WebAssemblyで作成し始めた事になります。 それから、勉強した事を記事にまとめつつ今に至ります。 Rust + seed でWebAssemblyを体験してみる。 Rustの参照渡しを使いこなすためにその1 Rustの参照渡しを使いこなすためにその2-Vecとfor- javaScriptとWebAssembly(seed使用)を相互連携してみる。 VueからWebAssembly(seed使用)を利用してみる。 今回は結構良い所まで実装出来たので、webサイトとして公開する事をやってみます。 参考:現時点でのアプリ画面 目次 結構長くなってしまったので、今回の記事の流れを記載します。 右ペインでも見れると思いますが、まとめ的に記載します。 独自ドメインを使用しての公開の為の前準備 独自ドメイン取

                                                            WebAssemblyモジュールを含むwebアプリをAWSを使って公開してみる - Qiita
                                                          • GitHub - GoogleChromeLabs/wasm-feature-detect: A small library to detect which features of WebAssembly are supported.

                                                            You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.

                                                              GitHub - GoogleChromeLabs/wasm-feature-detect: A small library to detect which features of WebAssembly are supported.
                                                            • 自作言語をWebAssemblyに対応する試み - Qiita

                                                              自作言語のすすめ ある程度プログラミングに慣れてくると、「自分で設計したオリジナル言語」を作りたくなりますよね?...ね? 自分で設計した言語を使って、ウェブのフロントエンドアプリ開発に利用できたら楽しそうです。実用性は無いに等しく、ましてやお仕事での開発で利用できるはずもありませんが、技術的な興味と自己満足で、自作言語でWebAssemblyのアプリを作ってみようという試みです。 orelang 皆さんはorelangについて覚えているでしょうか? 覚えてるも何も、知らねぇよそんなもん初めて聞いた、というかもしれません。元ネタは3年前に一部界隈で流行った、とても低機能な自作言語の記事です。 ▼プログラミング言語を作る。1時間で。 https://qiita.com/shuetsu@github/items/ac21e597265d6bb906dc 制御構造は条件つきループのuntilのみ

                                                                自作言語をWebAssemblyに対応する試み - Qiita
                                                              • GitHub - WebAssembly/wasi-libc: WASI libc implementation for WebAssembly

                                                                You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                                  GitHub - WebAssembly/wasi-libc: WASI libc implementation for WebAssembly
                                                                • just-in-time code generation within webassembly — wingolog

                                                                  Just-in-time (JIT) code generation is an important tactic when implementing a programming language. Generating code at run-time allows a program to specialize itself against the specific data it is run against. For a program that implements a programming language, that specialization is with respect to the program being run, and possibly with respect to the data that program uses. The way this typ

                                                                  • Practical WebAssembly

                                                                    Read it now on the O’Reilly learning platform with a 10-day free trial. O’Reilly members get unlimited access to books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers. WebAssembly is a powerful new technology for developing and running applications on the web, in browsers, and elsewhere. Learning how to harness this technology is essential to underst

                                                                      Practical WebAssembly
                                                                    • Building a Containerless Future with WebAssembly - Kevin Hoffman at WebAssembly Summit

                                                                      How to Use Multiple GitHub Accounts Git is a popular tool for version control in software development. It is not uncommon to use multiple Git accounts. Correctly configuring and switching Git accounts is challenging. In this article, we show what Git provides for account configuration, its limitations, and the solution to switch accounts automatically based on a project parent directory location.

                                                                        Building a Containerless Future with WebAssembly - Kevin Hoffman at WebAssembly Summit
                                                                      • チュートリアル - Rust and WebAssembly

                                                                        チュートリアル: ライフゲーム これはライフゲームをRust and WebAssemblyで実装するチュートリアルです。 このチュートリアルの対象読者は? このチュートリアルは既に基本的なRustとJavaScriptの経験があり、RustとWebAssemblyとJavaScriptを組み合わせて使う方法を学びたい人のためのものです。 読者はRustやJavaScriptやHTMLの基本的な読み書きが気楽にできるべきです。熟練者である必要はまったくありません。 何を学ぶのか? WebAssemblyへコンパイルするためにRustのツールチェインをセットアップする方法。 Rust、WebAssembly、JavaScript、HTML、CSSから成る複数言語プログラムを開発するワークフロー。 RustとWebAssembly両方の強みを、そしてさらにJavaScriptの強みを最大限に生

                                                                        • 新たに創設されたBytecode Alliance、モジュールの安全使用のためにWebAssemblyナノプロセスを提案

                                                                          Spring BootによるAPIバックエンド構築実践ガイド 第2版 何千人もの開発者が、InfoQのミニブック「Practical Guide to Building an API Back End with Spring Boot」から、Spring Bootを使ったREST API構築の基礎を学んだ。この本では、出版時に新しくリリースされたバージョンである Spring Boot 2 を使用している。しかし、Spring Boot3が最近リリースされ、重要な変...

                                                                            新たに創設されたBytecode Alliance、モジュールの安全使用のためにWebAssemblyナノプロセスを提案
                                                                          • 2020年に注目したいテクノロジー「ハイブリッドクラウド」「WebAssembly」、そして「サーバー向けプロセッサ市場の変化」とは? | 東京エレクトロンデバイス

                                                                            2020年に注目したいテクノロジー「ハイブリッドクラウド」「WebAssembly」、そして「サーバー向けプロセッサ市場の変化」とは? | 東京エレクトロンデバイス 2020年に注目したいテクノロジー「ハイブリッドクラウド」「WebAssembly」、そして「サーバー向けプロセッサ市場の変化」とは? 2019年2月にこのコラム欄に掲載した記事「2019年のIT業界展望――ソフトはマイクロサービスに注目、ハードはNVMe SSDが普及の兆し」では、2019年のトレンドとしてソフトウェアではマイクロサービスを、ハードウェアでは不揮発性メインメモリとNVMe SSDを紹介した。果たして、2020年は? まずは2019年を振り返ると 2019年はマイクロサービスを技術要素とする「クラウドネイティブ」が注目された年になりました。クラウドネイティブは立場によって範囲や定義が異なる場合がありますが、コン

                                                                              2020年に注目したいテクノロジー「ハイブリッドクラウド」「WebAssembly」、そして「サーバー向けプロセッサ市場の変化」とは? | 東京エレクトロンデバイス
                                                                            • WebAssembly night #10 (2020/12/09 19:30〜)

                                                                              お知らせ connpassではさらなる価値のあるデータを提供するため、2024年5月23日(木)を以ちましてイベントサーチAPIの無料での提供の廃止を決定いたしました。 2024年5月23日(木)以降より開始予定の「connpass 有料API」の料金プランにつきましてはこちらをご覧ください。 なお有料の対象となるのはAPIのみであり、connpassのサービスにつきましては今後も無料でご利用いただけます。 12月 9 WebAssembly night #10 開催取りやめとなった #9 より 10ヶ月、WebAssembly night が戻ってきました

                                                                                WebAssembly night #10 (2020/12/09 19:30〜)
                                                                              • Boids in WebAssembly Using Go

                                                                                Lately, I've been revisiting concepts and algorithms that I got stuck on when I was learning to code. One of them is the boids flocking simulation. We'll look at how this program can be written in Go and delivered via WebAssembly. You can find all the source code for this article, as well as the WASM demo, on healeycodes/boids. A boid is a simulated bird-like object, a bird-oid. Each boid looks at

                                                                                • d0iasm on Twitter: "Mozillaが財政的理由で70人の従業員を解雇したらしい。その内の1人はWebAssemblyコンパイラやFirefoxのJSエンジンを開発していたシニアエンジニアっぽい。開発するのが面白いプロダクトが儲かるとは限らないし、特に… https://t.co/lIKKTWG24x"

                                                                                  Mozillaが財政的理由で70人の従業員を解雇したらしい。その内の1人はWebAssemblyコンパイラやFirefoxのJSエンジンを開発していたシニアエンジニアっぽい。開発するのが面白いプロダクトが儲かるとは限らないし、特に… https://t.co/lIKKTWG24x

                                                                                    d0iasm on Twitter: "Mozillaが財政的理由で70人の従業員を解雇したらしい。その内の1人はWebAssemblyコンパイラやFirefoxのJSエンジンを開発していたシニアエンジニアっぽい。開発するのが面白いプロダクトが儲かるとは限らないし、特に… https://t.co/lIKKTWG24x"