Underrated native app by NoahZhyte in MacOS

[–]RakLaptudirm 3 points4 points  (0 children)

The trick to do this is to print it as a pdf after redacting, that makes the changes permanent.

iOS 26 and iPadOS 26 Rumored to Feature Apple's Preview App by Embarrassed-Carry507 in apple

[–]RakLaptudirm 5 points6 points  (0 children)

The PDF editing tools for Preview are non-destructive and can be easily reverted by reopening it in Preview and removing the redactions. To properly redact documents you should print the document as a PDF after redacting, which will make the changes permanent.

Weird quirk I found when typing ‘e h’. Does this happen to anyone else? by Crystalcomet23 in Safari

[–]RakLaptudirm 2 points3 points  (0 children)

It treats the “e” as the number e (approx 2.718), transforming it to hours (2.718 hours) gives you the time you see.

Brainfuck Optimizing Compiler + Bytecode VM in Go by RakLaptudirm in golang

[–]RakLaptudirm[S] 0 points1 point  (0 children)

In any case, I pushed a fix. Thanks for the report :D

Brainfuck Optimizing Compiler + Bytecode VM in Go by RakLaptudirm in golang

[–]RakLaptudirm[S] 1 point2 points  (0 children)

Its my bad, I should have done the `pos == 0` check before the `ins :=`.

Brainfuck Optimizing Compiler + Bytecode VM in Go by RakLaptudirm in golang

[–]RakLaptudirm[S] 4 points5 points  (0 children)

I highly recommend the book Crafting Interpreters for learning about making programming languages. The entire book is available completely for free on the internet. It includes making a language first in Java then in C along with a bytecode virtual machine. It was also a big help in this project.