HackerTrans
TopNewTrendsCommentsPastAskShowJobs

xkriva11

no profile record

Submissions

Native Raspberry Pi Version of the Oberon System 3

github.com
12 points·by xkriva11·hace 3 meses·0 comments

Selfie: Self-like environment with TiddlyWiki-style saving

github.com
2 points·by xkriva11·hace 4 meses·0 comments

Smalltalk's Browser: Unbeatable, yet Not Enough

blog.lorenzano.eu
9 points·by xkriva11·hace 4 meses·0 comments

ZXsheet

bunsen.itch.io
1 points·by xkriva11·hace 4 meses·1 comments

Nano Lander

pavel-krivanek.github.io
1 points·by xkriva11·hace 5 meses·1 comments

What If Java Had Symmetric Converter Methods on Collection?

donraab.medium.com
18 points·by xkriva11·hace 8 meses·0 comments

CADR Lisp Machine Emulator in WASM

lispcafe.org
27 points·by xkriva11·hace 9 meses·0 comments

comments

xkriva11
·hace 4 meses·discuss
Practice: https://pavel-krivanek.github.io/colorType/
xkriva11
·hace 4 meses·discuss
That's cool, but why not use the native colorForth keyboard layout?

https://www.ultratechnology.com/editor/dvorak.jpg
xkriva11
·hace 4 meses·discuss
Talking about Self... https://github.com/pavel-krivanek/Selfie

...but the infinite desktop is still missing there.
xkriva11
·hace 4 meses·discuss
To add to this, a quote from an article about the editor ed:

It’s important to realize that in ed you were usually editing a file you had already printed beforehand. If you only wanted to fix a few small things in a multi-page listing, you simply entered the corrections in ed on the relevant lines, added something here and there, and at the same time you would just write the simple minor fixes directly into the printout by hand-without having to tediously retype everything.

You had the files on paper, which is a very pleasant and ergonomic medium for reading. You can literally surround yourself with it, cover your desk, and easily move your eyes between dozens of functions. If you learn to keep order and stay oriented in that mountain of paper, you can be very effective.

Moreover, from an ergonomic point of view you wouldn’t be doing badly at all. Printed paper in natural light is definitely easier on the eyes than low-refresh-rate screens in the years that followed. Paper lets you quickly add notes, sketch a little graph, basically work in a very natural way - one people were used to back then from the moment they first held a crayon.

Most of the time a programmer isn’t writing code but reading it. In that respect, people back then may actually have had it better than we do today. When it did come to writing, the only truly more complicated part was essentially making corrections. The history of everything you’d done was right there on paper. I don’t want to idealize the way they worked back then, but all of this explains how they were able to work effectively even with such primitive tools.
xkriva11
·hace 4 meses·discuss
The paper printouts on the table are a kind of simple spatial browser. Thanks to this, we have UNIX (at least it explains how they were able to create anything at all with just a teletype back then).
xkriva11
·hace 4 meses·discuss
From a conceptual point of view, browsing code is like browsing a fractal. Tools must take this into account.
xkriva11
·hace 4 meses·discuss
ZXsheet is a full-featured spreadsheet application for the Sinclair ZX Spectrum written in just 10 lines of BASIC.
xkriva11
·hace 5 meses·discuss
But Squeak is 1996 ;)
xkriva11
·hace 5 meses·discuss
Or use existing one: https://github.com/Zag-Research/Zag-Smalltalk
xkriva11
·hace 5 meses·discuss
https://gtoolkit.com/ or https://moosetechnology.org/
xkriva11
·hace 5 meses·discuss
A small game with a randomly generated corridor inspired by the Psygnosis Lander
xkriva11
·hace 5 meses·discuss
Smalltalk offers several excellent features for LLM agents:

- Very small methods that function as standalone compilation units, enabling extremely fast compilation.

- Built-in, fast, and effective code browsing capabilities (e.g., listing senders, implementors, and instance variable users...). This makes it easy for the agent to extract only the required context from the system.

- Powerful runtime reflectivity and easily accessible debugging capabilities.

- A simple grammar with a more natural, language-like feel compared to Lisp.

- Natural sandboxing
xkriva11
·hace 5 meses·discuss
xwoaf-rebuild matches that

https://web.archive.org/web/20240901115514/https://pupngo.dk...
xkriva11
·hace 8 meses·discuss
You may try CADR (precursor to Genera) on-line: https://lispcafe.org/cadr/usim.html
xkriva11
·hace 8 meses·discuss
No, they used a tool (SystemTracer) running inside the original Smalltalk that enumerated all the objects in the running image and serialized them in a new image format into a new image file. Every time the image file format changed, it was transformed like this. Smalltalk is very close to a biological system.
xkriva11
·el año pasado·discuss
To downvote, you need a minimal amount of karma (something like 500 points)
xkriva11
·el año pasado·discuss
I think it's a variant of the Anthropic principle. This project has been around for many years, and if it hadn't been based on Smalltalk at the time, it might not have come into existence. It's a natural extension of how Smalltalk environments approach development tools, pushing it to a new level. For more technical details, refer to https://pharo.org/features.
xkriva11
·hace 5 años·discuss
t.rotate (a, v); // Original

t rotate (a, v); // Who needs dot?

t rotate a, v; // Who needs brackets?

t rotate by: a around: v; // Who needs ambiguity?

t rotateBy: a around: v // This is Smalltalk
xkriva11
·hace 5 años·discuss
You can still write code in a different language like C that will compile into Smalltalk VM bytecode. You will never be able to run any arbitrary code, just the one compiled for your machine. And in this case, the machine is virtual (but does not need to be). Symbolics Lisp machines were able to run Pascal as well, for example.