RSS - private

GNUkko Sauvage (eris-ng) :neorenard:

@eris@p.enes.lv

This is an alt of @Ukko@akko.disqordia.space

latvian, in their 25s, monogam, straight, he/him lesbian, ace-spec, slut. anarcho-monarchist. A theymab transtrender. I speak lv/en/ru but can pretend to understand other languages sometimes.

admin of this instance, don't ask for an invite unless you're a frien :3

the sadistic playful puppy you’ve been warned about.

Ionizing particles, true Ukkos, fake Erises, and Disqordians DNI

Minors: please consult with your parent(s)/guardian before following and/or interacting; and please do not interact with lewd and/or sexual content unless you are of the age of majority

Current PFP is Senjougahara Hitagi and Hanekawa Tsubasa, specifically by https://x.com/mani_ma/status/1973769856714760502
Previous PFP is Suzy, secret Undertale character only mentioned
Previous² PFP is Senjougahara Hitagi, specifically by https://www.tumblr.com/manimarough/785249534734417921
Previous³ PFP was dead Marsey
Previous⁴ PFP was A.B.A. from Guilty Gear Strive
Previous⁵ PFP was some image 40 sent me
Previous⁶ PFP was https://www.kotobukiya.co.jp/en/product/detail/p4934054034673/
Previous⁷ PFP was https://www.furaffinity.net/view/47773488/

eriscon is not happening
📌 4 ★ 3 ↺

