roman

@hi@romanzolotarev.com


home: ✔ https://romanzolotarev.com

72 following, 553 followers

roman boosted

[?]Devine Lu Linvega » 🌐
@neauoire@merveilles.town

I see folks building bedrock-type abstractions more and more these days and adding on @tbsp's list, I tried to gather every single virtual machine designed explicitly to fend of bitrot or digital obsolesce by targeting a frozen specification I could think of.

I was wondering, I'm sure I must have forgotten some, if you can think of one that is not on the list, could you please let me know!
wiki.xxiivv.com/site/virtual_m

A list of virtual machines and a vague overview of their specs.

Alt...A list of virtual machines and a vague overview of their specs.

    ...
    Older...

    [?]Chuck » 🌐
    @ChuckMcManis@chaos.social

    @neauoire
    I think this is an excellent basis. I'm thinking we could build a bedrock VM and have some set of applications that will always work. (spoiler alert this was the original vision for what became Java) I wonder if we had targeted a 'terminal' rather than a 'window system' if we could have pulled that off.

    @tbsp

      ...

      [?]Devine Lu Linvega » 🌐
      @neauoire@merveilles.town

      @ChuckMcManis @tbsp I think so too!

      I don't think targeting a terminal rather than a framebuffer is necessarily easier, I thought about adding Java, but the scale is pretty large. I had Scheme-48 in my list, but I took it off, I wasn't sure if it was a good candidate or not.

        ...

        [?]and » 🌐
        @and@thicc.horse

        @neauoire @ChuckMcManis @tbsp bedrock to me says it should be (reasonable) for one person to implement. JVM and CLR feel more like "universal runtimes" which I'd call a "superset" of bedrock runtimes.

          ...

          [?]∴ esoterik ∴ [he/him/etc] » 🔓
          @d6@merveilles.town

          @and @neauoire @ChuckMcManis @tbsp it's possible java 1.0 (pre JIT, pre HotSpot, pre-gigantic standard library, pre-fancy-types) might qualify. it was simpler, but no one targets that anymore.

          more than a technical argument i think you can judge how "bedrock" a VM design is by something like:

          B = M / (U + 1)

          where M is the number of distinct implementers and U is the number of distinct users.

          you can tell the JDK/CLR are not very good bedrocks because is M is pretty small and U is gigantic. i would argue scheme is actually pretty good by this metric.

            ...

            [?]Devine Lu Linvega » 🔓
            @neauoire@merveilles.town

            @d6 @and @ChuckMcManis @tbsp scheme-48 was named like that after being implemented in 48 hours, but I looked at the size of the thing, and there's NOO WAYY-

              ...

              [?]∴ esoterik ∴ [he/him/etc] » 🔓
              @d6@merveilles.town

              @neauoire @and @ChuckMcManis @tbsp in fairness i bet you could implement varvara-48 or uxn-48 in a way most other people couldn't. i don't think this was their first (or second or third) scheme. they probably felt justified in grabbing preexisting work they did.

                ...

                [?]Devine Lu Linvega » 🔓
                @neauoire@merveilles.town

                @d6 @and @ChuckMcManis @tbsp yeah maybe, do you think it fits? I personally think Scheme-48 seems(from the outside anyways) pretty robust, in a.. cómo se dice.. permacomputing-sort of way

                  [?]Chloe [she/they] » 🔓
                  @angelwood@merveilles.town

                  @d6 @and @neauoire @ChuckMcManis @tbsp I think porting an 2.x version of the java-smartcard spec is the best option for a tiny-JVM

                  en.wikipedia.org/wiki/Java_Car

                  It limits code size to 64k, has a smaller most efficient encoding of Java bytecode and its standard library is limited to the bare essentials for java code to run. And it uses a super old version of the java bytecode (Version 2), so nearly every java interpreter is backwards compatible with it

                    ...

                    [?]Devine Lu Linvega » 🔓
                    @neauoire@merveilles.town

                    @angelwood @d6 @and @ChuckMcManis @tbsp I need to look into this some more, but do you think there's a java compiler that runs on the java card, capable of compiling Java?

                      ...

                      [?]Chloe [she/they] » 🔓
                      @angelwood@merveilles.town

                      @neauoire @d6 @and @ChuckMcManis @tbsp There is usually around 4-32kb of RAM on a smartcard so that wouldnt be an issue with a handcrafted java compiler. but it would not be suprized if code is not allowed to execute newly generated code as a security mechanism to protect the private crypto secrets it stores

                        ...

                        [?]Chloe [she/they] » 🔓
                        @angelwood@merveilles.town

                        @neauoire ok just double checked and there is no way for an applet to compile and install its own new applet

                        > There are also programming-model limitations. For instance a loaded library class can no longer be extended in the card; it is implicitly made final.

                        oracle.com/java/technologies/j

                        thats a bumer :/

                          ...

                          [?]Devine Lu Linvega » 🔓
                          @neauoire@merveilles.town

                          @angelwood without being to run the artifact, have you found a compiler that could run on 64kb of memory? I'd love to give that as an example during my talk at Oredev next month!

                            ...

                            [?]WimⓂ️ [he/they/彼] » 🔓
                            @wim_v12e@merveilles.town

                            @neauoire @angelwood If this is 64K of *addressable* memory, meaning you can load code into memory from slower, larger storage, then it can definitely work.
                            If everything (code and data) has to fit into 64K, then I think the compiler will have to be for a subset even for java 1.0

                              ...

                              [?]Devine Lu Linvega » 🔓
                              @neauoire@merveilles.town

                              @wim_v12e @angelwood I wasn't able to find one that I could run, I found some compilers that didn't work with the VMs, and VMs with no compilers that would match their specs. There's a LOT of toy implementations of early Java out there, this is awesome. Unfortunately, not a lot with working code.

                                [?]Chuck » 🔓
                                @ChuckMcManis@chaos.social

                                @neauoire
                                Weirdly, I was an expert witness at a patent case where I testified that because smart cards did not compile Java you couldn't say that they "ran Java".

                                @angelwood @d6 @and @tbsp

                                  ...

                                  [?]Devine Lu Linvega » 🔓
                                  @neauoire@merveilles.town

                                  @ChuckMcManis @angelwood @d6 @and @tbsp but does Java have a compiler that could run on something as memory restricted as the java cards?

                                    ...

                                    [?]Chloe [she/they] » 🔓
                                    @angelwood@merveilles.town

                                    @neauoire @ChuckMcManis @d6 @and @tbsp I tried compiling one of the ""tiny"" java compilers (janino) and it would be WAY to big.....

                                    but maybe one for a simpler language that compiles down to javacard-specific Bytecode? its just a stackmachine afterall

                                      [?]MVU » 🔓
                                      @mvu@sunny.garden

                                      @neauoire This is timely! I've been been playing with my own "heavily uxn and bedrock inspired" setup, but without much expertise outside of my dabbling with uxn so i will steal more inspiration from these ~

                                      I've been tinkering with leaning into the self-modifying code angle, as that is compelling to me. So far I've shoved both stacks into the addressable memory space as an experiment but haven't made it much farther than that.

                                      I think I mentioned this before, but trying to write my own flavour of uxn-ish bytecode has made me really appreciate the layout of your opcodes in that table. It is art~

                                        ...

                                        [?]Devine Lu Linvega » 🔓
                                        @neauoire@merveilles.town

                                        @mvu amazing! I'm eager to add it up on the list, if you document it and put it online :) Have fun, and SMC is so fun, I'm happy you're going that way as well!

                                          ...

                                          [?]ferunando » 🔓
                                          @gureito@mastodon.gamedev.place

                                          @neauoire @mvu this discussion makes me appreciate a side of this kind of systems that i had failed to realize before: is *very much* doable to start with one of them, get a feel for how things work, then spin up your own. that's beautiful.

                                            ...

                                            [?]ferunando » 🔓
                                            @gureito@mastodon.gamedev.place

                                            @neauoire @mvu i was having trouble convincing myself that it was ok to modify uxn to suit my particular needs. gotta internalize that yes, it is ok ^_^

                                              ...

                                              [?]MVU » 🔓
                                              @mvu@sunny.garden

                                              @neauoire @tbsp Wait I just realized uxn isn't on this list and should be!

                                                ...

                                                [?]Devine Lu Linvega » 🔓
                                                @neauoire@merveilles.town

                                                @mvu @tbsp there's enough links to uxn as it is I think ^^;

                                                  [?]Rob Isaac [He/him] » 🌐
                                                  @rmi@cloudisland.nz

                                                  @neauoire PICO-8, Picotron.

                                                    ...

                                                    [?]Devine Lu Linvega » 🌐
                                                    @neauoire@merveilles.town

                                                    @rmi those are super cool fantasy consoles, although not VMs designed to be re-implemented.

                                                      [?]Lains :permacomputing: » 🔓
                                                      @lains@merveilles.town

                                                      @neauoire Nga's link is broken.. I was curious about the name as it's a bit sus at a glance,, 😅

                                                        ...

                                                        [?]Devine Lu Linvega » 🔓
                                                        @neauoire@merveilles.town

                                                        @lains Oh, maybe @crc is having server issues?

                                                          ...

                                                          [?]Lains :permacomputing: » 🔓
                                                          @lains@merveilles.town

                                                          @neauoire Well, HTTP Error 502, so probably..

                                                            [?]crc » 🔓
                                                            @crc@mastodon.bsd.cafe

                                                            @neauoire @lains the server is currently getting hit hard by ai crawlers; I'm working on it

                                                              ...

                                                              [?]Devine Lu Linvega » 🔓
                                                              @neauoire@merveilles.town

                                                              @crc @lains thanks for the head's up, good luck fixing it!

                                                                [?]mrwonko » 🌐
                                                                @mrwonko@chaos.social

                                                                @neauoire @tbsp I have a soft spot for QVM, the Quake Virtual Machine. It's not quite bedrock yet, but it could get there. I've recently started exploring writing an LLVM backend for it so I can use modern C++. It would be interesting to standardize a set of syscalls that make it useful for general software development…

                                                                  ...

                                                                  [?]Devine Lu Linvega » 🌐
                                                                  @neauoire@merveilles.town

                                                                  @mrwonko @tbsp I know of it, but I never thought of it as a general purpose host, a bit in the same category as Another World's VM, if you do take it down the road, please keep me posted!

                                                                    [?]H3RALD » 🔓
                                                                    @h3rald@merveilles.town

                                                                    @neauoire @tbsp Love to see my little xyw listed there 😊😍 Although it is mostly stack-oriented, it does have four registers as well, so I am wondering if it would be considered a sort of stack/register hybrid VM, if there is such a thing. The assembler is modeled after Uxn and Bedrock though, so concatenative syntax just with different opcodes.

                                                                    And WOW! I didn't know there were that many little VMs!

                                                                      ...

                                                                      [?]Devine Lu Linvega » 🔓
                                                                      @neauoire@merveilles.town

                                                                      @h3rald @tbsp I'm sure in turn xyw will inspire other offshoots and I'll be happy to add them on there too!

                                                                        [?]Nils Bonfils » 🔓
                                                                        @nils@mastodon.bsd.cafe

                                                                        @neauoire @tbsp I did make one a few years ago, inspired by varavara but using a slight variation of the GreenArray's F18a chip opcodes. The code is not up as I moved from git to fossil, but I could put it back up sometime this week or the next. The documentation still seems up: blazebone.com/pochi/

                                                                        The goal was less fighting bit rot (although I assumed it was inherent to making a small scale VM) and more about experimenting with ColorForth and seeing how lean things could get.

                                                                        Development is currently paused for an indefinite amount of time, but if you ever want to add it to your table, here is the tech specs: The Pochi VM is a 32 bits dual stack machine with (for now) 52 six bits opcodes, 7 registers, (for now) 256KB of RAM with a variable amount of devices.

                                                                          ...

                                                                          [?]Devine Lu Linvega » 🔓
                                                                          @neauoire@merveilles.town

                                                                          @nils @tbsp let me know if you resume work on it, and I'll add it : )

                                                                            [?]iooioio » 🔓
                                                                            @iooioio@fosstodon.org

                                                                            @neauoire Lovely list! Does count?

                                                                            konilo.org/

                                                                            cc @crc

                                                                              ...

                                                                              [?]Devine Lu Linvega » 🔓
                                                                              @neauoire@merveilles.town

                                                                              @iooioio @crc it does! I've replaced Nga with Ilo.

                                                                                ...

                                                                                [?]crc » 🔓
                                                                                @crc@mastodon.bsd.cafe

                                                                                @neauoire @iooioio ilo is definitely a better fit for this list than nga was. If you want a similar short description to some of the others, maybe something like "64K cells of memory, 8 devices, two stacks, 30 opcodes". While it's mostly known for running konilo, I do have a few non-forth systems running on it as well.

                                                                                  ...

                                                                                  [?]Devine Lu Linvega » 🔓
                                                                                  @neauoire@merveilles.town

                                                                                  @crc @iooioio thanks! I've updated it : )

                                                                                    [?]Matt Gumbley » 🌐
                                                                                    @M0CUV@mastodon.radio

                                                                                    @neauoire @tbsp @crc Would my Transputer emulation system qualify? devzendo.github.io/parachute/

                                                                                      ...

                                                                                      [?]Devine Lu Linvega » 🌐
                                                                                      @neauoire@merveilles.town

                                                                                      @M0CUV I think so yes! I'll add it

                                                                                        roman boosted

                                                                                        [?]OpenBSD Amsterdam » 🌐
                                                                                        @OpenBSDAms@mastodon.bsd.cafe

                                                                                        PSA!

                                                                                        We are OpenBSD Amsterdam!
                                                                                        Not Linux || Windows Amsterdam.

                                                                                        EOPSA

                                                                                        😄

                                                                                        Alt...Think About It GIF by Identity

                                                                                          ...
                                                                                          Older...

                                                                                          [?]Kuba =)K [he/him] » 🔓
                                                                                          @kuba@ruby.social

                                                                                          @OpenBSDAms that Linux thing I got, but are you sure you are not Microsoft OBSesseD?

                                                                                            ...

                                                                                            [?]OpenBSD Amsterdam » 🔓
                                                                                            @OpenBSDAms@mastodon.bsd.cafe

                                                                                            @kuba very sure! The closest we get to M$ is email from outlook.com and the odd xls/doc. And you get a VM for 365, days.

                                                                                            Alt...word everyone GIF

                                                                                              ...

                                                                                              [?]Kuba =)K [he/him] » 🔓
                                                                                              @kuba@ruby.social

                                                                                              @OpenBSDAms and ILOVEYOU !

                                                                                                [?]Stefano Marinelli » 🌐
                                                                                                @stefano@mastodon.bsd.cafe

                                                                                                @OpenBSDAms We all know you're FishLinux Amsterdam! 😆

                                                                                                  [?]Parade du Grotesque 💀 » 🌐
                                                                                                  @ParadeGrotesque@mastodon.sdf.org

                                                                                                  @OpenBSDAms

                                                                                                  OK, you made me laugh... 😂 :openbsd:

                                                                                                    [?]eviloatmeal » 🌐
                                                                                                    @eviloatmeal@floppy.peepee.party

                                                                                                    @OpenBSDAms Did some servers fall over again? I guess right now you're just " Amsterdam".

                                                                                                    ...

                                                                                                    [?]OpenBSD Amsterdam » 🌐
                                                                                                    @OpenBSDAms@mastodon.bsd.cafe

                                                                                                    @eviloatmeal not really... servers are doing fine. httpd seems to not be reachable.

                                                                                                      roman boosted

                                                                                                      [?]Devine Lu Linvega » 🌐
                                                                                                      @neauoire@merveilles.town

                                                                                                      Making games and throwing them back through the time machine.
                                                                                                      Uxn68 emulator by @d6.
                                                                                                      phial.org/d6/uxn68k/
                                                                                                      :mac:

                                                                                                      Alt...Donsole running on Minivmac at 2x, 4x and Maxx.

                                                                                                        roman boosted

                                                                                                        [?]Devine Lu Linvega » 🌐
                                                                                                        @neauoire@merveilles.town

                                                                                                        One of the first game we ever published for was Donsol, five years ago, to celebrate, we've made a whole new version of the game with new monster sprites, better resolution and animations.

                                                                                                        We had originally made it with the Playdate in mind, but they didn't want it so we're making available to play it directly in the itchio page, or via your favourite Uxn emulator!

                                                                                                        hundredrabbits.itch.io/donsol

                                                                                                        We hope that you enjoy it.
                                                                                                        Have a good autumn. :)

                                                                                                        Rek & Dev

                                                                                                        Monster and potion cards drawn in pixel.

                                                                                                        Alt...Monster and potion cards drawn in pixel.

                                                                                                          ...

                                                                                                          [?]Devine Lu Linvega » 🔓
                                                                                                          @neauoire@merveilles.town

                                                                                                          There's also an illustrated instruction guidebook that comes with it, in the style of these old NES cartridge manuals.

                                                                                                          A standard deck of 54 cards, jokers included, is a dungeon. You begin with 21 health points. Shuffle the deck and draw 4 cards, display them before you, this is a room, pick cards until the room is empty or escape. Draw the next four cards, a game ends when the last card has been dealt with or you have no more health points.

You may escape if you have not escaped the previous room or if no monsters are left in the room. When escaping, the remaining cards are put back in the deck and the deck is shuffled.
♥︎ Heart Potions

A potion card gives you health points equal to its value but picture cards (J,Q,K,A) are worth 11.

Drinking multiple potions in a row, without picking a monster or shield card in-between, will make you sick and result in no healing, only the first potion's value will be gained. You can heal up to a maximum of 21 health points.
♦ Diamond Shields

A shield card gives you shield points equal to its value but picture cards (J,Q,K,A) are worth 11. A shield automatically absorbs damages inflicted by a monster up to its own value.

Once used against a monster, a shield can only defend against monsters of increasingly smaller values, using a shield on a monster with higher or equal value to the previous will break it and you receive the monster's full value in damage. Using a shield card will always replace a previously equipped shield.
♣♠ Club/Spade/Joker Monsters

                                                                                                          Alt...A standard deck of 54 cards, jokers included, is a dungeon. You begin with 21 health points. Shuffle the deck and draw 4 cards, display them before you, this is a room, pick cards until the room is empty or escape. Draw the next four cards, a game ends when the last card has been dealt with or you have no more health points. You may escape if you have not escaped the previous room or if no monsters are left in the room. When escaping, the remaining cards are put back in the deck and the deck is shuffled. ♥︎ Heart Potions A potion card gives you health points equal to its value but picture cards (J,Q,K,A) are worth 11. Drinking multiple potions in a row, without picking a monster or shield card in-between, will make you sick and result in no healing, only the first potion's value will be gained. You can heal up to a maximum of 21 health points. ♦ Diamond Shields A shield card gives you shield points equal to its value but picture cards (J,Q,K,A) are worth 11. A shield automatically absorbs damages inflicted by a monster up to its own value. Once used against a monster, a shield can only defend against monsters of increasingly smaller values, using a shield on a monster with higher or equal value to the previous will break it and you receive the monster's full value in damage. Using a shield card will always replace a previously equipped shield. ♣♠ Club/Spade/Joker Monsters

                                                                                                          Older...

                                                                                                          [?][AFK] Mario [he/him] » 🌐
                                                                                                          @mario_afk@merveilles.town

                                                                                                          @neauoire @bd they didn’t wanted it o:?!?

                                                                                                            ...

                                                                                                            [?]Devine Lu Linvega » 🌐
                                                                                                            @neauoire@merveilles.town

                                                                                                            @mario_afk @bd they said it was too unclear, the game rules were not explicit enough. Which is fair, it's a weird game, and the rules are weird too.

                                                                                                            But it's not really an issue, I think one of the main advantage of targetting uxn in this case, is that it's completely dissociated from the playdate's choice, and that we can just turn around and release the same binary everywhere else.

                                                                                                            Had we wrote this natively for the playdate, I would have been a bit disappointed, having to rewrite it and all, but like this, it's no problem, which is kindda neat!

                                                                                                              ...

                                                                                                              [?][AFK] Mario [he/him] » 🌐
                                                                                                              @mario_afk@merveilles.town

                                                                                                              @neauoire @bd I even thought it was going to be in the season but oh well happy I can play it again :)!! The new art looks sick

                                                                                                                [?]Erinn Dustrious » 🌐
                                                                                                                @errorinn@mastodon.social

                                                                                                                @neauoire Extremely cool and I enjoyed figuring it out, thank you for making and releasing it!!

                                                                                                                Bug report or maybe I'm misunderstanding: is the deck supposed to be a single standard one? Found some duplicate cards, and beat a run with zero jokers encountered

                                                                                                                A screenshot of the game Donsol showing two 4 of diamonds cards and two J of hearts cards

                                                                                                                Alt...A screenshot of the game Donsol showing two 4 of diamonds cards and two J of hearts cards

                                                                                                                  ...

                                                                                                                  [?]Devine Lu Linvega » 🌐
                                                                                                                  @neauoire@merveilles.town

                                                                                                                  @errorinn WHAT!? haha, no that's not normal at all.

                                                                                                                  Damn, I'm gonna have to double check this. This is not normal X) Thanks for catching this Erinn, I've played up with the logic a bit today, I'll make sure the deck is sound, I must have broken something..

                                                                                                                  Thank you for playing and finding this bug ^__^

                                                                                                                    [?]Devine Lu Linvega » 🌐
                                                                                                                    @neauoire@merveilles.town

                                                                                                                    @errorinn I've been trying to replicate this and I was wondering, did you get these broken shuffles once, or did you get them often?

                                                                                                                      ...

                                                                                                                      [?]Erinn Dustrious » 🌐
                                                                                                                      @errorinn@mastodon.social

                                                                                                                      @neauoire Hard to say because it's not easy to keep track of the cards, but once I noticed I was able to get that screenshot immediately on my next game. Will try a few more and see what I can spot for you

                                                                                                                        ...

                                                                                                                        [?]Erinn Dustrious » 🌐
                                                                                                                        @errorinn@mastodon.social

                                                                                                                        @neauoire I can get a clearly broken shuffle maybe 1-in-6 runs. I've never gotten one right after relaunching the game but that might be coincidence.

                                                                                                                          ...

                                                                                                                          [?]Erinn Dustrious » 🌐
                                                                                                                          @errorinn@mastodon.social

                                                                                                                          @neauoire 1-in-6 not counting the times I get a Donsol and no shields in the first hand, anyway 😂

                                                                                                                            ...

                                                                                                                            [?]Erinn Dustrious » 🌐
                                                                                                                            @errorinn@mastodon.social

                                                                                                                            @neauoire Have also discovered that leaving rooms repeatedly can get the game stuck in a glitch-loop. Here's one where all I press is ctrl to start, alt to leave, and the bug triggers from no further input. Have to refresh to fix

                                                                                                                            Alt...Screen recording of the game Donsol, showing the game looping and corrupted after a hand is dealt

                                                                                                                              ...

                                                                                                                              [?]alanxoc3 » 🌐
                                                                                                                              @alanxoc3@tilde.zone

                                                                                                                              @errorinn @neauoire I found this same bug.

                                                                                                                                ...

                                                                                                                                [?]Devine Lu Linvega » 🌐
                                                                                                                                @neauoire@merveilles.town

                                                                                                                                @alanxoc3 @errorinn Fixed :) Thanks for finding this.

                                                                                                                                  [?]nilix » 🔓
                                                                                                                                  @nilix@cafe.nilfm.cc

                                                                                                                                  @neauoire @errorinn i have also run into this, i think it has to do with the reshuffle that happens when escaping a room?

                                                                                                                                    ...

                                                                                                                                    [?]Devine Lu Linvega » 🔓
                                                                                                                                    @neauoire@merveilles.town

                                                                                                                                    @nilix @errorinn I've taken down a few ideas on how to fix this last night, and I'll try to make this air tight today, thanks a lot for helping me debug this Erinn :)

                                                                                                                                      [?]alanxoc3 » 🌐
                                                                                                                                      @alanxoc3@tilde.zone

                                                                                                                                      @neauoire OMG, the animation is awesome. I spent hours playing donsol a few years ago. This is a fantastic way to commemorate it.

                                                                                                                                        [?]Greylord :sm64_w: :sm64_i: :sm64_z: :sm64_z: :sm64_a: :catte: » 🔓
                                                                                                                                        @cyberquixote@infosec.exchange

                                                                                                                                        @neauoire the art is charming af, did you design the visuals?

                                                                                                                                          ...

                                                                                                                                          [?]Games That I Missed [He/Him] » 🌐
                                                                                                                                          @GamesMissed@mastodon.social

                                                                                                                                          @neauoire I checked out your itch.io page, only to find out that I bought this nearly a decade ago. I'm embarassed to say that I have no memory of it. I will rectify that.

                                                                                                                                          And what a surprise to see that you have ROMs for NES! And DS, and GBA, and 3DS! I'm putting this on all my devices.

                                                                                                                                            ...

                                                                                                                                            [?]Devine Lu Linvega » 🌐
                                                                                                                                            @neauoire@merveilles.town

                                                                                                                                            @GamesMissed It's our "hello world" kind of game, whenever we try a new platform, this game tends to be the first thing we write to learn the platform :)

                                                                                                                                              roman boosted

                                                                                                                                              [?]zep.p8 » 🌐
                                                                                                                                              @zep@mastodon.social

                                                                                                                                              spritesheet explorer

                                                                                                                                                [?]kabads » 🌐
                                                                                                                                                @kabads@mastodon.sdf.org

                                                                                                                                                OK. Today is the day I switch from Linux being my daily driver (which it has for a few years now), to . Wish me luck. :-)

                                                                                                                                                  ...

                                                                                                                                                  [?]Justine Smithies [She / Her] » 🌐
                                                                                                                                                  @justine@snac.smithies.me.uk

                                                                                                                                                  Good luck and I hope you enjoy!

                                                                                                                                                    2 ★ 0 ↺

                                                                                                                                                    [?]roman » 🔓
                                                                                                                                                    @hi@romanzolotarev.com

                                                                                                                                                    good luck and i hope everything works as expected!

                                                                                                                                                      [?]Flaki [he/him] » 🌐
                                                                                                                                                      @flaki@flaki.social

                                                                                                                                                      You know, having your own solar is pretty damn good on _any_ day — but when electricity prices are 5-6 times the average (surging to over half an euro per kilowatt-hour) it sure feels fkn great to have your own solar panels/batteries to cover all your electricity/heating and even car charging needs without having to touch the grid at all. 👀

                                                                                                                                                      Two graphs showing current grid power pricing including all fees and daily photovoltaic generation between Saturday and Today. The grid price moves between 8-20 cents/kWh most of the time on the weekend, with occasional spikes to around 30 cents, then Sunday evening pushes the price to peak at over 60 cents. Since Monday the price barely dips under 30 cents with peaks to 50-70 cents per kilowatt-hour.
