HackerTrans
TopNewTrendsCommentsPastAskShowJobs

asibahi

no profile record

Submissions

Adding WASM Plugins to Your App

blog.ar-ms.me
2 points·by asibahi·3 เดือนที่ผ่านมา·0 comments

Show HN: Tatfi – A Font Parser in Zig

sr.ht
3 points·by asibahi·7 เดือนที่ผ่านมา·0 comments

comments

asibahi
·7 วันที่ผ่านมา·discuss
I like this article. It puts to words something that has been in my mind for a while.
asibahi
·9 วันที่ผ่านมา·discuss
I love this. Any chance of having this be a downloadable application somehow?
asibahi
·12 วันที่ผ่านมา·discuss
> right handed presents some challenges too (my hand will come over letters I've just written and there's a risk of smudging them

You’re supposed to place your hand under the line you’re writing. Not to the right of it.
asibahi
·13 วันที่ผ่านมา·discuss
I’d argue that was active aggressive, actually.
asibahi
·28 วันที่ผ่านมา·discuss
Not to get into an argument, but most of the population in the Middle East are Muslim who don't give two shits who killed Jesus because they don't believe he was killed to begin with.
asibahi
·เดือนที่แล้ว·discuss
Over the past few days I have been making a spell checking TUI app. I used AI (meaning: free Gemini web interface) to discuss various aspects about the apps and debug compiler errors ang suggest useful rust crates for various problems.

Just a more helpful discord chat generally. It also gaslights you too!

Here is the tool: https://git.sr.ht/~asibahi/hoopoe
asibahi
·เดือนที่แล้ว·discuss
This can’t be serious.
asibahi
·เดือนที่แล้ว·discuss
It’s hacking when it’s someone you don’t like.
asibahi
·เดือนที่แล้ว·discuss
You made me curious. Has anyone invented new ways to ride horses in the age of the automobile?
asibahi
·เดือนที่แล้ว·discuss
It’s definitely a great tinkering language but .. eh .. the Zig team and community are extremely opinionated about how to use the language correctly.
asibahi
·เดือนที่แล้ว·discuss
I am saying as far as anyone other that the Bytecode Alliance is concerned it is custom API for Bytecode Alliance projects.
asibahi
·เดือนที่แล้ว·discuss
The component model is still in phase 1 (standardization is phase 5) and the Bytecode Alliance are its sponsors and the ones pushing it into the ecosystem with wasmtime.
asibahi
·เดือนที่แล้ว·discuss
I’m confused. Why not start the conversation in Polish?
asibahi
·2 เดือนที่ผ่านมา·discuss
Submitting a patch requires talking to other people.
asibahi
·2 เดือนที่ผ่านมา·discuss
His initials
asibahi
·2 เดือนที่ผ่านมา·discuss
This was a very interesting read. I wonder if similar techniques can apply to Turkish or Japanese dictionaries?
asibahi
·2 เดือนที่ผ่านมา·discuss
It works if you use Noto Emoji as the font.
asibahi
·2 เดือนที่ผ่านมา·discuss
No it is not. If you were introduced to the term via LLMs doesnt mean everyone was.
asibahi
·2 เดือนที่ผ่านมา·discuss
I do, but where does it say so in the spec?
asibahi
·2 เดือนที่ผ่านมา·discuss
This is the wat2wasm tool I have been playing with: https://webassembly.github.io/wabt/demo/wat2wasm/

It refuses to accept the following

    (module
      (func (export "addTwo") (param i32 i32) (result i32)
        (i32.add 
          local.get 0
          local.get 1
        )
      )
    )
which based on my reading should be accepted.

I will try the tools you mentioned but I personally settled on generating the unfolded ones for my experiments as they just seem easier.