[?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
@eris@p.enes.lv

yes i actually DDOSed Disqordia

[GIF of Walter White saying "I won"]

2 messages from eris "I knew you did it", and "You win 😅"

Alt...2 messages from eris "I knew you did it", and "You win 😅"

1 ★ 0 ↺
in reply to »

[?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
@eris@p.enes.lv

Regarding regex formats, sed uses the ancient POSIX Basic RE, you should always add -E to it on commandline to get a more modern looking regex (POSIX ERE / Extended Regular Expressions). Unless you use fancy stuff like backreferences, lookaheads, or such, basic regex knowledge from Perl/Python/Java/Javascript/anything-from-this-century should be transferrable to it

    3 ★ 0 ↺
    in reply to »

    [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
    @eris@p.enes.lv

    This is a way to do it, but care should be taken if cutting out strings from generated HTML, there might be stuff around <head> or </head>on the same line which you might want to leave in or cut out, so you should also do some stuff like s/^.*Forecast/\1/ (and the analog in awk).

    BTW to me your post feels like a MIME formatted email opened in a mail client that doesn't support it xdd (because of all the dashes)

    CC: @apophis@kill-corporations.enterprises

      ...
      0 ★ 0 ↺
      in reply to »

      [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
      @eris@p.enes.lv

      (If it's fast enough for you and easy to run from CLI and you'll have access to it on all your machines, just do this even if it might seem absurd.)

        ...
        1 ★ 0 ↺
        in reply to »

        [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
        @eris@p.enes.lv

        Hmmmm, I feel like this should be possible with ed, and thus with sed, but idk how painful it would be.

          ...
          1 ★ 0 ↺

          [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
          @eris@p.enes.lv

          Ugh them being line oriented makes stuff much less fun

          CC: @apophis@kill-corporations.enterprises

            ...
            1 ★ 0 ↺

            [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
            @eris@p.enes.lv

            I think sed (or ed) is not the right approach here, just implement the thing in your favorite scripting language, but if you want to see the disgusting thing I wrote:

            ─ cat fileA      
            hello
            world
            how are you doing on this fine day
            I am doing quite START fine
            what about you?
            oh yeah whatever
            blabla END
            honestly i dont care i am a meanie beanie muhaahahaha
            END
            damn, another end huh
            ─ cat fileB
            this is the
            new content
            in between the tags :)
            ─ ed -s fileA
            # This is all typed in, you can save it in a file and do ed -s < edscript
            # Add newlines after STARTs and before ENDs
            g/START/s/START/START\
            /
            g/END/s/END/\
            END/
            # Delete everything between the first START and the next END
            1;/START/+1;/END/-1d
            # Read in the other file in between
            -1r fileB
            # Get rid of newlines after STARTs and before ENDs
            g/START/.;+1j
            g/END/-1;+1j
            w
            q
            ─ cat fileA
            hello
            world
            how are you doing on this fine day
            I am doing quite STARTthis is the
            new content
            in between the tags :)END
            honestly i dont care i am a meanie beanie muhaahahaha
            END
            damn, another end huh
            Anyways if you don't want to write your own script and would rather have a shell script with sed and such, you should probably do something similar to what I did:
            1. add extra newlines similarly to what I did, but use some sed s/START/START\n/ (idk if that \n is correct)
            2. use awk to filter out the unwanted content or perhaps split the file in pre-head and post-head parts, I'm not sure sed is able to store enough context to do it
            3. cat pre-head new-head post-head to join them together
            4. optionally if it's important, run a sed to remove extra newlines added in step (for HTML head tags it doesn't matter)

            CC: @apophis@kill-corporations.enterprises

              3 ★ 0 ↺
              in reply to »

              [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
              @eris@p.enes.lv

              the nucleon polycules are too busy color coordinating their outfits and having explosive breakups to care about the orbiters

              CC: @choir@social.xenofem.me

                1 ★ 0 ↺
                in reply to »

                [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                @eris@p.enes.lv

                :patneorose_pensive:

                  ...
                  1 ★ 0 ↺
                  in reply to »

                  [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                  @eris@p.enes.lv

                  you get mad over me saying neo [insert text here] woozy wrench pregnant

                    ...
                    3 ★ 4 ↺

                    [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                    @eris@p.enes.lv

                    Nepeta playing the hit game Love Exalt 8372

                    (Unedited image is art by purnya and shows Nepeta playing Seal World. telegram: https://t.me/purnya2/4066 birdsite: https://x.com/purnya2/status/1948886707925135610 )

                    Nepeta (a Homestuck troll) playing Love Exalt 8372 on Steam Deck and looking at the viewer.  Steam Deck display shows character Imp asking "Are you gay?"

                    Alt...Nepeta (a Homestuck troll) playing Love Exalt 8372 on Steam Deck and looking at the viewer. Steam Deck display shows character Imp asking "Are you gay?"

                    ...
                    1 ★ 0 ↺
                    in reply to »

                    [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                    @eris@p.enes.lv

                    Because you overreacting is so silly

                      ...
                      1 ★ 0 ↺
                      in reply to »

                      [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                      @eris@p.enes.lv

                      heartwrenching if true

                        ...
                        1 ★ 0 ↺

                        [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                        @eris@p.enes.lv

                        :neoheart_wrench_woozy:

                        CC: @rose@yourwalls.today

                          ...
                          1 ★ 0 ↺
                          in reply to »

                          [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                          @eris@p.enes.lv

                          truthful if true

                            ...
                            1 ★ 0 ↺
                            in reply to »

                            [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                            @eris@p.enes.lv

                            :woozyrose:

                              ...

                              [?]rose » 🌐
                              @rose@yourwalls.today

                              @eris :wilted-rose-weary:
                              it annoys me every time i want to use "🥀"

                                ...
                                2 ★ 0 ↺

                                [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                                @eris@p.enes.lv

                                :neorose_woozy_wrench:

                                  ...

                                  [?]N33R "➡️ GPN" ⚸ 🩸 :lesbian: » 🌐
                                  @N33R@fops.cloud

                                  2 ★ 0 ↺
                                  in reply to »

                                  [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                                  @eris@p.enes.lv

                                  Me when I am against X so I have my bots post both "X made my kid trans" and "X made me detransition"

                                  CC: @winter@translunar.academy

                                    4 ★ 1 ↺
                                    apophis boosted

                                    [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                                    @eris@p.enes.lv

                                    missing doggerland like crazy

                                    crying anthropomorphic wolf sitting on a bed in a dark room with their face buried in their hands.  A flip phone is in front of them open shining

                                    Alt...crying anthropomorphic wolf sitting on a bed in a dark room with their face buried in their hands. A flip phone is in front of them open shining

                                    ...
                                    0 ★ 0 ↺
                                    in reply to »

                                    [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                                    @eris@p.enes.lv

                                    I cry every time I remember of Doggerland

                                      0 ★ 0 ↺
                                      in reply to »

                                      [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                                      @eris@p.enes.lv

                                      freddy fazverse

                                        in reply to »

                                        [?]SuperDicq » 🌐
                                        @SuperDicq@minidisc.tokyo

                                        @sun@shitposter.world Anyways I'm glad I live in a country with sensible laws against this kind of stuff. And also that I'm autistic poly-amorous bisexual who only dates other weirdos.

                                        Because the cis-hetero-normie dating scene is about to become full on competitive PvP it seems like:

                                          ...
                                          0 ★ 0 ↺

                                          [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                                          @eris@p.enes.lv

                                          2 ★ 0 ↺
                                          in reply to »

                                          [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                                          @eris@p.enes.lv

                                          I think they haven't watched South Park ever and watched this one just because someone said that the creators have grown up and become leftists or whatever (that overton window is craaazy)

                                            ...
                                            2 ★ 0 ↺
                                            in reply to »

                                            [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                                            @eris@p.enes.lv

                                            Where do you think the ~50 genes came from? (Hungarians and Finns.)

                                            CC: @lain@lain.com

                                              1 ★ 0 ↺
                                              in reply to »

                                              [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                                              @eris@p.enes.lv

                                              I'm allergic to you, that's why I don't post on @pi55d@yourwalls.today anymore !

                                              CC: @navi@social.vlhl.dev @kimapr@ublog.kimapr.net

                                                ...
                                                3 ★ 1 ↺
                                                paula8 boosted
                                                in reply to »

                                                [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                                                @eris@p.enes.lv

                                                Fediblock yourwalls.today for hating lua

                                                CC: @navi@social.vlhl.dev @kimapr@ublog.kimapr.net

                                                  ...
                                                  2 ★ 0 ↺

                                                  [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                                                  @eris@p.enes.lv

                                                  cellaugheline

                                                  1 ★ 0 ↺
                                                  in reply to »

                                                  [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                                                  @eris@p.enes.lv

                                                  what did she mean by this

                                                    1 ★ 0 ↺
                                                    in reply to »

                                                    [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                                                    @eris@p.enes.lv

                                                    Unfollowed

                                                    CC: @navi@social.vlhl.dev

                                                      4 ★ 0 ↺
                                                      in reply to »

                                                      [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                                                      @eris@p.enes.lv

                                                      t.getText is not a function

                                                      CC: @navi@social.vlhl.dev @rose@yourwalls.today

                                                        4 ★ 0 ↺
                                                        in reply to »

                                                        [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                                                        @eris@p.enes.lv

                                                        everywhere i go, there's more lispphobia

                                                        CC: @navi@social.vlhl.dev

                                                          ...
                                                          2 ★ 0 ↺
                                                          in reply to »

                                                          [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                                                          @eris@p.enes.lv

                                                          Make a bug report that it should be named diskover

                                                          CC: @jonossaseuraava@post.ebin.club @nightjar@twoot.site

                                                            1 ★ 0 ↺
                                                            in reply to »

                                                            [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                                                            @eris@p.enes.lv

                                                            I bet they'll taste just as bad

                                                            CC: @yew@misskey.bubbletea.dev

                                                              ...
                                                              2 ★ 0 ↺
                                                              in reply to »

                                                              [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                                                              @eris@p.enes.lv

                                                              when i was a kid i cracked open a cherry pit and tasted the seed inside. IIRC was not a nice flavor

                                                              CC: @yew@misskey.bubbletea.dev

                                                                ...
                                                                3 ★ 2 ↺
                                                                :Tenshi_eating_a_corndog: boosted
                                                                in reply to »

                                                                [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                                                                @eris@p.enes.lv

                                                                cannibalism is queer and you're being real bigoted rn

                                                                CC: @tenthousandisopods@yearning.gay

                                                                  2 ★ 0 ↺
                                                                  in reply to »

                                                                  [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                                                                  @eris@p.enes.lv

                                                                  ...

                                                                  [?]apophis » 🌐
                                                                  @apophis@kill-corporations.enterprises

                                                                  ACLU petition about the credit card adult content thing https://action.aclu.or...

                                                                  (i *think* you have to be a US national or resident for them to count your signature but pls correct me if i'm wrong)

                                                                  1 ★ 0 ↺
                                                                  in reply to »

                                                                  [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                                                                  @eris@p.enes.lv

                                                                  specifically their bonemarrow

                                                                  CC: @apophis@kill-corporations.enterprises

                                                                    1 ★ 0 ↺
                                                                    in reply to »

                                                                    [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                                                                    @eris@p.enes.lv

                                                                    mine is made of ancient swamp animals

                                                                    CC: @apophis@kill-corporations.enterprises

                                                                      ...
                                                                      1 ★ 0 ↺
                                                                      in reply to »

                                                                      [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                                                                      @eris@p.enes.lv

                                                                      idk bubba this one appalachian guy put it in my head

                                                                      CC: @fiore@brain.worm.pink

                                                                        1 ★ 0 ↺
                                                                        in reply to »

                                                                        [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                                                                        @eris@p.enes.lv

                                                                        lol sure thing bubba

                                                                        CC: @fiore@brain.worm.pink

                                                                          ...
                                                                          1 ★ 0 ↺
                                                                          in reply to »

                                                                          [?]GNUkko Sauvage (eris-ng) :neorenard: » 🌐
                                                                          @eris@p.enes.lv

                                                                          rude awakening to the painful truth

                                                                          CC: @fiore@brain.worm.pink

                                                                            ...

                                                                            History

                                                                            Back to top - More...