Meanwhile the graph below shows daily generation at 12kWh for Saturday as a bout of bad weather arrives, Sunday brings in under 6kWh but Monday peaks at 17kWh and today's production is already at 3kWh by 10:30AM.

                                                                                                                                                      Alt...Two graphs showing current grid power pricing including all fees and daily photovoltaic generation between Saturday and Today. The grid price moves between 8-20 cents/kWh most of the time on the weekend, with occasional spikes to around 30 cents, then Sunday evening pushes the price to peak at over 60 cents. Since Monday the price barely dips under 30 cents with peaks to 50-70 cents per kilowatt-hour. Meanwhile the graph below shows daily generation at 12kWh for Saturday as a bout of bad weather arrives, Sunday brings in under 6kWh but Monday peaks at 17kWh and today's production is already at 3kWh by 10:30AM.

                                                                                                                                                        ...

                                                                                                                                                        [?]Flaki [he/him] » 🌐
                                                                                                                                                        @flaki@flaki.social

                                                                                                                                                        And sure enough, with winter also coming are the shorter, gloomier - and much colder - days where solar won't help us a ton up north (especially with snow/frost obscuring the panels), but we will still have our batteries which means we'll be able to take the edge off by charging the battery in lower cost periods and using the stored electricity when costs are spiking.

                                                                                                                                                        ...

                                                                                                                                                        [?]Flaki [he/him] » 🌐
                                                                                                                                                        @flaki@flaki.social

                                                                                                                                                        With the large-scale deployment of gridscale solar in recent years, it can often feel like having your own solar is "redundant" - why well, "if there is good weather with abundant sun, electricity is cheap anyway and in bad weather my solar panels won't help much anyway!". And, you know, in a perfect world without a data center boom and widespread sabotage of undersea power interconnects and no climate change effects hindering power production...that might have been true. But having your own battery is magical, and a 10kWh battery is not much larger than a hallway shoe rack, apartments aren't excluded, they don't need "loads of unshaded sun-facing space on a facade that might be protected by zoning laws".

                                                                                                                                                        You know how the home solar panel boom has forced utilities to recon with the insufficiencies of the grid infrastructure? I keep wondering what'd happen if suddenly a 10kWh battery has manifested in every home and people started switching in droves to market electricity pricing...

                                                                                                                                                        ...
                                                                                                                                                        1 ★ 0 ↺

                                                                                                                                                        [?]roman » 🌐
                                                                                                                                                        @hi@romanzolotarev.com

                                                                                                                                                        yes! home battery is a game changer

                                                                                                                                                        roi on solar panels is not that impressive if you have grid connection, but it still saves us a lot especially in cold sunny springs and autumns

                                                                                                                                                        for being able to go fully off-grid from march till november solar is my favorite

                                                                                                                                                          2 ★ 1 ↺

                                                                                                                                                          [?]roman » 🌐
                                                                                                                                                          @hi@romanzolotarev.com

                                                                                                                                                          is it a good idea to use a functional programming style when writing posix c? if so, would you recommend to use any c libraries? (runtime is )

                                                                                                                                                            ...

                                                                                                                                                            [?]Anton Zadorožnyj » 🌐
                                                                                                                                                            @dartov@hachyderm.io

                                                                                                                                                            @hi in my opinion some aspects of fp are useful when writing C (consts are great, pure functions, functional pointers), but for a full fp experience you need tco, garbage collection (and it means no hardened OpenBSD malloc for you). Libraries-wise Glib will give you some useful structures using native malloc, but bdwgc for example is not going to use it, and because it's conservative, performance will be abysmal.

                                                                                                                                                            Why use C? OCaml is right there, works great on OpenBSD

                                                                                                                                                              ...
                                                                                                                                                              1 ★ 0 ↺

                                                                                                                                                              [?]roman » 🔓
                                                                                                                                                              @hi@romanzolotarev.com

                                                                                                                                                              thank you!

                                                                                                                                                              i'd like to keep things as simple as possible, and c works out of the box in . i'll try sticking with native malloc and see how far i can get

                                                                                                                                                                ...

                                                                                                                                                                [?]Anton Zadorožnyj » 🔓
                                                                                                                                                                @dartov@hachyderm.io

                                                                                                                                                                @hi well, fp simplicity for the developer comes at a cost for underlying platform, but I get the idea. sys/queue.h and sys/tree.h have some structures you might find useful.

                                                                                                                                                                  [?]Tim Chase » 🌐
                                                                                                                                                                  @gumnos@mastodon.bsd.cafe

                                                                                                                                                                  @hi

                                                                                                                                                                  It might depend on how you go about it and what you expect of it. Basic anonymous-functions might be possible (depending on the version of C), but closures (and managing their storage lifetime) might be more challenging.

                                                                                                                                                                    ...
                                                                                                                                                                    0 ★ 0 ↺

                                                                                                                                                                    [?]roman » 🔓
                                                                                                                                                                    @hi@romanzolotarev.com

                                                                                                                                                                    i want some basic fp tools: map/reduce, immutability, pure functions, recursions. but maybe i'm asking too much from posix c...

                                                                                                                                                                      ...

                                                                                                                                                                      [?]Tim Chase » 🔓
                                                                                                                                                                      @gumnos@mastodon.bsd.cafe

                                                                                                                                                                      @hi

                                                                                                                                                                      map: doable with macros (the sys/queue.h header has good examples of things like the *_FOREACH macros). They tend to be macros because the exact method of iteration would differ depending on the data-structure over which you're iterating (iterating over a single-linked-list is different from iterating breadth-first over a tree is different from iterating depth-first over a tree, all of which are different from iterating over a trie or btree)

                                                                                                                                                                      reduce: I'd have to think a bit harder on that, but I suspect it would involve similar FOREACH-style macros

                                                                                                                                                                      immutability/pure functions: using "const" on appropriate functions/parameters and ensuring that you don't modify parameters. There might be some complexity if you're trying to support older C standards (IIRC, the ability to return non-simple types from functions was added later), so they might end up being semi-pure functions where a parameter is used to designate the function-output location for more complex data-types like structs/unions

                                                                                                                                                                      recursion: has always been there in C 🙂

                                                                                                                                                                        roman boosted

                                                                                                                                                                        [?]Andy Balaam » 🌐
                                                                                                                                                                        @andybalaam@mastodon.social

                                                                                                                                                                        Feeling sad about AI

                                                                                                                                                                        video.infosec.exchange/w/rYgQF

                                                                                                                                                                        I talk about why I've been feeling sad and encourage myself and you to feel some hope.

                                                                                                                                                                        Transcript: artificialworlds.net/blog/2026

                                                                                                                                                                          ...

                                                                                                                                                                          [?]alanxoc3 » 🌐
                                                                                                                                                                          @alanxoc3@tilde.zone

                                                                                                                                                                          @andybalaam keep it up, i like your video!!!

                                                                                                                                                                            roman boosted

                                                                                                                                                                            [?]Tomáš » 🌐
                                                                                                                                                                            @prahou@merveilles.town

                                                                                                                                                                            gospel

                                                                                                                                                                            they spent a lot of money to make you forget that you can just turn it off and walk away.

                                                                                                                                                                            Alt...they spent a lot of money to make you forget that you can just turn it off and walk away.

                                                                                                                                                                              ...
                                                                                                                                                                              Older...

                                                                                                                                                                              [?]Ozzelot :ai_free: [they/he/any] » 🔓
                                                                                                                                                                              @ozzelot@mstdn.social

                                                                                                                                                                              @prahou mr foldymobilek!

                                                                                                                                                                                ...

                                                                                                                                                                                [?]Tomáš » 🔓
                                                                                                                                                                                @prahou@merveilles.town

                                                                                                                                                                                @ozzelot it hates itself!

                                                                                                                                                                                  ...

                                                                                                                                                                                  [?]Moses Izumi (he/him) » 🔓
                                                                                                                                                                                  @moses_izumi@fe.disroot.org

                                                                                                                                                                                  @prahou @ozzelot
                                                                                                                                                                                  folding screens are the embodiment of everything wrong with the post-iPhone cellphone industry

                                                                                                                                                                                  (Surface Duo doesn't count, since it's two separate screens)

                                                                                                                                                                                    ...

                                                                                                                                                                                    [?]Tomáš » 🔓
                                                                                                                                                                                    @prahou@merveilles.town

                                                                                                                                                                                    @moses_izumi @ozzelot i thought the "everything wrong with" was the bit where they somehow convinced you to buy the same thing every year for the past 20.

                                                                                                                                                                                      [?]✶Rayotron✶ » 🌐
                                                                                                                                                                                      @rayotron@mstdn.social

                                                                                                                                                                                      @prahou Amen Japanese Jesus! Thou hathest spakest thee truthest.

                                                                                                                                                                                        ...

                                                                                                                                                                                        [?]Tomáš » 🌐
                                                                                                                                                                                        @prahou@merveilles.town

                                                                                                                                                                                        @rayotron stay prayed up!

                                                                                                                                                                                          [?]オチュー (stop colonialism 🇵🇸🇸🇩🇳🇨 ) [Recalculating route..] » 🌐
                                                                                                                                                                                          @otyugh@pouet.chapril.org

                                                                                                                                                                                          @prahou I feel like jjay is stealing from skeletor memes (no other source possible indeed) ; but copying is holly anyway \o/

                                                                                                                                                                                            ...

                                                                                                                                                                                            [?]Tomáš » 🌐
                                                                                                                                                                                            @prahou@merveilles.town

                                                                                                                                                                                            @otyugh JJ is much older than Skeletor, sib

                                                                                                                                                                                            if anything, Skeletor stole from JJ

                                                                                                                                                                                              [?]Andy Alderwick [he / him / Dr] » 🔓
                                                                                                                                                                                              @alderwick@merveilles.town

                                                                                                                                                                                              @prahou the facial expression on the folding mobilek! :flan_smile:

                                                                                                                                                                                                ...

                                                                                                                                                                                                [?]Tomáš » 🔓
                                                                                                                                                                                                @prahou@merveilles.town

                                                                                                                                                                                                @alderwick they hate each other!

                                                                                                                                                                                                  ...

                                                                                                                                                                                                  [?]Andy Alderwick [he / him / Dr] » 🔓
                                                                                                                                                                                                  @alderwick@merveilles.town

                                                                                                                                                                                                  @prahou Ah, so the criticism of “it's two smartphones stuck together” applies literally here :flan_XD:

                                                                                                                                                                                                    ...

                                                                                                                                                                                                    [?]Tomáš » 🔓
                                                                                                                                                                                                    @prahou@merveilles.town

                                                                                                                                                                                                    @alderwick well, you're assuming i put any thought into what i draw :angry_laugh:

                                                                                                                                                                                                      [?]Omnivore » 🌐
                                                                                                                                                                                                      @Ralph@hear-me.social

                                                                                                                                                                                                      @prahou

                                                                                                                                                                                                      Your doesn't explain that the child is talking about the phone that he is holding. Without this bit of context, the message becomes ambiguous.

                                                                                                                                                                                                        ...

                                                                                                                                                                                                        [?]Tomáš » 🌐
                                                                                                                                                                                                        @prahou@merveilles.town

                                                                                                                                                                                                        @Ralph that's a lot of assuming from your end. the *phone* has nothing to do with what he's saying.

                                                                                                                                                                                                        stay prayed up.

                                                                                                                                                                                                          roman boosted

                                                                                                                                                                                                          [?]Devine Lu Linvega » 🌐
                                                                                                                                                                                                          @neauoire@merveilles.town

                                                                                                                                                                                                          This is calming.
                                                                                                                                                                                                          hundredrabbits.itch.io/legs

                                                                                                                                                                                                          Alt...Wireworld cellular automata in 3d, two interlocked rings.

                                                                                                                                                                                                          ...

                                                                                                                                                                                                          [?]calutron » 🌐
                                                                                                                                                                                                          @calutron@merveilles.town

                                                                                                                                                                                                          @neauoire can orca control this or vice versa

                                                                                                                                                                                                            ...

                                                                                                                                                                                                            [?]Devine Lu Linvega » 🌐
                                                                                                                                                                                                            @neauoire@merveilles.town

                                                                                                                                                                                                            @calutron it could yeah, what kind of controls do you imagine?

                                                                                                                                                                                                              ...

                                                                                                                                                                                                              [?]calutron » 🌐
                                                                                                                                                                                                              @calutron@merveilles.town

                                                                                                                                                                                                              @neauoire something about them just feels like they rhyme? haha. It makes me want different blocks to emit different tones when the color passes through. Or maybe more like a simple visualizer where the orca midi is making blocks appear and disappear

                                                                                                                                                                                                                ...

                                                                                                                                                                                                                [?]Devine Lu Linvega » 🌐
                                                                                                                                                                                                                @neauoire@merveilles.town

                                                                                                                                                                                                                @calutron well, wireworld is pretty cool for making wires, it could do something like this:
                                                                                                                                                                                                                youtube.com/watch?v=m5kT47US7e

                                                                                                                                                                                                                  [?]𝙹𝚘𝚎𝚕 𝙲𝚊𝚛𝚗𝚊𝚝 ♑️🤪 » 🌐
                                                                                                                                                                                                                  @joel@gts.tumfatig.net

                                                                                                                                                                                                                  My daughter went to a #Linux install party this week-end. And came back home with a Thinkcentre running #YunoHost and a will to selfhost stuff at her home.

                                                                                                                                                                                                                  Yes… the same little girl that was having heart attacks every time she saw my Xterm outputs… 🤷‍♂️

                                                                                                                                                                                                                  Time change.

                                                                                                                                                                                                                    ...
                                                                                                                                                                                                                    1 ★ 0 ↺

                                                                                                                                                                                                                    [?]roman » 🌐
                                                                                                                                                                                                                    @hi@romanzolotarev.com

                                                                                                                                                                                                                    @joel@tumfatig.net so cool ❤

                                                                                                                                                                                                                      🗳 ✓

                                                                                                                                                                                                                      [?]Ashwin Dixit » 🌐
                                                                                                                                                                                                                      @ashwin@defcon.social

                                                                                                                                                                                                                      Would you rather...

                                                                                                                                                                                                                      look good:0
                                                                                                                                                                                                                      feel good:8
                                                                                                                                                                                                                      be good:8
                                                                                                                                                                                                                      ...

                                                                                                                                                                                                                      [?]Tim Chase » 🌐
                                                                                                                                                                                                                      @gumnos@mastodon.bsd.cafe

                                                                                                                                                                                                                      @ashwin It was a bit of a conflict between Feel Good and Be Good, but I realized that, in order for me to Feel good, I have to also Be good and even Do good. So "Feel Good" it is.

                                                                                                                                                                                                                        🗳 ✓

                                                                                                                                                                                                                        [?]Sean Heber » 🌐
                                                                                                                                                                                                                        @bigzaphod@mastodon.social

                                                                                                                                                                                                                        What's your primary pointer input method?

                                                                                                                                                                                                                        Mouse:199
                                                                                                                                                                                                                        Trackpad:136
                                                                                                                                                                                                                        Touchscreen:12
                                                                                                                                                                                                                        Pen/Pencil:5

                                                                                                                                                                                                                        Closed

                                                                                                                                                                                                                        ...
                                                                                                                                                                                                                        Older...

                                                                                                                                                                                                                        [?]:ammonite: ¢ypress » 🌐
                                                                                                                                                                                                                        @cypress@pinsapo.cc

                                                                                                                                                                                                                        @bigzaphod Where is trackpoint? Never snub the nub :blobfoxannoyed:

                                                                                                                                                                                                                          [?]Ravi :prami: » 🌐
                                                                                                                                                                                                                          @ravi@social.lol

                                                                                                                                                                                                                          @bigzaphod Laptop or desktop!

                                                                                                                                                                                                                            [?]Sean C. » 🌐
                                                                                                                                                                                                                            @filmfreak75@mastodon.social

                                                                                                                                                                                                                            @bigzaphod technically i use a trackball mouse...

                                                                                                                                                                                                                            ...this one specifcically

                                                                                                                                                                                                                            A product studio photograph of a dark matte grey Logitech wireless trackball mouse (ERGO M575 model) isolated against a solid navy blue background.

The mouse is sculpted with an ergonomic, organic shape contoured to support the right hand, featuring subtle ribbed texturing along the sloping palm rest. 

On the left thumb rest sits an inset, glossy metallic light-blue trackball that catches the light with a smooth sheen.

Positioned along the upper left edge next to the left-click button are two slim, elongated shortcut buttons, each marked with a small dot indentation. 

The top control deck features split left and right click buttons separated by a centered, textured black scroll wheel. Just below the front buttons is a tiny circular LED indicator light, positioned right above a crisp white "logi" brand logo printed on the main body of the mouse.

                                                                                                                                                                                                                            Alt...A product studio photograph of a dark matte grey Logitech wireless trackball mouse (ERGO M575 model) isolated against a solid navy blue background. The mouse is sculpted with an ergonomic, organic shape contoured to support the right hand, featuring subtle ribbed texturing along the sloping palm rest. On the left thumb rest sits an inset, glossy metallic light-blue trackball that catches the light with a smooth sheen. Positioned along the upper left edge next to the left-click button are two slim, elongated shortcut buttons, each marked with a small dot indentation. The top control deck features split left and right click buttons separated by a centered, textured black scroll wheel. Just below the front buttons is a tiny circular LED indicator light, positioned right above a crisp white "logi" brand logo printed on the main body of the mouse.

                                                                                                                                                                                                                              [?]jasonclarke » 🌐
                                                                                                                                                                                                                              @jasonclarke@mastodon.social

                                                                                                                                                                                                                              @bigzaphod Trackball… one of these

                                                                                                                                                                                                                                [?]Joline Celebrion :jcx: » 🌐
                                                                                                                                                                                                                                @j@jcx.nu

                                                                                                                                                                                                                                @bigzaphod Mouse or trackball on computer, but I use my phone and iPad quite a lot as well.

                                                                                                                                                                                                                                  [?]dxzdb » 🌐
                                                                                                                                                                                                                                  @dxzdb@mastodon.social

                                                                                                                                                                                                                                  @bigzaphod Mouse, but with a trackpad *right there* too!

                                                                                                                                                                                                                                    [?]Robert Petersen :startrek: » 🌐
                                                                                                                                                                                                                                    @Sonikku@techhub.social

                                                                                                                                                                                                                                    @bigzaphod honestly can’t pick one…absolutely depends on what I’m doing.

                                                                                                                                                                                                                                    Mouse for PC FPS/RTS, trackpad for general computing, touchscreen for phone/tablets.

                                                                                                                                                                                                                                      [?]urig » 🌐
                                                                                                                                                                                                                                      @urig@mastodon.online

                                                                                                                                                                                                                                      @bigzaphod trackball

                                                                                                                                                                                                                                        [?]Ryan Hyde » 🌐
                                                                                                                                                                                                                                        @RyanHyde@techhub.social

                                                                                                                                                                                                                                        @bigzaphod Specifically, a logitech thumb roller ball mouse

                                                                                                                                                                                                                                          [?]Deadly Headshot » 🌐
                                                                                                                                                                                                                                          @dheadshot@mastodon.social

                                                                                                                                                                                                                                          @bigzaphod
                                                                                                                                                                                                                                          No keyboard option for mouse-keys? 😛

                                                                                                                                                                                                                                            [?]Savior1980 » 🌐
                                                                                                                                                                                                                                            @Savior1980@mastodon.social

                                                                                                                                                                                                                                            @bigzaphod my god where is the trackball option for those pushballers around here?

                                                                                                                                                                                                                                              [?]Gik :prami: | 💙➡️🇺🇦 » 🌐
                                                                                                                                                                                                                                              @gikiski@social.lol

                                                                                                                                                                                                                                              @bigzaphod while others have noted alternative pointers: eye tracking (VR devices)

                                                                                                                                                                                                                                                [?]Brian Turner 🐝 » 🌐
                                                                                                                                                                                                                                                @SteakPinball@mastodon.social

                                                                                                                                                                                                                                                @bigzaphod what category does Wii remote fall under?

                                                                                                                                                                                                                                                  roman boosted

                                                                                                                                                                                                                                                  [?]Tomáš » 🌐
                                                                                                                                                                                                                                                  @prahou@merveilles.town

                                                                                                                                                                                                                                                  tHe MeTRiC SySTEm iS BetTeR BEcUz iTS MoaR PreCiSE

                                                                                                                                                                                                                                                  imperial html
cornsilk
hotpink
gold
cornflowerblue

