Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (Cyborg)
  • No Skin
Collapse
Brand Logo

CIRCLE WITH A DOT

  1. Home
  2. Uncategorized
  3. I wonder if anyone has made any software to detect keysmashing

I wonder if anyone has made any software to detect keysmashing

Scheduled Pinned Locked Moved Uncategorized
33 Posts 13 Posters 117 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • foone@digipres.clubF foone@digipres.club

    I wonder if anyone has made any software to detect keysmashing

    (I mean, besides Pawsense, kind)

    I mean, like, I could run it on my chat logs and see which lines were keysmashes

    foone@digipres.clubF This user is from outside of this forum
    foone@digipres.clubF This user is from outside of this forum
    foone@digipres.club
    wrote last edited by
    #2

    this chatlog is in... random order? huh?

    foone@digipres.clubF 1 Reply Last reply
    0
    • foone@digipres.clubF foone@digipres.club

      this chatlog is in... random order? huh?

      foone@digipres.clubF This user is from outside of this forum
      foone@digipres.clubF This user is from outside of this forum
      foone@digipres.club
      wrote last edited by
      #3

      I used Discrub to export a Discord chatlog for analysis, and it gave me a JSON of all the messages in that chat, but in random order.

      weird! I mean I can just sort them by timestamp or ID (maybe?) but that's just the first time I've ever seen chatlogs that are not ordered

      wyatt@soc.megatokyo.moeW vindo@mastodon.socialV gloriouscow@oldbytes.spaceG foone@digipres.clubF webframp@hachyderm.ioW 5 Replies Last reply
      0
      • foone@digipres.clubF foone@digipres.club

        I used Discrub to export a Discord chatlog for analysis, and it gave me a JSON of all the messages in that chat, but in random order.

        weird! I mean I can just sort them by timestamp or ID (maybe?) but that's just the first time I've ever seen chatlogs that are not ordered

        wyatt@soc.megatokyo.moeW This user is from outside of this forum
        wyatt@soc.megatokyo.moeW This user is from outside of this forum
        wyatt@soc.megatokyo.moe
        wrote last edited by
        #4
        @foone yet another brilliant discord innovation
        1 Reply Last reply
        0
        • foone@digipres.clubF foone@digipres.club

          I used Discrub to export a Discord chatlog for analysis, and it gave me a JSON of all the messages in that chat, but in random order.

          weird! I mean I can just sort them by timestamp or ID (maybe?) but that's just the first time I've ever seen chatlogs that are not ordered

          vindo@mastodon.socialV This user is from outside of this forum
          vindo@mastodon.socialV This user is from outside of this forum
          vindo@mastodon.social
          wrote last edited by
          #5

          @foone random access messaging

          1 Reply Last reply
          0
          • foone@digipres.clubF foone@digipres.club

            I used Discrub to export a Discord chatlog for analysis, and it gave me a JSON of all the messages in that chat, but in random order.

            weird! I mean I can just sort them by timestamp or ID (maybe?) but that's just the first time I've ever seen chatlogs that are not ordered

            gloriouscow@oldbytes.spaceG This user is from outside of this forum
            gloriouscow@oldbytes.spaceG This user is from outside of this forum
            gloriouscow@oldbytes.space
            wrote last edited by
            #6

            @foone that's interesting because the extension code seems to make an attempt to sort by timesamp

            exportMessages = messageData.messages
            .map((m) => new Message({ ...m }))
            .sort((a, b) =>
            sortByProperty(
            Object.assign(a, { date: new Date(a.timestamp) }),
            Object.assign(b, { date: new Date(b.timestamp) }),
            "date",
            sortOverride,
            ),
            );
            foone@digipres.clubF 1 Reply Last reply
            0
            • foone@digipres.clubF foone@digipres.club

              I used Discrub to export a Discord chatlog for analysis, and it gave me a JSON of all the messages in that chat, but in random order.

              weird! I mean I can just sort them by timestamp or ID (maybe?) but that's just the first time I've ever seen chatlogs that are not ordered

              foone@digipres.clubF This user is from outside of this forum
              foone@digipres.clubF This user is from outside of this forum
              foone@digipres.club
              wrote last edited by
              #7

              yep, sorting them by ID puts them in the right order.

              so weird

              foone@digipres.clubF 1 Reply Last reply
              0
              • gloriouscow@oldbytes.spaceG gloriouscow@oldbytes.space

                @foone that's interesting because the extension code seems to make an attempt to sort by timesamp

                exportMessages = messageData.messages
                .map((m) => new Message({ ...m }))
                .sort((a, b) =>
                sortByProperty(
                Object.assign(a, { date: new Date(a.timestamp) }),
                Object.assign(b, { date: new Date(b.timestamp) }),
                "date",
                sortOverride,
                ),
                );
                foone@digipres.clubF This user is from outside of this forum
                foone@digipres.clubF This user is from outside of this forum
                foone@digipres.club
                wrote last edited by
                #8

                @gloriouscow the timestamp looks like it should sort properly, so... I don't know what's going on

                foone@digipres.clubF gloriouscow@oldbytes.spaceG 2 Replies Last reply
                0
                • foone@digipres.clubF foone@digipres.club

                  @gloriouscow the timestamp looks like it should sort properly, so... I don't know what's going on

                  foone@digipres.clubF This user is from outside of this forum
                  foone@digipres.clubF This user is from outside of this forum
                  foone@digipres.club
                  wrote last edited by
                  #9

                  @gloriouscow I already wrote code to sort it anyway:

                  all_messages.sort(key=lambda m:m['id'])

                  1 Reply Last reply
                  0
                  • foone@digipres.clubF foone@digipres.club

                    @gloriouscow the timestamp looks like it should sort properly, so... I don't know what's going on

                    gloriouscow@oldbytes.spaceG This user is from outside of this forum
                    gloriouscow@oldbytes.spaceG This user is from outside of this forum
                    gloriouscow@oldbytes.space
                    wrote last edited by
                    #10

                    @foone i wonder if they did something like pass the results through an object instead of an array which will lose ordering

                    you're not nerd sniping me tonight though! NICE TRY

                    foone@digipres.clubF 1 Reply Last reply
                    0
                    • foone@digipres.clubF foone@digipres.club

                      yep, sorting them by ID puts them in the right order.

                      so weird

                      foone@digipres.clubF This user is from outside of this forum
                      foone@digipres.clubF This user is from outside of this forum
                      foone@digipres.club
                      wrote last edited by
                      #11

                      I also need a way to detect "awawas" and the single key braincrash, like:
                      <kitten> hhhhhhhhhhhhhhhhhhhh

                      foone@digipres.clubF psymar@unstable.systemsP 2 Replies Last reply
                      0
                      • gloriouscow@oldbytes.spaceG gloriouscow@oldbytes.space

                        @foone i wonder if they did something like pass the results through an object instead of an array which will lose ordering

                        you're not nerd sniping me tonight though! NICE TRY

                        foone@digipres.clubF This user is from outside of this forum
                        foone@digipres.clubF This user is from outside of this forum
                        foone@digipres.club
                        wrote last edited by
                        #12

                        @gloriouscow yes. lets all ignore this problem and not waste time on it. we all have bigger and more tropical fish to fry

                        1 Reply Last reply
                        0
                        • foone@digipres.clubF foone@digipres.club

                          I also need a way to detect "awawas" and the single key braincrash, like:
                          <kitten> hhhhhhhhhhhhhhhhhhhh

                          foone@digipres.clubF This user is from outside of this forum
                          foone@digipres.clubF This user is from outside of this forum
                          foone@digipres.club
                          wrote last edited by
                          #13

                          pip install bottom-chat

                          foone@digipres.clubF ben@mastodon.lubar.meB jackemled@furry.engineerJ 3 Replies Last reply
                          0
                          • foone@digipres.clubF foone@digipres.club

                            pip install bottom-chat

                            foone@digipres.clubF This user is from outside of this forum
                            foone@digipres.clubF This user is from outside of this forum
                            foone@digipres.club
                            wrote last edited by
                            #14

                            hey look a keysmash generator, that's something:

                            Link Preview Image
                            Keysmash Generator - Online Keyboard Key Smashing Simulator

                            Tool for generating 'keysmashes', random keystrokes on the keyboard, keyboard smashing style, sometimes used as a way to show emotion (anger, frenzy, hilarity, etc.)

                            favicon

                            (www.dcode.fr)

                            fluffy@plush.cityF kirakira@furry.engineerK foone@digipres.clubF nine@chitter.xyzN 4 Replies Last reply
                            0
                            • foone@digipres.clubF foone@digipres.club

                              pip install bottom-chat

                              ben@mastodon.lubar.meB This user is from outside of this forum
                              ben@mastodon.lubar.meB This user is from outside of this forum
                              ben@mastodon.lubar.me
                              wrote last edited by
                              #15

                              @foone apt install hbottom

                              1 Reply Last reply
                              0
                              • foone@digipres.clubF foone@digipres.club

                                I also need a way to detect "awawas" and the single key braincrash, like:
                                <kitten> hhhhhhhhhhhhhhhhhhhh

                                psymar@unstable.systemsP This user is from outside of this forum
                                psymar@unstable.systemsP This user is from outside of this forum
                                psymar@unstable.systems
                                wrote last edited by
                                #16

                                @foone does the single key thing count if it's a live commentary on their actions

                                my mom and I had a cat who, while sleeping next to Mom in her recliner, would reach out in her sleep and type zzzzzzzzzzz

                                foone@digipres.clubF 1 Reply Last reply
                                0
                                • psymar@unstable.systemsP psymar@unstable.systems

                                  @foone does the single key thing count if it's a live commentary on their actions

                                  my mom and I had a cat who, while sleeping next to Mom in her recliner, would reach out in her sleep and type zzzzzzzzzzz

                                  foone@digipres.clubF This user is from outside of this forum
                                  foone@digipres.clubF This user is from outside of this forum
                                  foone@digipres.club
                                  wrote last edited by
                                  #17

                                  @psymar nice. self-describing!

                                  psymar@unstable.systemsP 1 Reply Last reply
                                  0
                                  • foone@digipres.clubF foone@digipres.club

                                    hey look a keysmash generator, that's something:

                                    Link Preview Image
                                    Keysmash Generator - Online Keyboard Key Smashing Simulator

                                    Tool for generating 'keysmashes', random keystrokes on the keyboard, keyboard smashing style, sometimes used as a way to show emotion (anger, frenzy, hilarity, etc.)

                                    favicon

                                    (www.dcode.fr)

                                    fluffy@plush.cityF This user is from outside of this forum
                                    fluffy@plush.cityF This user is from outside of this forum
                                    fluffy@plush.city
                                    wrote last edited by
                                    #18

                                    @foone it gave me poopqweqwe which sounds pretty fitting

                                    1 Reply Last reply
                                    0
                                    • foone@digipres.clubF foone@digipres.club

                                      I wonder if anyone has made any software to detect keysmashing

                                      (I mean, besides Pawsense, kind)

                                      I mean, like, I could run it on my chat logs and see which lines were keysmashes

                                      crystallinefire@app.wafrn.netC This user is from outside of this forum
                                      crystallinefire@app.wafrn.netC This user is from outside of this forum
                                      crystallinefire@app.wafrn.net
                                      wrote last edited by
                                      #19

                                      perhaps you could look into whatever https://sk.lunya.pet/@keysmash is doing ?

                                      1 Reply Last reply
                                      0
                                      • foone@digipres.clubF foone@digipres.club

                                        hey look a keysmash generator, that's something:

                                        Link Preview Image
                                        Keysmash Generator - Online Keyboard Key Smashing Simulator

                                        Tool for generating 'keysmashes', random keystrokes on the keyboard, keyboard smashing style, sometimes used as a way to show emotion (anger, frenzy, hilarity, etc.)

                                        favicon

                                        (www.dcode.fr)

                                        kirakira@furry.engineerK This user is from outside of this forum
                                        kirakira@furry.engineerK This user is from outside of this forum
                                        kirakira@furry.engineer
                                        wrote last edited by
                                        #20

                                        @foone they could never automate bottoms away

                                        1 Reply Last reply
                                        0
                                        • foone@digipres.clubF foone@digipres.club

                                          I used Discrub to export a Discord chatlog for analysis, and it gave me a JSON of all the messages in that chat, but in random order.

                                          weird! I mean I can just sort them by timestamp or ID (maybe?) but that's just the first time I've ever seen chatlogs that are not ordered

                                          webframp@hachyderm.ioW This user is from outside of this forum
                                          webframp@hachyderm.ioW This user is from outside of this forum
                                          webframp@hachyderm.io
                                          wrote last edited by
                                          #21

                                          @foone disc rub? SUS

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups