HN user

lastmjs

60 karma
Posts21
Comments22
View on HN
btconethereum.com 6y ago

Bitcoin on Ethereum historical data charts

lastmjs
1pts0
usdonethereum.com 6y ago

USD on Ethereum Dashboard

lastmjs
2pts0
btconethereum.com 6y ago

Bitcoin on Ethereum

lastmjs
2pts0
eli5smartcontracts.com 6y ago

Solidity to ELI5 Compiler

lastmjs
2pts0
news.ycombinator.com 6y ago

Query Ethereum: chain analysis from a browser tab

lastmjs
1pts0
github.com 6y ago

Zwitterion: a web dev server that lets you import anything

lastmjs
103pts126
github.com 6y ago

A zero confusion polyglot static file server for front-end web development

lastmjs
2pts0
podcrypt.app 6y ago

Show HN: Skip the app store, listen to podcasts with a fully web-native PWA

lastmjs
2pts0
news.ycombinator.com 6y ago

Podcrypt Beta has been released

lastmjs
1pts0
news.ycombinator.com 6y ago

Let's Get GitHub Sponsors to Support Bitcoin and Ethereum

lastmjs
4pts1
medium.com 7y ago

Podcrypt Alpha

lastmjs
1pts0
hackernoon.com 7y ago

Patreon alternative for podcasts, using cryptocurrency

lastmjs
2pts0
news.ycombinator.com 7y ago

Voluntary universal subscriptions for podcasts

lastmjs
2pts3
medium.com 7y ago

The Need for an Open Assessment Platform in Higher Education

lastmjs
1pts0
javascriptpractice.com 7y ago

Show HN: Competency-based, crowd-sourced, tokenized JavaScript learning platform

lastmjs
1pts0
javascriptpractice.com 7y ago

Competency-based JavaScript learning platform

lastmjs
1pts0
hackernoon.com 7y ago

Podcrypt: automatic, fair, peer-to-peer podcast donations with Ether

lastmjs
1pts0
medium.com 8y ago

Zwitterion, Transpilation Made Simple

lastmjs
2pts0
scotch.io 9y ago

Use HTML custom elements to build robots and servers

lastmjs
4pts0
github.com 9y ago

Show HN: Express Web Components

lastmjs
4pts1
scotch.io 10y ago

Server-Side Web Components: How and Why?

lastmjs
6pts0
RustPython 2 years ago

We've been using RustPython as the Python interpreter for our project Kybra, which is a Python environment for the Internet Computer Protocol (decentralized cloud, where all programs are automatically replicated across 13-40 nodes). Wasm is the runtime environment on ICP.

It's been working quite well, though lack of C extensions is a problem. We're hoping to move to CPython once the wasi and C extension support is there.

But the project works, compiles to wasm32-wasi, and can execute on the live ICP network: https://github.com/demergent-labs/kybra

I believe most if not all of the missing features can be addressed and eventually Zwitterion could replace Webpack. I believe that non-bundlers will replace bundlers. Also, not all of the features Webpack provides I believe are necessary (like bundling) in forward-facing applications.

If you really want it you can open and issue and try to be convincing...but I'm pretty set on moving forward with just ES modules. I attempted this in the past and compiling CommonJS to ES modules was pretty complicated at the time. I'm not sure it would be worth doing, but perhaps it would be. I want Zwitterion to be forward-facing

No you're good! I just want to come through this with my integrity intact. Also, the browser-compatible Node.js libraries you spoke of above, those can be added to Zwitterion as well. I had something similar done in a previous version, but I removed it. All of these comments are going to be Zwitterion's roadmap, so thanks again.

I think it's simpler. No bundling. You don't have to include a bundle file, you just include files directly as you would have without a bundler. That may seem like a trivial difference, and it could be, but it leads to simpler code and less of a delta between what you think is happening with your modules and what actually happens at runtime.

Yeah I've been seeing that too. I've definitely been working on it recently, I just stopped using semantic release which was doing GitHub releases, and I've switched to just using tags...which apparently aren't releases. I'll need to sort that out. Definitely under active development!

Exactly. You don't need any of that if you don't want it. You can write everything in your HTML file if you want, put your script in a script element (though there will be no compilation of the script element, if you want that it needs to be in its own file).

I think the point of this release is to open up operations outside of CRUD. I'm not sure if you've been following graph.cool, but they've been having a lot of churn over the past few months. The issue you bring up about CRUD has been addressed and is one of the main reasons for this new release, as far as I understand.