metric html
ffffd7
ffd700
ff5faf
5f87ff

                                                                                                                                                                                                                                                  Alt...imperial html cornsilk hotpink gold cornflowerblue metric html ffffd7 ffd700 ff5faf 5f87ff

                                                                                                                                                                                                                                                    ...
                                                                                                                                                                                                                                                    Older...

                                                                                                                                                                                                                                                    [?]LUZZY [she/her 🏳️‍⚧️] » 🔓
                                                                                                                                                                                                                                                    @meluzzy@woof.tech

                                                                                                                                                                                                                                                    @prahou How many grey is 1 gray?

                                                                                                                                                                                                                                                      ...

                                                                                                                                                                                                                                                      [?]Dmitry Chestnykh ☮️ » 🔓
                                                                                                                                                                                                                                                      @dchest@mastodon.social

                                                                                                                                                                                                                                                      @meluzzy @prahou let's remember that imperial DarkGray is lighter than Gray, as it should be

                                                                                                                                                                                                                                                        [?]iamdtms » 🌐
                                                                                                                                                                                                                                                        @iamdtms@mas.to

                                                                                                                                                                                                                                                        @prahou `border-color: rebeccapurple;`
                                                                                                                                                                                                                                                        `color: rebeccapurple;`
                                                                                                                                                                                                                                                        ftw

                                                                                                                                                                                                                                                          ...

                                                                                                                                                                                                                                                          [?]Tomáš » 🌐
                                                                                                                                                                                                                                                          @prahou@merveilles.town

                                                                                                                                                                                                                                                          @iamdtms this guy gets it

                                                                                                                                                                                                                                                            [?]Dmitry Chestnykh ☮️ » 🌐
                                                                                                                                                                                                                                                            @dchest@mastodon.social

                                                                                                                                                                                                                                                            @prahou when you write your colors in hex/rgba/hsl/oklch, you engage in invention of new colors. Who gave you the right to do so? This practice is reserved for trained specialists, who created and registered named colors. Any free use of digits for this purpose must be outlawed.

                                                                                                                                                                                                                                                              [?]Andre Geißler » 🌐
                                                                                                                                                                                                                                                              @rdfhrn@hessen.social

                                                                                                                                                                                                                                                              @prahou yes it is. Cornflowers aren't all the same shade of blue.

                                                                                                                                                                                                                                                                ...

                                                                                                                                                                                                                                                                [?]Dmitry Chestnykh ☮️ » 🌐
                                                                                                                                                                                                                                                                @dchest@mastodon.social

                                                                                                                                                                                                                                                                @rdfhrn @prahou you can produce any shade you like using the ancient technique of mixing paint:

                                                                                                                                                                                                                                                                color-mix(in srgb, cornflowerblue 75%, lavender)

                                                                                                                                                                                                                                                                  [?]tasket » 🌐
                                                                                                                                                                                                                                                                  @tasket@mas.to

                                                                                                                                                                                                                                                                  @prahou Um, the point of metric is that its base-10...

                                                                                                                                                                                                                                                                  Just sayin.... 🙃

                                                                                                                                                                                                                                                                    ...

                                                                                                                                                                                                                                                                    [?]Cody :collar: :verified_paw: » 🌐
                                                                                                                                                                                                                                                                    @cody@catboy.baby

                                                                                                                                                                                                                                                                    @prahou@merveilles.town No, the metric system is better because it doesn't require me to do algebraic trigonometry to covert from one unit to another. Just add 0s to the right or to the left.

                                                                                                                                                                                                                                                                      ...

                                                                                                                                                                                                                                                                      [?]Tomáš » 🌐
                                                                                                                                                                                                                                                                      @prahou@merveilles.town

                                                                                                                                                                                                                                                                      @cody look, a new color! 5f87ff0

                                                                                                                                                                                                                                                                        ...

                                                                                                                                                                                                                                                                        [?]uoou » 🌐
                                                                                                                                                                                                                                                                        @uoou@fedi.friendo.monster

                                                                                                                                                                                                                                                                        No it's the same colour in a different unit. A centicolour.

                                                                                                                                                                                                                                                                        CC: @cody@catboy.baby

                                                                                                                                                                                                                                                                          ...

                                                                                                                                                                                                                                                                          [?]Tomáš » 🌐
                                                                                                                                                                                                                                                                          @prahou@merveilles.town

                                                                                                                                                                                                                                                                          @uoou @cody see, this is extremely confusing to me

                                                                                                                                                                                                                                                                            ...

                                                                                                                                                                                                                                                                            [?]uoou » 🌐
                                                                                                                                                                                                                                                                            @uoou@fedi.friendo.monster

                                                                                                                                                                                                                                                                            It's so simple. Metric is when you put a zero on either side of something and then it's a new unit.

                                                                                                                                                                                                                                                                            CC: @cody@catboy.baby

                                                                                                                                                                                                                                                                              ...

                                                                                                                                                                                                                                                                              [?]Tomáš » 🌐
                                                                                                                                                                                                                                                                              @prahou@merveilles.town

                                                                                                                                                                                                                                                                              @uoou @cody

                                                                                                                                                                                                                                                                              ok so

                                                                                                                                                                                                                                                                              cornflowerblue: 5f87ff
                                                                                                                                                                                                                                                                              decicornflowerblue: 5f87ff0
                                                                                                                                                                                                                                                                              centiconrflowerblue: 5f87ff00

                                                                                                                                                                                                                                                                              am i doing it right?

                                                                                                                                                                                                                                                                                ...

                                                                                                                                                                                                                                                                                [?]Ángel » 🌐
                                                                                                                                                                                                                                                                                @angel@triptico.com

                                                                                                                                                                                                                                                                                I don't speak math nor use computers but shouldn't those colors be named decacornflowerblue and hectocornflowerblue

                                                                                                                                                                                                                                                                                CC: @uoou@fedi.friendo.monster @cody@catboy.baby

                                                                                                                                                                                                                                                                                  ...

                                                                                                                                                                                                                                                                                  [?]Tomáš » 🌐
                                                                                                                                                                                                                                                                                  @prahou@merveilles.town

                                                                                                                                                                                                                                                                                  @angel @uoou @cody i can't read

                                                                                                                                                                                                                                                                                    [?]it's pronounced 'yagoda' [she/her] » 🔓
                                                                                                                                                                                                                                                                                    @j-g00da@donotsta.re

                                                                                                                                                                                                                                                                                    @prahou color is a concept completely made up by trichromats, i don’t care what you believe in, just don’t push it on me!

                                                                                                                                                                                                                                                                                      ...
                                                                                                                                                                                                                                                                                      Tomáš boosted

                                                                                                                                                                                                                                                                                      [?]Štěpán 💤 [he/him] » 🌐
                                                                                                                                                                                                                                                                                      @stepan@f.cz

                                                                                                                                                                                                                                                                                      @prahou rebeccapurple

                                                                                                                                                                                                                                                                                        [?]Jeff Grigg » 🌐
                                                                                                                                                                                                                                                                                        @JeffGrigg@mastodon.social

                                                                                                                                                                                                                                                                                        @prahou

                                                                                                                                                                                                                                                                                        Yes, but if you "train your brain properly," then you'll actually be able to "see" each precise color, from knowing and seeing its HTML hex code!

                                                                                                                                                                                                                                                                                        blue rectangle with code "5F87FF" in the middle

                                                                                                                                                                                                                                                                                        Alt...blue rectangle with code "5F87FF" in the middle

                                                                                                                                                                                                                                                                                          ...
                                                                                                                                                                                                                                                                                          Tomáš boosted

                                                                                                                                                                                                                                                                                          [?]Mx. Luna Corbden 🪿🐸 [they/them] » 🌐
                                                                                                                                                                                                                                                                                          @corbden@defcon.social

                                                                                                                                                                                                                                                                                          @JeffGrigg @prahou There's actually a Wordle-style game about this. I can be fairly good at it. I wasn't today though. Way more red in that color than I expected.

                                                                                                                                                                                                                                                                                          hexcodle.com/

                                                                                                                                                                                                                                                                                            ...

                                                                                                                                                                                                                                                                                            [?]Tomáš » 🌐
                                                                                                                                                                                                                                                                                            @prahou@merveilles.town

                                                                                                                                                                                                                                                                                            @corbden @JeffGrigg this is awesome, but also against my religion.

                                                                                                                                                                                                                                                                                            boosting does not mean endorsement!!!!

                                                                                                                                                                                                                                                                                              ...

                                                                                                                                                                                                                                                                                              [?]gregori » 🌐
                                                                                                                                                                                                                                                                                              @Gregori@merveilles.town

                                                                                                                                                                                                                                                                                              @prahou @corbden @JeffGrigg
                                                                                                                                                                                                                                                                                              I got Hexcodle #1119 in 4! Score: 70%
                                                                                                                                                                                                                                                                                              ✅⏫🔽⏫🔽🔽
                                                                                                                                                                                                                                                                                              ✅✅✅🔽🔼🔼
                                                                                                                                                                                                                                                                                              ✅✅✅✅🔽✅
                                                                                                                                                                                                                                                                                              ✅✅✅✅✅✅

                                                                                                                                                                                                                                                                                                ...

                                                                                                                                                                                                                                                                                                [?]Jeff Grigg » 🌐
                                                                                                                                                                                                                                                                                                @JeffGrigg@mastodon.social

                                                                                                                                                                                                                                                                                                @Gregori @prahou @corbden

                                                                                                                                                                                                                                                                                                I got it in 4, without even paying any attention to the colors or using color knowledge at all.

                                                                                                                                                                                                                                                                                                1st guess was 888888, with one digit correct.
2nd guess was closer, but with one digit further off because I just messed up.
3rd guess had 5 of 6 right.
4th guess was 100% correct.

