HackerTrans
TopNewTrendsCommentsPastAskShowJobs

specy

no profile record

Submissions

[untitled]

1 points·by specy·قبل 7 أشهر·0 comments

[untitled]

1 points·by specy·قبل 12 شهرًا·0 comments

Learn Assembly the Interactive Way

asm-editor.specy.app
3 points·by specy·قبل 12 شهرًا·1 comments

Give context, not bias (to LLMs)

specy.app
1 points·by specy·السنة الماضية·0 comments

A different approach at liquid glass on the web

specy.app
3 points·by specy·السنة الماضية·3 comments

Open Source Web IDE for Assembly RISC-V, M68K, x86, MIPS

asm-editor.specy.app
4 points·by specy·السنة الماضية·1 comments

comments

specy
·قبل 7 أشهر·discuss
Learn generator functions, the `using` keyword and Symbols in JavaScript by making a very simple animation library
specy
·قبل 12 شهرًا·discuss
A website to teach and learn assembly, with an IDE, courses and exams, all in one app.

IDE: https://asm-editor.specy.app/

github repo: https://github.com/Specy/asm-editor
specy
·قبل 12 شهرًا·discuss
Not yet* https://github.com/Specy/asm-editor/issues/25 And 6502 is a bit harder
specy
·قبل 12 شهرًا·discuss
A course and platform for learning different assembly languages. The platform itself allows you to write different assembly languages like M68K, MIPS, RISC-V and X86. I just added a course that teaches the basics that every assembly languages share and by utilizing the IDE that I built, I can embed snippets of interactive code directly inside the course!
specy
·السنة الماضية·discuss
Thought this was the perfect place to share a project I've been working on for a few years: https://asm-editor.specy.app

It's an interactive online IDE for many assembly languages, currently M68K, MIPS, RISC-V and X86 (I need to improve X86). It has a ton of features that are made to teach assembly programming, and it can be embedded in other websites.
specy
·السنة الماضية·discuss
It does kind of need changes to the browser to implement properly. My implementation is more of a trick to "make it work" but it's absolutely not something doable or usable in reality.

There is no way (for now) to make something like it with pure web technologies, I was initially hoping that with the Houdini API it would be possible, but it seems not. It would be a really cool addition though
specy
·السنة الماضية·discuss
Most liquid glass implementations in the web are using feDisplacementMap to simulate the glass, but what if we actually use a 3D piece of glass to do it?

This approach takes a copy of the page and puts it inside a 3d context (three.js) to then simulates the page scroll to seem like a 1:1 copy of the paint layer of the browser. The post goes through the two approaches and shows a demo of liquid glass.

The implementation of glass is rather basic, but with the access to the whole paint layer, anything else can be added to it (PR welcome!)
specy
·السنة الماضية·discuss
I made a web IDE to teach assembly languages. My goal is to have a single webapp where there are courses, documentation and IDE of all assembly languages.

It's full of features to make it easier for beginners to understand how things work:

- instruction undo and step - breakpoints - function stack tracing and stack frame view. - history viewer (shows the side effects of each instruction) - I/O and memory viewer (both number and text) - number conversions for registers and memory - testcases (useful for professors making exercises) - auto completion and inline errors, etc...

It also has an embedding tool to be able to embed the ide in other websites. And be able to share a project by URL. This way professors can create their own courses and exercises to share with their students.

Repo: https://github.com/Specy/asm-editor

Next i want to improve the x86 emulator, add ARM, Z80 and chip-8.

I'm also writing assembly courses, if anyone wants to help out writing them, the repo is open to contributions!