I hereby claim:
- I am torch2424 on github.
- I am torch2424 (https://keybase.io/torch2424) on keybase.
- I have a public key ASBqkfcWRmJLpLeEyBk06pEvb3yP-YRH9XMysxtDtEbiQgo
To claim this, I am signing this object:
| # How to create systemd services: http://neilwebber.com/notes/2016/02/10/making-a-simple-systemd-file-for-raspberry-pi-jessie/ | |
| # Digital ocean on a mongodb service: https://www.digitalocean.com/community/tutorials/how-to-install-mongodb-on-ubuntu-16-04 | |
| [Unit] | |
| Description=Run SystemD as users | |
| After=network.target | |
| [Service] | |
| Type=simple | |
| User=[USER HERE] | |
| WorkingDirectory=[USER HOME] |
| <!DOCTYPE html> | |
| <!-- HTML5 Hello world by kirupa - http://www.kirupa.com/html5/getting_your_feet_wet_html5_pg1.htm --> | |
| <html lang="en-us"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Hello...</title> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css" type="text/css" /> | |
| <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.1/angular.min.js"></script> | |
| <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.6.1/angular-animate.js"></script> |
I hereby claim:
To claim this, I am signing this object:
| import { AsBind } from "as-bind"; | |
| const wasm = fetch("./path-to-my-wasm.wasm"); | |
| const asyncTask = async () => { | |
| const asBindInstance = await AsBind.instantiate(wasm); | |
| // You can now use your wasm / asbind instance! | |
| const response = asBindInstance.exports.myExportedFunctionThatTakesAString( | |
| "Hello World!" |
| // '../node_modules/as-bind/*' should be the relative path to this directory in your project | |
| export * from "../node_modules/as-bind/lib/assembly/asbind.ts"; |
| asc ./node_modules/as-bind/lib/assembly/as-bind.ts your-entryfile.ts [...other cli options...] |