The target is a moderately dark brown.
Hex code AF8D12 (not shown in this image)

                                                                                                                                                                                                                                                                                                Alt...1st guess was 888888, with one digit correct. 2nd guess was closer, but with one digit further off because I just messed up. 3rd guess had 5 of 6 right. 4th guess was 100% correct. The target is a moderately dark brown. Hex code AF8D12 (not shown in this image)

                                                                                                                                                                                                                                                                                                  ...

                                                                                                                                                                                                                                                                                                  [?]Tomáš » 🔓
                                                                                                                                                                                                                                                                                                  @prahou@merveilles.town

                                                                                                                                                                                                                                                                                                  @JeffGrigg @Gregori @corbden same! i just did what the arrows wanted

                                                                                                                                                                                                                                                                                                    [?]Mizuki :3 :no_ai: » 🌐
                                                                                                                                                                                                                                                                                                    @CinnamonCatYurilover@sharkey.skydevs.me

                                                                                                                                                                                                                                                                                                    @prahou@merveilles.town I don't know what my favorite color is in non hex :c

                                                                                                                                                                                                                                                                                                      ...

                                                                                                                                                                                                                                                                                                      [?]Tomáš » 🌐
                                                                                                                                                                                                                                                                                                      @prahou@merveilles.town

                                                                                                                                                                                                                                                                                                      ...

                                                                                                                                                                                                                                                                                                      [?]Mizuki :3 :no_ai: » 🌐
                                                                                                                                                                                                                                                                                                      @CinnamonCatYurilover@sharkey.skydevs.me

                                                                                                                                                                                                                                                                                                      @prahou@merveilles.town # B00B69 (im not even joking its a really pretty color)

                                                                                                                                                                                                                                                                                                        ...

                                                                                                                                                                                                                                                                                                        [?]Tomáš » 🌐
                                                                                                                                                                                                                                                                                                        @prahou@merveilles.town

                                                                                                                                                                                                                                                                                                        @CinnamonCatYurilover you better not be lying

                                                                                                                                                                                                                                                                                                          [?]Tomáš » 🌐
                                                                                                                                                                                                                                                                                                          @prahou@merveilles.town

                                                                                                                                                                                                                                                                                                          @CinnamonCatYurilover looks like a shade of DeepPink, very pretty

                                                                                                                                                                                                                                                                                                            [?]tibi [they/them] » 🌐
                                                                                                                                                                                                                                                                                                            @tibi2@mstdn.social

                                                                                                                                                                                                                                                                                                            @prahou diabolical post but fr i love those named colours

                                                                                                                                                                                                                                                                                                              ...

                                                                                                                                                                                                                                                                                                              [?]Tomáš » 🌐
                                                                                                                                                                                                                                                                                                              @prahou@merveilles.town

                                                                                                                                                                                                                                                                                                              @tibi2 me too! i for the most part only use color names.

                                                                                                                                                                                                                                                                                                                [?]dieser Gustav » 🌐
                                                                                                                                                                                                                                                                                                                @augustav@troet.cafe

                                                                                                                                                                                                                                                                                                                @prahou there are 16^6 colors, and they all got a name
                                                                                                                                                                                                                                                                                                                Inspired by Terry Pratchett

                                                                                                                                                                                                                                                                                                                  ...

                                                                                                                                                                                                                                                                                                                  [?]Tomáš » 🌐
                                                                                                                                                                                                                                                                                                                  @prahou@merveilles.town

                                                                                                                                                                                                                                                                                                                  @augustav i dont know if the math checks out, but there are 140 imperial units of color in html.

                                                                                                                                                                                                                                                                                                                    [?]David W. Jones » 🌐
                                                                                                                                                                                                                                                                                                                    @dancingtreefrog@mastodon.social

                                                                                                                                                                                                                                                                                                                    @prahou More precise? No. But color names may be more meaningful than colors in hex!

                                                                                                                                                                                                                                                                                                                      ...
                                                                                                                                                                                                                                                                                                                      3 ★ 1 ↺

                                                                                                                                                                                                                                                                                                                      [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                      @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                      upgraded to my instance to 2.95

                                                                                                                                                                                                                                                                                                                        roman boosted

                                                                                                                                                                                                                                                                                                                        [?]The Real Grunfink » 🌐
                                                                                                                                                                                                                                                                                                                        @grunfink@comam.es

                                                                                                                                                                                                                                                                                                                        I've just published version 2.95 of , the simple, minimalistic instance server written in C. This is an important release, as it fixes an issue that can lead to denial of service attacks, so please update as soon as possible. It also includes the following changes:

                                                                                                                                                                                                                                                                                                                        Fixed a bug in the notification page that made snac hang forever while trying to read abnormally big files.

                                                                                                                                                                                                                                                                                                                        Improved support for text-only web browsers: it's now possible to configure a set of web browser user-agent strings that will receive simpler HTML in the private timeline web UI. Basically, it consists in avoiding details / summary HTML tags as much as possible.

                                                                                                                                                                                                                                                                                                                        Added some fixes to media proxy code.

                                                                                                                                                                                                                                                                                                                        Fixed EmojiReact code to allow any emoticon defined in emojis.json, not only those with colon-wrapped identifiers.

                                                                                                                                                                                                                                                                                                                        Fixed a bug in notification filtering (paging was sometimes incorrect).

                                                                                                                                                                                                                                                                                                                        Added a notification filter for Webmentions.

                                                                                                                                                                                                                                                                                                                        Mastodon API: Don't return reactions count as string (contributed by mkljczk), implemented GET /v1/media (contributed by clairemont).

                                                                                                                                                                                                                                                                                                                        Fixed bug in documentation examples (contributed by Sprite_tm).

                                                                                                                                                                                                                                                                                                                        Updated Ukrainian and Russian translations (contributed by wincentbalin and koru).

                                                                                                                                                                                                                                                                                                                        https://comam.es/what-is-snac

                                                                                                                                                                                                                                                                                                                        If you find useful, please consider buying grunfink a coffee or contributing via LiberaPay.


                                                                                                                                                                                                                                                                                                                          ...
                                                                                                                                                                                                                                                                                                                          Older...

                                                                                                                                                                                                                                                                                                                          [?]Stefano Marinelli » 🌐
                                                                                                                                                                                                                                                                                                                          @stefano@mastodon.bsd.cafe

                                                                                                                                                                                                                                                                                                                          @grunfink thank you, as usual, for the great work!

                                                                                                                                                                                                                                                                                                                            ...

                                                                                                                                                                                                                                                                                                                            [?]The Real Grunfink » 🌐
                                                                                                                                                                                                                                                                                                                            @grunfink@comam.es

                                                                                                                                                                                                                                                                                                                            You're welcome!

                                                                                                                                                                                                                                                                                                                              [?]amilatled » 🌐
                                                                                                                                                                                                                                                                                                                              @amilatled@snac.la10cy.net

                                                                                                                                                                                                                                                                                                                              Thank you for your work! :)
                                                                                                                                                                                                                                                                                                                              This instance is now up-to-date

                                                                                                                                                                                                                                                                                                                                ...

                                                                                                                                                                                                                                                                                                                                [?]The Real Grunfink » 🌐
                                                                                                                                                                                                                                                                                                                                @grunfink@comam.es

                                                                                                                                                                                                                                                                                                                                You're welcome!

                                                                                                                                                                                                                                                                                                                                  [?]ManMachine » 🌐
                                                                                                                                                                                                                                                                                                                                  @max@manmachine.me

                                                                                                                                                                                                                                                                                                                                  oh hell yeah proxy_media started working for me now! thanks!

                                                                                                                                                                                                                                                                                                                                    ...

                                                                                                                                                                                                                                                                                                                                    [?]The Real Grunfink » 🌐
                                                                                                                                                                                                                                                                                                                                    @grunfink@comam.es

                                                                                                                                                                                                                                                                                                                                    Great news! You're welcome!

                                                                                                                                                                                                                                                                                                                                      [?]khm [he/him] » 🌐
                                                                                                                                                                                                                                                                                                                                      @khm@hj.9fs.net

                                                                                                                                                                                                                                                                                                                                      username ends in x!

                                                                                                                                                                                                                                                                                                                                      CC: @grunfink@comam.es

                                                                                                                                                                                                                                                                                                                                        ...

                                                                                                                                                                                                                                                                                                                                        [?]The Real Grunfink » 🌐
                                                                                                                                                                                                                                                                                                                                        @grunfink@comam.es

                                                                                                                                                                                                                                                                                                                                        Yes! That was the problem!

                                                                                                                                                                                                                                                                                                                                          [?]liilliilꙮ🏡:OrangePi: » 🌐
                                                                                                                                                                                                                                                                                                                                          @i@liilliil.ru

                                                                                                                                                                                                                                                                                                                                          after 2.99 will be 2.100? ;)

                                                                                                                                                                                                                                                                                                                                            ...

                                                                                                                                                                                                                                                                                                                                            [?]The Real Grunfink » 🌐
                                                                                                                                                                                                                                                                                                                                            @grunfink@comam.es

                                                                                                                                                                                                                                                                                                                                            As ugly as it may look, yes, it will be 2.100!

                                                                                                                                                                                                                                                                                                                                              [?]gmc » 🌐
                                                                                                                                                                                                                                                                                                                                              @gmc@snac.chasmcity.net

                                                                                                                                                                                                                                                                                                                                              When you say 'it fixes an issue that can lead to denial of service attacks', what was that exactly? I want to write that in the freebsd port update notes, so that maybe it'll get some priority.

                                                                                                                                                                                                                                                                                                                                                ...

                                                                                                                                                                                                                                                                                                                                                [?]The Real Grunfink » 🌐
                                                                                                                                                                                                                                                                                                                                                @grunfink@comam.es

                                                                                                                                                                                                                                                                                                                                                Hi. Specifically, the first mentioned fix:
                                                                                                                                                                                                                                                                                                                                                Fixed a bug in the notification page that made snac hang forever while trying to read abnormally big files.
                                                                                                                                                                                                                                                                                                                                                Some users had detected very big files (caused by probably intentionally malicious posts) in the notification area that made it unaccesible. The fix consists in a) taking care that those humungous files are no longer created, and b) if they already exist, they are ignored.

                                                                                                                                                                                                                                                                                                                                                Thanks for the FreeBSD port!

                                                                                                                                                                                                                                                                                                                                                  [?]sergiodj » 🌐
                                                                                                                                                                                                                                                                                                                                                  @sergiodj@snac.sergiodj.net

                                                                                                                                                                                                                                                                                                                                                  @grunfink@comam.es Uploaded to Debian unstable and trixie-backports.

                                                                                                                                                                                                                                                                                                                                                  BTW, this seems important enough to justify a CVE, doesn't it? I intend to work on backporting the fix to the version we ship on Debian stable.

                                                                                                                                                                                                                                                                                                                                                    ...

                                                                                                                                                                                                                                                                                                                                                    [?]The Real Grunfink » 🌐
                                                                                                                                                                                                                                                                                                                                                    @grunfink@comam.es

                                                                                                                                                                                                                                                                                                                                                    Yes, I think so.

                                                                                                                                                                                                                                                                                                                                                      🗳 ✓

                                                                                                                                                                                                                                                                                                                                                      [?]Nina Kalinina [she/her] » 🌐
                                                                                                                                                                                                                                                                                                                                                      @nina_kali_nina@tech.lgbt

                                                                                                                                                                                                                                                                                                                                                      Did you know that on Unix-like systems it is generally possible to search across man (manual) pages with a command apropos? E.g. apropos wifi on my freshly installed NetBSD finds me documentation for the available network drivers, and a very helpful page afterboot that explains, among other things, how to connect to WiFi (and then install software from binary packages).

                                                                                                                                                                                                                                                                                                                                                      Yes:221
                                                                                                                                                                                                                                                                                                                                                      TIL, thanks:307

                                                                                                                                                                                                                                                                                                                                                      Closed

                                                                                                                                                                                                                                                                                                                                                      ...

                                                                                                                                                                                                                                                                                                                                                      [?]Nina Kalinina [she/her] » 🌐
                                                                                                                                                                                                                                                                                                                                                      @nina_kali_nina@tech.lgbt

                                                                                                                                                                                                                                                                                                                                                      I used Unix-like systems for a long time, but I only learned about apropos a couple of years ago. 😓 i should've had RTFM

                                                                                                                                                                                                                                                                                                                                                      ...
                                                                                                                                                                                                                                                                                                                                                      Older...

                                                                                                                                                                                                                                                                                                                                                      [?]mcc [she/her] » 🌐
                                                                                                                                                                                                                                                                                                                                                      @mcc@mastodon.social

                                                                                                                                                                                                                                                                                                                                                      @nina_kali_nina Ironically the best way to find out about the `apropos` tool would have been the `apropos` tool

                                                                                                                                                                                                                                                                                                                                                      (You can also access it with `man -k`)

                                                                                                                                                                                                                                                                                                                                                      Poster for "Mank" (dir. David Finscher, 2020)

                                                                                                                                                                                                                                                                                                                                                      Alt...Poster for "Mank" (dir. David Finscher, 2020)

                                                                                                                                                                                                                                                                                                                                                        ...

                                                                                                                                                                                                                                                                                                                                                        [?]Nina Kalinina [she/her] » 🌐
                                                                                                                                                                                                                                                                                                                                                        @nina_kali_nina@tech.lgbt

                                                                                                                                                                                                                                                                                                                                                        @mcc it doesn't work (right) after midnight, right?

                                                                                                                                                                                                                                                                                                                                                          ...

                                                                                                                                                                                                                                                                                                                                                          [?]ShadSterling » 🌐
                                                                                                                                                                                                                                                                                                                                                          @ShadSterling@mastodon.social

                                                                                                                                                                                                                                                                                                                                                          @nina_kali_nina @mcc oh that sounds awfully familiar… yeah, looks like they fixed that “bug” last year - unix.stackexchange.com/questio

                                                                                                                                                                                                                                                                                                                                                            [?]Hugo Mills [He/Him (will accept "oi, you!")] » 🌐
                                                                                                                                                                                                                                                                                                                                                            @darkling@mstdn.social

                                                                                                                                                                                                                                                                                                                                                            @nina_kali_nina That was one of the very very few commands I knew when I started playing with Unix-like systems.

                                                                                                                                                                                                                                                                                                                                                            I think I also knew about ls, cd, cat, more, sed and man. Everything else I found from apropos searches. :)

                                                                                                                                                                                                                                                                                                                                                              [?]David JONES » 🌐
                                                                                                                                                                                                                                                                                                                                                              @drj@typo.social

                                                                                                                                                                                                                                                                                                                                                              @nina_kali_nina the manual used to be a lot smaller, you could read all of it, or of not all, a good chunk. I learnt of a lot of Unix back in the day by doing "ls /bin /usr/bin" and doing man thing on each one. That and some man 1 intro.

                                                                                                                                                                                                                                                                                                                                                                ...

                                                                                                                                                                                                                                                                                                                                                                [?]Nina Kalinina [she/her] » 🌐
                                                                                                                                                                                                                                                                                                                                                                @nina_kali_nina@tech.lgbt

                                                                                                                                                                                                                                                                                                                                                                @drj yep. I've read all the man pages of ДЕМОС ( Soviet BSD derivative en.wikipedia.org/wiki/DEMOS ) back when I started my *nix journey. I wonder if it had apropos in it and I simply forgot about it, or it's a new thing

                                                                                                                                                                                                                                                                                                                                                                  ...

                                                                                                                                                                                                                                                                                                                                                                  [?]David JONES » 🌐
                                                                                                                                                                                                                                                                                                                                                                  @drj@typo.social

                                                                                                                                                                                                                                                                                                                                                                  @nina_kali_nina my first Unix was SunOS 4.0/4.1 ish in 1992, and that had it. I always though it was "not very Unix" to have a whole command that was the same as man -k.

                                                                                                                                                                                                                                                                                                                                                                    ...

                                                                                                                                                                                                                                                                                                                                                                    [?]Nina Kalinina [she/her] » 🌐
                                                                                                                                                                                                                                                                                                                                                                    @nina_kali_nina@tech.lgbt

                                                                                                                                                                                                                                                                                                                                                                    @drj I just checked the manual I've read, it explains apropos but it didn't left a lasting impression, unlike whatis and just the option of grepping through stuff

                                                                                                                                                                                                                                                                                                                                                                      [?]mr_daemon » 🌐
                                                                                                                                                                                                                                                                                                                                                                      @mr_daemon@untrusted.website

                                                                                                                                                                                                                                                                                                                                                                      @nina_kali_nina I find it's WAY more useful (and simultaneously advertised) on BSDs -- OpenBSD is what initially taught me about it, in their similar first boot document.

                                                                                                                                                                                                                                                                                                                                                                      Coherent and exhaustive documentation for the whole platform is one of the nice bits of the BSDs, too. Being able to find out how to configure my specific quirky video chipset on an old compaq laptop 100% from the man page, entirely offline, on OpenBSD was kind of a highlight of that experience, and apropos absolutely helped

                                                                                                                                                                                                                                                                                                                                                                        [?]leah's tiny pc retirement home » 🔓
                                                                                                                                                                                                                                                                                                                                                                        @millihertz@oldbytes.space

                                                                                                                                                                                                                                                                                                                                                                        @nina_kali_nina but how would you have known what to look for? ;-)

                                                                                                                                                                                                                                                                                                                                                                          ...

                                                                                                                                                                                                                                                                                                                                                                          [?]Miod Vallat [he/him] » 🌐
                                                                                                                                                                                                                                                                                                                                                                          @miodvallat@hostux.social

                                                                                                                                                                                                                                                                                                                                                                          @nina_kali_nina If you're truly lazy, you can use `man -k` instead of `apropos` to save one keystroke.

                                                                                                                                                                                                                                                                                                                                                                            ...

                                                                                                                                                                                                                                                                                                                                                                            [?]Miah Johnson » 🌐
                                                                                                                                                                                                                                                                                                                                                                            @miah@hachyderm.io

                                                                                                                                                                                                                                                                                                                                                                            @miodvallat @nina_kali_nina or `whatis`, which should be the same as `man -k` but maybe easier to remember?

                                                                                                                                                                                                                                                                                                                                                                              ...

                                                                                                                                                                                                                                                                                                                                                                              [?]Nina Kalinina [she/her] » 🌐
                                                                                                                                                                                                                                                                                                                                                                              @nina_kali_nina@tech.lgbt

                                                                                                                                                                                                                                                                                                                                                                              @miah it's not the same on my system; whatis only searches for man page names, not the content

                                                                                                                                                                                                                                                                                                                                                                              @miodvallat

                                                                                                                                                                                                                                                                                                                                                                                ...

                                                                                                                                                                                                                                                                                                                                                                                [?]Eli the Bearded » 🌐
                                                                                                                                                                                                                                                                                                                                                                                @elithebearded@fed.qaz.red

                                                                                                                                                                                                                                                                                                                                                                                @nina_kali_nina @miah @miodvallat

                                                                                                                                                                                                                                                                                                                                                                                Yeah, different.

                                                                                                                                                                                                                                                                                                                                                                                When I run "whatis whatis" I get one response. When I run "apropos whatis" I get a lot of responses, including "apropos", "whatis", "man", "makemandb", and others

                                                                                                                                                                                                                                                                                                                                                                                  [?]Stephen Darlington » 🌐
                                                                                                                                                                                                                                                                                                                                                                                  @sdarlington@mas.to

                                                                                                                                                                                                                                                                                                                                                                                  @nina_kali_nina It's funny, I knew it was a command but I never actually got around to learning what it does!

                                                                                                                                                                                                                                                                                                                                                                                    [?]Tammi 𝆮 𓃠 » 🔓
                                                                                                                                                                                                                                                                                                                                                                                    @tammeow@cute-spellcasting-ideas.eu

                                                                                                                                                                                                                                                                                                                                                                                    @nina_kali_nina have you ever read the manual for the manual pages?
                                                                                                                                                                                                                                                                                                                                                                                    $ man man

                                                                                                                                                                                                                                                                                                                                                                                      ...

                                                                                                                                                                                                                                                                                                                                                                                      [?]Nina Kalinina [she/her] » 🔓
                                                                                                                                                                                                                                                                                                                                                                                      @nina_kali_nina@tech.lgbt

                                                                                                                                                                                                                                                                                                                                                                                      Muted: meow

                                                                                                                                                                                                                                                                                                                                                                                      @tammeow I have, yes.

                                                                                                                                                                                                                                                                                                                                                                                        [?]Cara [she/her/hers] » 🌐
                                                                                                                                                                                                                                                                                                                                                                                        @cararemixed@mastodon.social

                                                                                                                                                                                                                                                                                                                                                                                        @nina_kali_nina to be fair, so many linux distros avoid installing many of the manual pages by default unlike most *BSD base install sets. Documentation should always be included by default not the other way around.

                                                                                                                                                                                                                                                                                                                                                                                          ...

                                                                                                                                                                                                                                                                                                                                                                                          [?]Nina Kalinina [she/her] » 🌐
                                                                                                                                                                                                                                                                                                                                                                                          @nina_kali_nina@tech.lgbt

                                                                                                                                                                                                                                                                                                                                                                                          ...

                                                                                                                                                                                                                                                                                                                                                                                          [?]David JONES » 🌐
                                                                                                                                                                                                                                                                                                                                                                                          @drj@typo.social

                                                                                                                                                                                                                                                                                                                                                                                          @nina_kali_nina @cararemixed There is that. See also my parallel rant on the commercial unixes (some of whom only shipped online manuals (as electronic manuals on the system were called) as a paid extra).

                                                                                                                                                                                                                                                                                                                                                                                          There is also the fact that GNU, which supplies most of the basic Linux userland utilities, are ideologically opposed to man pages.

                                                                                                                                                                                                                                                                                                                                                                                            [?]fungus (penicillin producer) [she/her] » 🔓
                                                                                                                                                                                                                                                                                                                                                                                            @hypha@cafe.mycelium.locahlo.st

                                                                                                                                                                                                                                                                                                                                                                                            @nina_kali_nina the issue i had was simply discoverability
                                                                                                                                                                                                                                                                                                                                                                                            yeah there might be detailed documentation on how to do things, but if you can't find it it's almost useless

                                                                                                                                                                                                                                                                                                                                                                                            ...

                                                                                                                                                                                                                                                                                                                                                                                            [?]Nina Kalinina [she/her] » 🔓
                                                                                                                                                                                                                                                                                                                                                                                            @nina_kali_nina@tech.lgbt

                                                                                                                                                                                                                                                                                                                                                                                            @hypha yeah :( I think manpages on my Linux systems were pretty bad, maybe

                                                                                                                                                                                                                                                                                                                                                                                              [?]Gabriele Svelto [he/him] » 🌐
                                                                                                                                                                                                                                                                                                                                                                                              @gabrielesvelto@mas.to

                                                                                                                                                                                                                                                                                                                                                                                              @nina_kali_nina that saved my ass so many times, both personally and professionally. One of the most useful tools together with the more recent tldr

                                                                                                                                                                                                                                                                                                                                                                                                [?]Yukari Hafner :v_lesbian: [she/her] » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                @shinmera@mastodon.tymoon.eu

                                                                                                                                                                                                                                                                                                                                                                                                @nina_kali_nina 🤓☝️ Apropos as a command stems from the Lisp lineage (iirc Interlisp being the first to have it) all the way back in the 1970s.

                                                                                                                                                                                                                                                                                                                                                                                                  ...

                                                                                                                                                                                                                                                                                                                                                                                                  [?]David JONES » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                  @drj@typo.social

                                                                                                                                                                                                                                                                                                                                                                                                  @shinmera @nina_kali_nina yo @interlisp is this true boss? Interlisp was the first Lisp to have apropos? (I'm not doubting it, just aware that you might be able to chip in reliably)

                                                                                                                                                                                                                                                                                                                                                                                                    ...

                                                                                                                                                                                                                                                                                                                                                                                                    [?]The Medley Interlisp Project » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                    @interlisp@fosstodon.org

                                                                                                                                                                                                                                                                                                                                                                                                    @drj We have no evidence Interlisp had APROPOS prior to the early 1980s.

                                                                                                                                                                                                                                                                                                                                                                                                    The 1983 edition of the Interlisp Reference Manual did list the function but it was missing from the 1974 and 1978 editions, and prior to that from the BBN Lisp manuals. This is a strong indication APROPOS was a late addition to Interlisp.

                                                                                                                                                                                                                                                                                                                                                                                                    APROPOS was not listed in the 1983 Maclisp manual by @kentpitman Kent Pitman, either.

                                                                                                                                                                                                                                                                                                                                                                                                    @shinmera @nina_kali_nina

                                                                                                                                                                                                                                                                                                                                                                                                      ...

                                                                                                                                                                                                                                                                                                                                                                                                      [?]Nina Kalinina [she/her] » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                      @nina_kali_nina@tech.lgbt

                                                                                                                                                                                                                                                                                                                                                                                                      ...

                                                                                                                                                                                                                                                                                                                                                                                                      [?]Alfred M. Szmidt » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                      @amszmidt@mastodon.social

                                                                                                                                                                                                                                                                                                                                                                                                      @nina_kali_nina APROPOS was most probably introducerad by JonL on ITS. Somewhere before 1978 or there about.

                                                                                                                                                                                                                                                                                                                                                                                                      @interlisp

                                                                                                                                                                                                                                                                                                                                                                                                        [?]Full Metal Archaeopteryx [she/her] » 🔓
                                                                                                                                                                                                                                                                                                                                                                                                        @DelilahTech@tech.lgbt

                                                                                                                                                                                                                                                                                                                                                                                                        @nina_kali_nina
                                                                                                                                                                                                                                                                                                                                                                                                        One could RTFM until the heat-death of the universe and still not have learned everything about Unix

                                                                                                                                                                                                                                                                                                                                                                                                          [?]Kit Bashir » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                          @Unixbigot@aus.social

                                                                                                                                                                                                                                                                                                                                                                                                          @nina_kali_nina @DelilahTech “man -k” (keyword) is a synonym, which I find easier to type and remember.

                                                                                                                                                                                                                                                                                                                                                                                                            Older...

                                                                                                                                                                                                                                                                                                                                                                                                            [?]David JONES » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                            @drj@typo.social

                                                                                                                                                                                                                                                                                                                                                                                                            @nina_kali_nina it was actually how i learnt the word "apropos"; well, yknow, coming across the command and then looking it up in a dictionary.

                                                                                                                                                                                                                                                                                                                                                                                                            Oh no, wait, now i am telling you this story, i think it actually might be from "M-x apropos" from micro-emacs, a lightweight emacs-like that i used on the Atari ST.

                                                                                                                                                                                                                                                                                                                                                                                                              [?]Marcos [He/Him] » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                              @glitch25@tech.lgbt

                                                                                                                                                                                                                                                                                                                                                                                                              @nina_kali_nina TILIF (today I learned I forgot)

                                                                                                                                                                                                                                                                                                                                                                                                                [?]Kevin Lyda » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                @lyda@mastodon.ie

                                                                                                                                                                                                                                                                                                                                                                                                                @nina_kali_nina I'm lazy though and learned early on that man -k does essentially the same thing. So when man foo fails I just run it again with -k

                                                                                                                                                                                                                                                                                                                                                                                                                  [?]Jana [she/her] » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                  @jana@social.jsteuernagel.de

                                                                                                                                                                                                                                                                                                                                                                                                                  @nina_kali_nina I know it in theory, but every time I actually need it, I have forgotten what the command is :neobot_laugh_sweat:

                                                                                                                                                                                                                                                                                                                                                                                                                    ...

                                                                                                                                                                                                                                                                                                                                                                                                                    [?]Nina Kalinina [she/her] » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                    @nina_kali_nina@tech.lgbt

                                                                                                                                                                                                                                                                                                                                                                                                                    @jana wonderful people on the fedi say that man man nowadays mentions it, and it sure does on my system

                                                                                                                                                                                                                                                                                                                                                                                                                      [?]jordan [they/them or he/him] » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                      @jordan@sometimes.social

                                                                                                                                                                                                                                                                                                                                                                                                                      @nina_kali_nina did you know whatis? it's apropos in reverse

                                                                                                                                                                                                                                                                                                                                                                                                                        ...

                                                                                                                                                                                                                                                                                                                                                                                                                        [?]rojun » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                        @rojun@mementomori.social

                                                                                                                                                                                                                                                                                                                                                                                                                        @nina_kali_nina Also:
                                                                                                                                                                                                                                                                                                                                                                                                                        man info
                                                                                                                                                                                                                                                                                                                                                                                                                        info man
                                                                                                                                                                                                                                                                                                                                                                                                                        man bash

                                                                                                                                                                                                                                                                                                                                                                                                                          ...

                                                                                                                                                                                                                                                                                                                                                                                                                          [?]Nina Kalinina [she/her] » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                          @nina_kali_nina@tech.lgbt

                                                                                                                                                                                                                                                                                                                                                                                                                          @rojun no bashing allowed around here 👋
                                                                                                                                                                                                                                                                                                                                                                                                                          (people at my previous job called me a "bash witch" sometimes, it's really weird not to have it installed, but here we are)

                                                                                                                                                                                                                                                                                                                                                                                                                            [?]Chip [He/Him] » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                            @bytex64@awesome.garden

                                                                                                                                                                                                                                                                                                                                                                                                                            @nina_kali_nina Yes! I have also since learned that some Linux distros don’t install all the man pages for the software they install (or distribute them as separate packages - this is often the case with Perl). Apropos can’t help you if the man pages are missing! 😠

                                                                                                                                                                                                                                                                                                                                                                                                                              [?]Lunar 🛸 ♾ » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                              @lunarloony@dosgame.club

                                                                                                                                                                                                                                                                                                                                                                                                                              @nina_kali_nina Ooh, I didn't know this! Thanks for the tip.

                                                                                                                                                                                                                                                                                                                                                                                                                              openSUSE server output, showing the results of the following commands:
apropos cheese
apropos video
apropos render

Only the last one has yielded any relevant man pages. The other two are not appropriate, apparently. ("Out of cheese" error, anyone?)

                                                                                                                                                                                                                                                                                                                                                                                                                              Alt...openSUSE server output, showing the results of the following commands: apropos cheese apropos video apropos render Only the last one has yielded any relevant man pages. The other two are not appropriate, apparently. ("Out of cheese" error, anyone?)

                                                                                                                                                                                                                                                                                                                                                                                                                                [?]Daniel Howard 🌻 » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                @dannyman@sfba.social

                                                                                                                                                                                                                                                                                                                                                                                                                                @nina_kali_nina I like man -k because I am lazy.

                                                                                                                                                                                                                                                                                                                                                                                                                                  [?]luca » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                  @luc0x61@mastodon.gamedev.place

                                                                                                                                                                                                                                                                                                                                                                                                                                  @nina_kali_nina When I bought the CDs for Slackware Linux, like thirty-something years ago, they came with a massive manual. A physical book I mean. I'm quite sure it mentioned also apropos.

                                                                                                                                                                                                                                                                                                                                                                                                                                  Today what's like, launch a do-it-all web installer and wait to set -maybe- the root password?
                                                                                                                                                                                                                                                                                                                                                                                                                                  Then google for instructions about anything? So to have some cut and paste actions, and finally get lost in some overly complex web development environment.

                                                                                                                                                                                                                                                                                                                                                                                                                                    [?]root42 » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                    @root42@chaos.social

                                                                                                                                                                                                                                                                                                                                                                                                                                    @nina_kali_nina and did you know about updatedb and locate? Basically spotlight before spotlight.

                                                                                                                                                                                                                                                                                                                                                                                                                                      ...

                                                                                                                                                                                                                                                                                                                                                                                                                                      [?]Ari [APz] Sovijärvi [He/him] » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                      @apzpins@some.apz.fi

                                                                                                                                                                                                                                                                                                                                                                                                                                      @nina_kali_nina I assumed this was just as basic info as "man (command)" will show how the said command works.

                                                                                                                                                                                                                                                                                                                                                                                                                                      And since man is often basically just the barebones list of parameters and brief examples, "info (command)" gives you a lot longer explanation.

                                                                                                                                                                                                                                                                                                                                                                                                                                        [?]Howard Chu @ Symas » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                        @hyc@mastodon.social

                                                                                                                                                                                                                                                                                                                                                                                                                                        @nina_kali_nina yeah, but I just use `man -k`, it's stupid to learn and type a new name for the same command

                                                                                                                                                                                                                                                                                                                                                                                                                                          [?]Stefan Eissing » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                          @icing@chaos.social

                                                                                                                                                                                                                                                                                                                                                                                                                                          @nina_kali_nina TIR, today i remembered, thanks

                                                                                                                                                                                                                                                                                                                                                                                                                                            [?]Tony Mottaz [he/him/his] » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                            @tonymottaz@social.lol

                                                                                                                                                                                                                                                                                                                                                                                                                                            @nina_kali_nina this is cool, thanks for sharing!

                                                                                                                                                                                                                                                                                                                                                                                                                                            FWIW, I have a hard time spelling "apropos", so I also just learned that man -k does the same thing (at least on macOS). For example, man -k wifi gives the same result as apropos wifi.

                                                                                                                                                                                                                                                                                                                                                                                                                                            AND the argument can be a regular expression! The example in the manual is

                                                                                                                                                                                                                                                                                                                                                                                                                                            $ man -k '\<copy\>.*archive'

                                                                                                                                                                                                                                                                                                                                                                                                                                            Thanks for making me aware of this! Very useful!

                                                                                                                                                                                                                                                                                                                                                                                                                                              roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                              [?]mcc [she/her] » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                              @mcc@mastodon.social

                                                                                                                                                                                                                                                                                                                                                                                                                                              Remember when 📱 were invented and didn't have much RAM so they ran one program at a time, and the programs were designed so when you switched away they'd remember what they were doing and resume it when you came back? And then the 📱 got a LOT of RAM so now multiple programs can run until RAM ran out and one got ejected? And then the programs started taking up so much RAM only one can run at a time? And then it turned out the programs no longer remember what they were doing when they get ejected?

                                                                                                                                                                                                                                                                                                                                                                                                                                              ...
                                                                                                                                                                                                                                                                                                                                                                                                                                              roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                              [?]Lucie / minute [they/she/sie] » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                              @mntmn@mastodon.social

                                                                                                                                                                                                                                                                                                                                                                                                                                              OK, our little computer/server/NAS is online at Crowd Supply: crowdsupply.com/mnt-research/m

                                                                                                                                                                                                                                                                                                                                                                                                                                              The main idea was to have a high-end enclosure for the classic MNT Reform mainboard to give it a second life, but you can as well build an open hardware computer from the parts.

                                                                                                                                                                                                                                                                                                                                                                                                                                              We're also publishing 3D printable versions of the cases, and there will be more photos and use case details in upcoming campaign posts.

                                                                                                                                                                                                                                                                                                                                                                                                                                              a stack of 3 aluminum cases in silver, petrol, and black colorways. the lowest one has a MNT Reform laptop mainboard in it

                                                                                                                                                                                                                                                                                                                                                                                                                                              Alt...a stack of 3 aluminum cases in silver, petrol, and black colorways. the lowest one has a MNT Reform laptop mainboard in it

                                                                                                                                                                                                                                                                                                                                                                                                                                              the black MNT Reform station with 2 cute external wi-fi antennas and one of the 10 front panel LEDs glowing red

                                                                                                                                                                                                                                                                                                                                                                                                                                              Alt...the black MNT Reform station with 2 cute external wi-fi antennas and one of the 10 front panel LEDs glowing red

                                                                                                                                                                                                                                                                                                                                                                                                                                              close-up of the front panel with one red LED glowing

                                                                                                                                                                                                                                                                                                                                                                                                                                              Alt...close-up of the front panel with one red LED glowing

                                                                                                                                                                                                                                                                                                                                                                                                                                              ...
                                                                                                                                                                                                                                                                                                                                                                                                                                              Older...
                                                                                                                                                                                                                                                                                                                                                                                                                                              roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                              [?]zep.p8 » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                              @zep@mastodon.social

                                                                                                                                                                                                                                                                                                                                                                                                                                              The Chat // Have a nice chat unencumbered by the meaning of real words. Made for itch.io/jam/picojam26/entries (thanks for organising, @illuminesce !)

                                                                                                                                                                                                                                                                                                                                                                                                                                              Play online: lexaloffle.com/bbs/?pid=194820

                                                                                                                                                                                                                                                                                                                                                                                                                                              Or from terminal: > bbs://thechat.p64

                                                                                                                                                                                                                                                                                                                                                                                                                                              Alt...Just two regular shapes having a chinwag

                                                                                                                                                                                                                                                                                                                                                                                                                                                ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                [?]Devine Lu Linvega » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                @neauoire@merveilles.town

                                                                                                                                                                                                                                                                                                                                                                                                                                                When your compiler knows what to compile without giving it arguments, and when the operating system knows what artifact to run without having to tell it. :catclock:

                                                                                                                                                                                                                                                                                                                                                                                                                                                Alt...Drifblim picks up its arguments in its project file, M/PC picks up its launch argument from its project file.

                                                                                                                                                                                                                                                                                                                                                                                                                                                  ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                  roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                  [?]Grumpy Website » 🤖 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                  @grumpy_website@mastodon.online

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Don’t move buttons from under the mouse.

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Thanks @The2lb3oz4dr10grOfHedgehogs for the video

                                                                                                                                                                                                                                                                                                                                                                                                                                                    ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                    roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                    [?]Devine Lu Linvega » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                    @neauoire@merveilles.town

                                                                                                                                                                                                                                                                                                                                                                                                                                                    Reading @j-g00da's comics via @jn's zine viewer on Uxn. Fits the medium like a glove.
                                                                                                                                                                                                                                                                                                                                                                                                                                                    codeberg.org/neuschaefer/dream
                                                                                                                                                                                                                                                                                                                                                                                                                                                    kamiokan.de/

                                                                                                                                                                                                                                                                                                                                                                                                                                                    A page from the comics #14

                                                                                                                                                                                                                                                                                                                                                                                                                                                    Alt...A page from the comics #14

                                                                                                                                                                                                                                                                                                                                                                                                                                                      roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                      [?]occult » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                      @occult@vox.ominous.net

                                                                                                                                                                                                                                                                                                                                                                                                                                                      Very cool!

                                                                                                                                                                                                                                                                                                                                                                                                                                                      An NES homebrew ROM showing live ADSB aircraft traffic, fed over serial through controller port 2 on real NES hardware. A companion app does the networking the NES can't, then streams it to the NES.

                                                                                                                                                                                                                                                                                                                                                                                                                                                      github.com/k6lcm/nes-radar

                                                                                                                                                                                                                                                                                                                                                                                                                                                      Alt...A video demonstration of a Nintendo cartridge running on a Nintendo Entertainment System, demonstrating the real-time air traffic around KLAX airport.

                                                                                                                                                                                                                                                                                                                                                                                                                                                        roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                        [?]Thorsten Zöller » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                        @thorstenzoeller@exquisite.social

                                                                                                                                                                                                                                                                                                                                                                                                                                                        I am seriously considering switching back from Neovim to nvi. I constantly vacillate between the richness and bloat of Neovim and the scarcity and minimalism of nvi. Sure, Neovim does have some nice features. But is it worth this huge increase in complexity? The size of Neovim's codebase is probably like 20 times that of nvi's, while its benefits seem rather marginal to me (based on my way of using it - your mileage may vary).

                                                                                                                                                                                                                                                                                                                                                                                                                                                        We always add, add, add instead of subtract, subtract, subtract...

                                                                                                                                                                                                                                                                                                                                                                                                                                                          ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                          1 ★ 0 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                          in reply to »

                                                                                                                                                                                                                                                                                                                                                                                                                                                          [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                          @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                          @nmott@infosec.exchange indeed. thank you!

                                                                                                                                                                                                                                                                                                                                                                                                                                                            roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                            [?]Jonathan Gerlach » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                            @JonathanGerlach@mastodon.social

                                                                                                                                                                                                                                                                                                                                                                                                                                                            Parenting / Python and C++ [SENSITIVE CONTENT]

                                                                                                                                                                                                                                                                                                                                                                                                                                                            On Friday, my son asked me why C++ is better if the Python version of the code is simpler. He specifically had asked about a "hello world" example, so we wrote both examples together. They both run instantly, so it's not a great comparison. I showed him how to tell which is faster with the `time` command. We also talked about the difference between the work that Python and C++ are doing. I'm pretty sure he understands what we talked about, but who knows?

                                                                                                                                                                                                                                                                                                                                                                                                                                                            ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                            roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                            [?]Paul Nicholas :pico8: :vscode: » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                            @Liquidream@mastodon.gamedev.place

                                                                                                                                                                                                                                                                                                                                                                                                                                                            █▓▒░ 𝗣𝗜𝗖𝗢⬩𝟭𝗞 𝗝𝗔𝗠 𝟮𝟬𝟮𝟲 ░▒▓█
                                                                                                                                                                                                                                                                                                                                                                                                                                                            🌐 itch.io/jam/pico-1k-2026
                                                                                                                                                                                                                                                                                                                                                                                                                                                            WHAT?
                                                                                                                                                                                                                                                                                                                                                                                                                                                            👨‍💻 Make (or ) Games/Demos/Tools in ≤ 1KB
                                                                                                                                                                                                                                                                                                                                                                                                                                                            WHEN?
                                                                                                                                                                                                                                                                                                                                                                                                                                                            📅 SEP 1ˢᵗ-30ᵗʰ 2026
                                                                                                                                                                                                                                                                                                                                                                                                                                                            Hope to see you at jam! 🤓

                                                                                                                                                                                                                                                                                                                                                                                                                                                            Alt...Dark mountains in the distance with neon grid-like floor leading to them. The title "PICO-1K JAM 2026" is displayed in the centre, with a glitchy effect overlaying it all.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                              [?]Fastmail » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                              @fastmail@mastodon.social

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our new Amsterdam servers are live. The EU can now be the primary home for Fastmail data, and like our US locations, it's our own hardware, racked and run by our own people. Nothing rented from a big cloud provider.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Already a customer? Switch regions in your settings. Thinking about it? You choose your region at signup.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Our CEO Bron's post walks through exactly what lives where, because we figure you'd read the fine print anyway.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              fastmail.com/blog/fastmail-off

                                                                                                                                                                                                                                                                                                                                                                                                                                                              The EU can now be the primary home for Fastmail data.

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Alt...The EU can now be the primary home for Fastmail data.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                Older...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                [?]Nathan Snelgrove » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                @nathansnelgrove@mastodon.social

                                                                                                                                                                                                                                                                                                                                                                                                                                                                @fastmail grateful Canadian saying thanks!

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  0 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  i just found out that the reading on my electric meter doesn't match the meter readings provided by the electric company.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  basically, my meter shows the net value across all phases, while the electric company counts import and export separately and charges for both. so instead of having almost zero import, the actual import was much higher...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  trying to configure my inverter to balance the phases better

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  12 ★ 2 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  first full month after the battery installed, still depend on the grid, but noticebly reduced both import and export.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  exported over one mwh at peak hours. can't wait for the next electricity bill... :)


                                                                                                                                                                                                                                                                                                                                                                                                                                                                    roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [?]zep.p8 » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @zep@mastodon.social

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    More surreal rendering tests for 0.3.1, this time with tline3d textures x colour tables. Notes and gif:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    lexaloffle.com/bbs/?pid=193908

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      50 ★ 52 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      joseghast boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      how many people run here?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      like = you run it on server
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      boost = you run it on desktop/laptop :)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ❤️

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Older...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [?]bossk » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @bossk@gts.bossk.de

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @hi Running on a server and a laptop

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [?]GlopGlop_PasGlop » 🔓
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @Glop_glop_pasGlop@piaille.fr

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @hi

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        I'm using OpenBSD on little servers only for a private case not on a public way, and less on a professional way ( I don't work in IT I'm just curious about it ).
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        One machine is a little NAS and another is a homelab hosting actually a snac instance and a postgresql service.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Also my 20 years old computer, I'm actually use, works well on desktop with OpenBSD thanks to dwm :)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [?]Tomáš » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @prahou@merveilles.town

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          blast from the past

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          girl is stuck in a windows logo

fish :remind me what i told you about windows."

girl: "they are containers for graphical interfaces?"

fish: "dont get clever with me, girl"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Alt...girl is stuck in a windows logo fish :remind me what i told you about windows." girl: "they are containers for graphical interfaces?" fish: "dont get clever with me, girl"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            2 ★ 0 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            in reply to »

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            exactly my thinking, when i was "creating" a vi logo for https://why-vi.rocks :)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            spleen is the default typeface on ...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            cc: @RussSharek@mastodon.art

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [?]Rafael Sadowski » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @sizeofvoid@bsd.network

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              "coding is solved" they said
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              "use AI" they said

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              me working on OpenBSD writing C: dead software walking
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              rsadowski.de/posts/2026/dead-s

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              10 ★ 1 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Paul Kelly boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              thank you for taking care of httpd and relayd ❤️

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [?]zep.p8 » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @zep@mastodon.social

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Checking that quad boundaries join up with no holes or overlaps. This one kind of reminds me of a colour plate from an 80s siggraph paper.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Alt...rotating low poly spheres

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [?]Sean Heber » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @bigzaphod@mastodon.social

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Apple keeps releasing new and more expensive hardware that folks want us to support but we can't even afford to buy the new stuff ourselves to test it on.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I mean.. my iPad is an M1. My iPhone is still a 14. And my Mac is an M1 Max. So... I'm a few years behind over here across the board.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Now there's talk of a foldable iPhone? I'll probably need a second mortgage for it which wouldn't be a good idea because I don't know if selling apps will even survive another year.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The math isn't mathing.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Older...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [?]Devine Lu Linvega » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @neauoire@merveilles.town

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  I know I shouldn't be surprised that it just works as is, but still cool, I can build compile uxn binaries directly inside dos.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  wcl -bt=dos -ml -fe=bin/uxnmol.exe src/uxnmol.c

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  wiki.xxiivv.com/etc/uxnmol.c.t

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Compiling a uxn binary with drifblim.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Alt...Compiling a uxn binary with drifblim.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Running mandelbrot

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Alt...Running mandelbrot

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [?]EuroBSDCon » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @EuroBSDCon@bsd.network

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    📢 EuroBSDCon2026: The Schedule is Here! 😈⛳️🐡

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The schedule is now published!!
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    You can find it at: events.eurobsdcon.org/2026/sch

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Grab your tickets 🎟️ at tickets.eurobsdcon.org/eurobsd

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    For everything else, peek at 2026.eurobsdcon.org/
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    More information is added all the time.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    EuroBSDCon 2026 in Brussels, Belgium 🇧🇪
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    September 09-13, 2026

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Cutout of the EuroBSDCon 2026 banner.
Comic like drawing.

First panel has a butler serving a nice Belgium beer. There are two speech bubbles. 1. ...we find this? 2. Etterbeek, Sir.

The second panel has Manneken Pis doing his thing.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Alt...Cutout of the EuroBSDCon 2026 banner. Comic like drawing. First panel has a butler serving a nice Belgium beer. There are two speech bubbles. 1. ...we find this? 2. Etterbeek, Sir. The second panel has Manneken Pis doing his thing.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      9 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      moved my desk to the garage

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      cons

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • the window is a bit farther away
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • a little more noise from the inverters
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      pros
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • more space
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • all my tools are here
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • this is where i spend most of my day anyway
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • the old office is now a guest room :)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      also decluttered everything ❤

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      8 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      day two: why didn't i move my desk to the garage earlier?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      having all my tools within arm's reach has been an amazing boost to my productivity. more importantly, it brings me peace of mind because i actually know where my things are now... ❤️

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      i think i own too many things, but i guess that's the price you pay for living in the middle of nowhere

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      i'm finally getting all my boxes sorted and everything organized for the first time since i moved in last year

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        0 ★ 1 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        also what do you use to navigate your photos and videos on ?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Older...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1 ★ 2 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          napierge boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          looking for some app to backup my photos to an server. with an android i just , but what to do with an iphone?..

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          d_d

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            use case: back up the camera roll and then just delete everything from the iphone

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Older...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              0 ★ 0 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              in reply to »

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              oh i see, thank you! will check

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                0 ★ 0 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                in reply to »

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                good points, but in my case the garage is basically another room in the house. it has proper heating, ventilation, and lighting, and we don't have any fossil fuel cars, so it's a pretty comfortable place to work

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [?]Devine Lu Linvega » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @neauoire@merveilles.town

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  11 ★ 3 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  in reply to »

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  running for almost half a year and very happy with it!

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [?]Devine Lu Linvega » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @neauoire@merveilles.town

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Five years ago(as of June 8th), I decided to give up on Acme and make my own text-editor. The plan was to make something I'd use for the rest of my life, improve it as I went along. It was to be written in this new language, and my list of ideas for it included a ton of extremely bizarre UX choices I hadn't really tested for my own. But if we ignore the more quirky esoteric things about it, there was two pretty simple choices made for it:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Undo depth: zero.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Largest file: 64kb minus the editor's own size.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Undo is probably the easiest one to understand. As you'd expect, some other mechanism emerged to take its place, I wouldn't just let it eat up my work each time I made a mistake. What ended up replacing it was being able to append and cut off chunks of snarf buffers, when I have something I might want to keep, I push it the top of the snarf file. When I'm satisfied with the change, I pop it off, or add something else on top. This has served me well enough, I figured that if I ever needed undo I might add it, but the occasion never came!

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    As of today, Left sits at 17677 bytes, which means I can edit a file, at most, a 45kb long file. This turned out to be less of an issue than I expected, mostly it made it so I split projects into chunks, but more importantly, it means that every single byte of the editor has to be accounted for. If I add something, I know its cost and the cost is directly making for a worse editor. This has been a constant force of optimization and code hygiene over the years.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    rabbits.srht.site/decadv/

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [?]Lucas :nonbinary_flag: [they/them] » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @lucasl0st@chaos.social

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Seeing the Linux TTY on this is so funny to me

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Alt...Linux and bad apple running on an SH1107 128x128 monochrome SPI display connected to a raspberry pi zero

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      2 ★ 1 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      updated my now page...


                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [?]Lucie / minute [they/she/sie] » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @mntmn@mastodon.social

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A new MNT Pocket Reform mini laptop variant with Quasar 6490 (Qualcomm QCS6490) processor module (8GB RAM / 128GB UFS) preinstalled is now available in our shop: shop.mntre.com/products/mnt-po

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Enjoy!

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        screenshot of the MNT Pocket Reform shop page with the QCS6490/8GB RAM/128GB UFS option selected in a dropdown

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Alt...screenshot of the MNT Pocket Reform shop page with the QCS6490/8GB RAM/128GB UFS option selected in a dropdown

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Older...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [?]Lucie / minute [they/she/sie] » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @mntmn@mastodon.social

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        just took some pictures of the new MNT Pocket Keyboard (small standalone USB-C keyboard with integrated optical trackball and RGB backlight) that's coming to our shop at some point next week. the case is a mix of aluminum (top plate) and Multi Jet Fusion printed Nylon (HP PA 12 S). in my opinion it feels really nice in the hands. open source hardware, of course.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        overview of a black/gray MNT Pocket Keyboard with a fancy aluminum/silicone usb cable plugged in

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Alt...overview of a black/gray MNT Pocket Keyboard with a fancy aluminum/silicone usb cable plugged in

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        overview of a black/gray MNT Pocket Keyboard, with a human hand touching it from the right side to get a sense of scale

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Alt...overview of a black/gray MNT Pocket Keyboard, with a human hand touching it from the right side to get a sense of scale

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        top view of a black/gray MNT Pocket Keyboard, showing the USB-C cable port. and cyan backlights. the keyboard can balance on its sides

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Alt...top view of a black/gray MNT Pocket Keyboard, showing the USB-C cable port. and cyan backlights. the keyboard can balance on its sides

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        back side of the keyboard, showing the texture of the gray HP nylon material. this photo is edited slightly because the logo was off-center in the print.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Alt...back side of the keyboard, showing the texture of the gray HP nylon material. this photo is edited slightly because the logo was off-center in the print.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Older...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        0 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        all components drawn to scale, excluding the two 60w power supplies (one for the amplifier and the other for the server)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          0 ★ 0 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          in reply to »

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          corrected :)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1 ★ 0 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            in reply to »

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            currently i just use a web browser for testing...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            need to find something or write a little wrapper for ffplay

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1 ★ 5 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              what's the simplest kvm-over-ip you'd recommend? i'm thinking of getting a good old fw2b, installing on it, and connecting it to my servers via usb

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Older...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                2 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                actually in my case maybe i'll just use and ssh into host and then have the console to guests...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [?]𝙹𝚘𝚎𝚕 𝙲𝚊𝚛𝚗𝚊𝚝 ♑️🤪 » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @joel@gts.tumfatig.net

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @hi I used to use this https://www.tumfatig.net/2022/pikvm-using-a-raspberry-pi-zero-2w/
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It was quite nice. I also used it to record the "OpenBSD workstation" :)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  5 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  completed my first 10k indoor rowing workout. took me 50 minutes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  performance chart: indoor rowing workout. best pace 1:37/500m, chart tracking pace over a 50-minute duration, horizontal line is average pace at 2:30/500m

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Alt...performance chart: indoor rowing workout. best pace 1:37/500m, chart tracking pace over a 50-minute duration, horizontal line is average pace at 2:30/500m

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  0 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [?]roman » 🔓
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  very happy with my current level (according to rowinglevel.com, i'm roughly 2% faster than rowers in my age group)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  my goal is simply to show up a few times a week and row

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    13 ★ 5 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    connected a dac to my server over usb, and it worked right out of the box

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    current setup:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    openbsd -- usb dac -- amp -- speakers
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    openbsd -- hdmi tv
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    next up: make everything more user-friendly or teach my family how to use the command line ;)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    dac box s2+

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Alt...dac box s2+

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      i'd been looking for a 65" panel to play my media on and i decided to go with a smart tv, using it as an hdmi display connected to my machine.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      then i discovered that openbsd doesn't support audio over hdmi and my openbsd server doesn't have analog audio output, obviously.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      my tv had been connected to a stereo amplifier anyway, so my setup is actually even better now: a dedicated usb dac connected directly to the amplifier.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        3 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [?]roman » 🔓
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        the based setup is very user-friendly if i'm the user, but not so much if someone unfamiliar with the terminal wants to use it...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        also, lots of cables :)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        at least the dac box can draw power from my server over the same usb cable.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        very excited to switch to fully local streaming ❤️

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          while reading the manual for my stereo amplifier...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          tone amp s

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Alt...tone amp s

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          three black icons on a white background, spaced horizontally: a remote control on the left, a square containing the letters "AI" in the center, and a lightning bolt on the right

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Alt...three black icons on a white background, spaced horizontally: a remote control on the left, a square containing the letters "AI" in the center, and a lightning bolt on the right

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [?]roman » 🔓
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Al is aluminium housing

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [?]Tomáš » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @prahou@merveilles.town

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            I Did Not Kill Stanley Lieber: How to draw (with 9front)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The penultimate paper on paint(1) and the 9front art machine.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            triapul.cz/automa/i_did_not_ki

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            poster for 

"I Did Not Kill Stanley Lieber: How to draw (with 9front)"

there's some characters or something, I can't tell

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Alt...poster for "I Did Not Kill Stanley Lieber: How to draw (with 9front)" there's some characters or something, I can't tell

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [?]OpenBSD Amsterdam » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @OpenBSDAms@mastodon.bsd.cafe

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              We really appreciate the work done on the TLS settings in relayd(8) and httpd(8).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              It makes it even easier to get a tried and tested secure connection to your favorite OS and service!

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              "Both relayd(8) and httpd(8) now have the "secure" list of allowed crypto methods for HTTPS, which include TLSv1.3 and the TLSv1.2 AEAD cipher suites.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The previous list was "HIGH:!aNULL" which contain non-perfect-forward-security methods and this change may cause old clients to not be able to connect."

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Source: undeadly.org/cgi?action=articl

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hat Tip to @sizeofvoid and others!

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Meme of "The Most Interesting Man in the World" is an advertising campaign for Dos Equis beer featuring actor Jonathan Goldsmith as a bearded, debonair older gentleman with voiceovers that were both humorous and outrageous. 

It has the text: I don't always tip, but when I do, it's my hat.

Source: https://en.wikipedia.org/wiki/The_Most_Interesting_Man_in_the_World

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Alt...Meme of "The Most Interesting Man in the World" is an advertising campaign for Dos Equis beer featuring actor Jonathan Goldsmith as a bearded, debonair older gentleman with voiceovers that were both humorous and outrageous. It has the text: I don't always tip, but when I do, it's my hat. Source: https://en.wikipedia.org/wiki/The_Most_Interesting_Man_in_the_World

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [?]zep.p8 » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @zep@mastodon.social

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                WIP doodlemud for
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                (you can turn into a ball whenever you like)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  0 ★ 0 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  in reply to »

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  correct

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2000 was 16 years ago. right?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Older...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    5 ★ 1 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Petr Hercík boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    routeros is cool ❤️

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    it's easy to script everything. wrote a script to download the latest version of routeros and upgrade all my mikrotik devices: routers, modems, access points (via capsman)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    and when you need gui then winbox is amazing too. nice solid ui and it's only getting better over time

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      roman boosted
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      in reply to »

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [?]Devine Lu Linvega » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @neauoire@merveilles.town

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Created a bunch of simple example projects!
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      wiki.xxiivv.com/site/plan9_c.h

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [?]Devine Lu Linvega » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @neauoire@merveilles.town

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        peak I think, 5859 bytes

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Alt...A very crappy animation of a face smiling in pixelart.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1 ★ 0 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          in reply to »

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          i was looking at new bz, but now checking its competitors...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          kia looks nice

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            0 ★ 0 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            in reply to »

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            is it toyota? how do you like it? i'm shopping around for a new ev...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              3 ★ 1 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              skali boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              old one, but only getting better...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              6 ★ 1 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              after looking into 3d printing more, i've decided it's not for me. the pollution it generates seems pretty significant.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              now considering good old woodworking instead...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              any good cnc machines that can produce small parts?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              looks like stepcraft d.420 covers my use cases well...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              any similar machines? (also made in eu)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [?]zep.p8 » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @zep@mastodon.social

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Close enough

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                14 ★ 7 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                one of very few my life-time achievements: my tiny shell script is used for sites like https://eurobsdcon.org ❤️

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                pretty much all other code i ever wrote is long gone

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                eurobsd banner

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Alt...eurobsd banner

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [?]OpenBSD Amsterdam » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @OpenBSDAms@mastodon.bsd.cafe

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                I've got nothing.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                20 new VMs were added and 46 VMs were renewed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                We donated €890 to the Foundation, €67645 (!!) since we started.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Thank you, our users, and OpenBSD developers for an awesome OS!

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Stay cool, safe, healthy & sane!

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                in 2026

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Milton, Office Space, in his cubicle looking into the distance, with the text: I've got nothing" Source: Meme Generator

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Alt...Milton, Office Space, in his cubicle looking into the distance, with the text: I've got nothing" Source: Meme Generator

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Paypal receipt for €890

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Alt...Paypal receipt for €890

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  7 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  also building a media player based on and n150

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • hdmi (video) - tv
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • usb (audio) - dac - amp - speakers
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  everything is passively cooled and on paper consumes not too much

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • idle: 10-15 w
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • everything on (incl tv): 70-100 w

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 ★ 1 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Paul Jewell boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    trying to get audio via hdmi on i5-1245u running 7.9

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    it detects the intel hd audio and attaches azalia(4), but only the internal realtek alc257 codec is found.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    there is no hdmi audio codec, no audio1, and mixerctl -a only shows the internal speaker/headphone outputs. the external display works over hdmi, but there is no way to select hdmi audio because no hdmi audio device is detected.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    is hdmi audio expected to work with openbsd 7.9? if it should work, are there any additional diagnostics steps i should try?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Older...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      3 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      decided to order an external dac, hope it works with :)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ESS9038K2M 32-bit
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      up to dsd256, pcm up to 32b/768kHz

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        6 ★ 2 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        nathanael boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        5 ★ 1 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        i've been using sketchup for years, but i only recently started learning ... and wow, it's so much closer to what i've always wanted from cad software. the learning curve seems steep, but i really want to learn it

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        kudos to deltahedra ❤️

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4 ★ 0 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          in reply to »

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          after looking at many energy management solutions i just want to write a few simple shell scripts, log things into plain text files, and cron jobs on my box ;)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            5 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            memory prices are just insane right now. luckily i bought most of my hardware a year ago, but picking up new ssds for my nas really hurts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              2 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              tried home assistant for energy management. its codebase is bloated and ui is unpolished.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              i just want to replace it with a few scripts and plain text logs. feels like all i need is to fetch price and weather forecasts and pull/push some modbus registers...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              what do you use for your smart homes?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              0 ★ 1 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Fred de CLX boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              looking for wireless keyboard with trackpad for

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              similar to this setup, but with a trackpad not a mouse...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              any ideas?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              cc @joel@tumfatig.net

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                0 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                want to build a travel router/nas based on n150...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                now i'm looking for m.2 modules (lte/5g and wifi ap) compatible with . any recommendations?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [?]Devine Lu Linvega » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @neauoire@merveilles.town

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It rained tropically all day yesterday, so we didn't wander the woods, I stayed in and worked on my little OpenFirmware-inspired operating system.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  It's capable enough that I've added it to uxn11 and uxn2, accessible with F4. A perfect little tool bounce in and out of roms, set a screen size for roms that don't, rename/delete files, peek at metadata, etc..

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  wiki.xxiivv.com/site/m_pc

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Older...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  3 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  can openbsd run from ram disk only? want to run a stateless server and power goes on and off sometimes (solar with a tiny battery)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [?]Andy Alderwick [he / him / Dr] » 🔓
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @alderwick@merveilles.town

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @hi If you have a disk that you're happy to have mounted read-only, then stable.rcesoftware.com/resflas could be useful!

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    2 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [?]roman » 🔓
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    cool! i like the simplicity and the fact that i can read the source code in an hour ❤️

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1 ★ 0 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      in reply to »

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      got tesvolt with sma inverters and i'm very happy with my current setup. can't wait to see my next monthly bill :) also i wonder how much we can save in the winter, this january bill was brutal

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        7 ★ 3 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        recent sunny weather has kept grid consumption at zero, with more than half of the harvested solar energy exported back to the grid. even on cloudy days like today, the system remains fully self-sustainable (including car charging after a few round trips to town). the battery is a game changer!

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        next up: build own micro-grid and automate export to the grid based on price and weather forecasts


                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1 ★ 0 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          in reply to »

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          feels like it's going to be the same for me

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1 ★ 0 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            in reply to »

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            that would be amazing! it has usb-c, rj-45 ports and two big batteries inside. i have not tested anything yet. i connect to my garmin watch and row

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              5 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              switched from running outdoors to rowing indoors after reading about a rowing machine on the now page by @d@sive.rs few weeks ago...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              i was thinking about a rowing machine for long time, but was not sure if there is enough space for it in my tiny home gym. this end up very well: rowerg is quite compact and light.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              it's not as fun as running outdoors, but there are many pros for me:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • it shows my current heart rate in big digits (it supports garmin watch and heart rate monitor)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • works in any weather (winters are quite icy here for running every day, also there are no bears, wolves, or lynxes indoors)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • helps to do cardio more consistently (rowing is easier to start, no need to carry my phone, keys, head lamp, etc)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • perfect for full body warm up before lifing weights
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              i still plan to run from time to time, but just for fun :)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              c2 rowerg

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Alt...c2 rowerg

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Older...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                4 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                updated my now page...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                now it's more illustrated than ever before :)


                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [?]Lucie / minute [they/she/sie] » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @mntmn@mastodon.social

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  so far we've presold 12x MNT Quasar 6490 modules, that's 50% of what we need to kick off the first batch. feel free to send me some promo ideas. should i make a video showing the general performance? who would be your favorite reviewer for the Quasar Pocket Reform?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Older...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  7 ★ 3 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  wakest ⁂ boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ❤️ pipes

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  see also
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  unix: a history and a memoir by brian kernighan

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  summary--what's most important. to put my strongest concerns in a nutshell: 1. we should have some ways of coupling programs like garden hose--screw in another segment when it becomes necessary to massage data in another way

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Alt...summary--what's most important. to put my strongest concerns in a nutshell: 1. we should have some ways of coupling programs like garden hose--screw in another segment when it becomes necessary to massage data in another way

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  2 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  cool example,

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  cat files | tr ... | sort | uniq | comm -1 - dict

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [?]Lucie / minute [they/she/sie] » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @mntmn@mastodon.social

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    i'm very happy to present the first release of the Barebox bootloader tailored for MNT Pocket Reform with RK3588 processor, bringing you an advanced bootloader with graphics and comfy shell: source.mnt.re/reform/mnt-refor

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    this is the culmination of an 8-months part time effort, mostly by @ailurux who ported all the missing display drivers and did a lot of bugfixing and polishing, with some little spikes by myself here and there. also thanks to @a3f for the friendly support navigating @barebox code.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    3 seconds after powerup, an MNT logo+rainbow icon appears in the top right corner of the display

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Alt...3 seconds after powerup, an MNT logo+rainbow icon appears in the top right corner of the display

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    the system will autoboot in 2 seconds, but if you press "m" (there's a prompt + countdown for that), you can enter the boot menu where you can select a system to boot or enter the shell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Alt...the system will autoboot in 2 seconds, but if you press "m" (there's a prompt + countdown for that), you can enter the boot menu where you can select a system to boot or enter the shell.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    here i selected the bootsources menu which shows me some of the Debian Linux kernel versions installed. this also supports EFI and extlinux.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Alt...here i selected the bootsources menu which shows me some of the Debian Linux kernel versions installed. this also supports EFI and extlinux.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    the shell is quite unix/posix-like with commands like "ls", "cd", "cat" etc.there's a virtual filesystem, mounts and networking.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Alt...the shell is quite unix/posix-like with commands like "ls", "cd", "cat" etc.there's a virtual filesystem, mounts and networking.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [?]Lucie / minute [they/she/sie] » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @mntmn@mastodon.social

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @ailurux @a3f @barebox we also have a fixup script for booting the current OpenBSD aarch64 image including instructions to get started: source.mnt.re/reform/mnt-refor

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Older...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        0 ★ 0 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        in reply to »

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        thank you for the confirmation!

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          2 ★ 1 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          nathanael boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          is vp2430 good fit for ? asking for a friend

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [?]Ivy » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @spiralganglion@merveilles.town

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            can't remember if i shared this fun computer thing i made

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            it's a lil toy for interactively exploring 1-bit dither — including my beloved Atkinson dither from the MacPaint era — by playing with it like it's a board game

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            try it here, but note there's zero instruction and the UI is full of secrets: inkandswitch.com/tangents/dith

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            or, more fun, watch me explain how it works by saying words and moving my hands a lot: youtube.com/watch?v=9vZcmWhTeO

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            trip out, have fun <3

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            screenshot showing a dithered photo of some hands, above a little grid with a yellow 0,0 at the top-center surrounded by small grey circular tokens

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Alt...screenshot showing a dithered photo of some hands, above a little grid with a yellow 0,0 at the top-center surrounded by small grey circular tokens

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            wow! thank you

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            good dithering pattern always consists of multiple names :)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [?]Devine Lu Linvega » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @neauoire@merveilles.town

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The Dillo browser has an excellent directory of bookmarks! If you have ideas that might be a good fit, suggest them at the bottom of the page.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              dir.dillo-browser.org/

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1 ★ 0 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              in reply to »

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +1

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                13.3" eink display
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                3200 x 2400 @ 60 hz
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                0.69 kg

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                $719 color
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                $619 mono

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                https://www.crowdsupply.com/modos-tech/modos-flow


                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  0 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  i just got back home from a short trip and am now catching up on some household upkeep. do you keep a home maintenance checklist for routine tasks and inspections? i think i need one...


                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [?]Devine Lu Linvega » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @neauoire@merveilles.town

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    I was missing a good image viewer to flip through folders with hundreds of chr and icn pixelart files, so I wrote one!
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    git.sr.ht/~rabbits/uxn-utils/t

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A few images displayed through image.rom

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Alt...A few images displayed through image.rom

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1 ★ 0 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    in reply to »

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    so sad

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [?]Devine Lu Linvega » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @neauoire@merveilles.town

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Someone just demonstrated that the entire Uxn toolchain can be reconstructed from nothing but a POSIX shell, xxd and sed. It's down to taking 34 minutes to build the Uxntal assembler.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      bootstrap: joe.cz/uxn/uxn1b-drifloon.txt
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      repo: gitlab.com/racketeer/uxnsh

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [?]OpenBSD Amsterdam » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @OpenBSDAms@mastodon.bsd.cafe

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        OpenBSD 7.9 will be deployed on the hosts as soon as possible!
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We want to wait for the first errata to appear.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        21 new VMs were added and 61 VMs were renewed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        We donated €1125 to the Foundation, €66755 since we started.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Thank you, our users, and OpenBSD developers for an awesome OS!

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Stay safe, healthy & sane!

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        in 2026

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Phoebe Teaching Joey refers to a scene from the Friends television series in which character Phoebe Buffay attempts to teach character Joey Tribbiani French by making him repeat words after her. In March 2020, the scene gained popularity in memes online, with Phoebe attempting to explain various concepts to Joey but ultimately failing.

This one has the following exchange:
Phoebe: Just
Joey: Just
Phoebe: Update
Joey: Update
Phoebe: And
Joey: And
Phoebe: Shutdown
Joey: Update And Restart

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Alt...Phoebe Teaching Joey refers to a scene from the Friends television series in which character Phoebe Buffay attempts to teach character Joey Tribbiani French by making him repeat words after her. In March 2020, the scene gained popularity in memes online, with Phoebe attempting to explain various concepts to Joey but ultimately failing. This one has the following exchange: Phoebe: Just Joey: Just Phoebe: Update Joey: Update Phoebe: And Joey: And Phoebe: Shutdown Joey: Update And Restart

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [?]R E K » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @rek@merveilles.town

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Illustrated tear-downs and break-downs of everyday products, like mechanical pencils, lighters and pez dispensers, that you may have taken for granted. Drawn by Bryan Macomber, a mechanical engineer and artist.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A really neat idea.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          mechanical-pencil.com/

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1 ★ 0 ↺
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          in reply to »

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [?]roman » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          same here. i gave up and just switched to good old local files... waisted so much time and money on streaming services

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            roman boosted
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            in reply to »

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [?]Lucie / minute [they/she/sie] » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @mntmn@mastodon.social

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            it works! it's just a bit smol on this high res screen

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            openbsd fvwm retro glory on mnt pocket reform rk3588, but tiny

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Alt...openbsd fvwm retro glory on mnt pocket reform rk3588, but tiny

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Older...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            0 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            [?]roman » 🔓
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            could you please run https://browserbench.org/Speedometer3.1/ in any browser you can?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            # pkg_add qutebrowser

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              roman boosted
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              in reply to »

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [?]Lucie / minute [they/she/sie] » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @mntmn@mastodon.social

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              got X running, but xrandr -o won't budge, need to figure out how to make a xorg.conf (this feels extremely retro) or how to install some wayland compositor

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [?]Lucie / minute [they/she/sie] » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @mntmn@mastodon.social

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              OpenBSD on MNT Pocket Reform (with RK3588)! next question: can it rotate the framebuffer console?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              it's OpenBSD installer on MNT Pocket Reform's display! but it is rotated into portrait mode

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Alt...it's OpenBSD installer on MNT Pocket Reform's display! but it is rotated into portrait mode

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              [?]Devine Lu Linvega » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @neauoire@merveilles.town

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              I made a zine, it's called Fractions Are Everything, it invites the reader into looking at fractions a little differently.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The typesetting is done entirely in .

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              wiki.xxiivv.com/site/pocket_fr

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              8 pager, the cover is a AND gate with the primes 2 and 3, on one side, and 5 on the other.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Alt...8 pager, the cover is a AND gate with the primes 2 and 3, on one side, and 5 on the other.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Older...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [?]Lucie / minute [they/she/sie] » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @mntmn@mastodon.social

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                BTW if you're looking for an open hardware, repairable laptop made by a small team in berlin with no venture capital, maybe MNT Reform Next could be interesting for you: crowdsupply.com/mnt/mnt-reform

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Older...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                [?]Aldin the Mage [he/him] » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @AldinTheMage@dice.camp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @mntmn really wish I had new-laptop money right now 😭 I absolutely love everything about these MNT devices. One of these days I'll be able to grab one.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  [?]Resuna » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @resuna@ohai.social

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @mntmn

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Mechanical Keyboard:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Standard stagger, 80 keys
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Kailh Choc Brown switches
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  N-key rollover
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Raspberry Pi RP2040 controller

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  QMK keyboard firmware?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Oh man, if they made it about 1cm wider it could have a standard 60% keyboard layout. Maybe even fit a low profile GH60 board. But no, the keyboard is 14.5u wide.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    roman boosted

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    [?]Flaki [he/him] » 🌐
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @flaki@flaki.social

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    TFW you receive 14kWh of raw LFP battery cells 💙

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Four large cardboard boxes in the back of an SUV. They have large red "FRAGILE" stickers and "THIS SIDE UP" markings on them

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Alt...Four large cardboard boxes in the back of an SUV. They have large red "FRAGILE" stickers and "THIS SIDE UP" markings on them

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ...
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      0 ★ 0 ↺

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      [?]roman » 🔓
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @hi@romanzolotarev.com

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      wow! how is total cost and shipping time?

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        History