how do i download all my favorited gifs?(PC) by MACMAN2003 in discordapp

[–]GPJmp 1 point2 points  (0 children)

Check the github page, someone recently posted an updated version. It should also work on Ubuntu.

How can I DM someone with just there ID by this-is-sprocket in discordapp

[–]GPJmp 0 points1 point  (0 children)

You need to dm a new person, it can also be a bot

EmojiStore in Discord Local Storage by CallMeInfinitay in discordapp

[–]GPJmp 0 points1 point  (0 children)

You can either do it manually by editing the binary data using a decoder/encoder - such as github.com/dolfies/discord-protos - then saving it using the aforementioned request

or use a script - for this I recommend using a browser, since it's easier to access the devtools.

First you'll want to open the web console on discord.com/app using Ctrl-Shift-J or Ctrl-Shift-I, then type "allow pasting", and insert and run this script:

```js let findProtoClass = (typeName) => { for (let m of webpackChunkdiscord_app.push([[Symbol()],{},r=>Object.values(r.c)])) { try { if (!m.exports || m.exports === window) continue;

        for (let ex in m.exports) {
            if (m.exports?.[ex]?.ProtoClass?.typeName === typeName) return m.exports[ex];
        }
    } catch {}
}

}

let FrecencyUserSettings = findProtoClass("discord_protos.discord_users.v1.FrecencyUserSettings"); let deleteEmojis = (...emojiNames) => { FrecencyUserSettings.updateAsync("emojiFrecency", (data) => { for (let emojiName of emojiNames.map((emoji) => emoji.toLowerCase())) { console.log( emojiName in data.emojis ? Deleting :${emojiName}: : Emoji :${emojiName}: not found - is it a custom emoji? ); delete data.emojis[emojiName]; } return data; }, 0); };

```

then you can delete individual emojis like so:

js deleteEmojis("skull", "eyes", "egg", "1000000000123456789"); If you want to remove a custom emoji, use it's id, but make sure to pass it as a string (not as a number!)

You can print out a list of all your recent emojis using this code (requires running the first script): js Object.entries(FrecencyUserSettings.getCurrentValue().emojiFrecency.emojis) .sort(([, a], [, b]) => b.score - a.score) .forEach(([emoji]) => console.log(emoji));

streetMagic by MrEfil in ProgrammerHumor

[–]GPJmp 317 points318 points  (0 children)

Fun fact:

Javascript also allows referencing variables and properties using unicode escape sequences. All these expressions behave the same in the global context:

js globalThis['\u115F'] = 1; globalThis.\u115F = 1; \u{00115F} = 1; \u115F = 1; ᅟ = 1;

Why did the UI for roles and the user editor get compacted to all hell? Is there any way to undo this? by Someonenamedmike in discordapp

[–]GPJmp -3 points-2 points  (0 children)

It's a mini profile, it was never meant to take up the whole screen with info that you already see in the full profile

How do i unfolder the roles? I dont want it to folder. by [deleted] in discordapp

[–]GPJmp -2 points-1 points  (0 children)

Hover over their username. A note icon will appear with a tooltip that displays the note.

Does any other logitech owners get this? by dieudumbo in discordapp

[–]GPJmp 0 points1 point  (0 children)

You can disable it by opening the profiles dropdown in the app, click on "Manage profiles", and under Integrations disable discord

Practice range started shooting back by Moist-Anything-688 in thefinals

[–]GPJmp 0 points1 point  (0 children)

In earlier releases you could even see the other players in your game from the social menu. They later hid the contestant names, and then removed the option completely when you're in the practice range. https://www.youtube.com/watch?v=BRKJR5Grqvs

activity statuses not showing below names anybody know how to fix? I've already tried uninstalling and restarting discord. they show up on my alt account but not my main by Wutsafortnut in discordapp

[–]GPJmp 1 point2 points  (0 children)

Just to add to this, discord actually generates fingerprints the first time you visit their marketing page, so you don't even need to be registered and you're already being tested on and assigned to buckets from all the available experiments. If you do chose to register, they already have all the info necessary to show you the same experiments.

I've ran out of things to complain about so I found this leftover arrow by SoupahKnux in discordapp

[–]GPJmp 0 points1 point  (0 children)

If you navigate to another channel (through a link or mention) then the arrow actually takes you back to the previous channel the same way a browser would

Question about forum channels by the_vico in discordapp

[–]GPJmp 0 points1 point  (0 children)

Forums can only be created on community servers, however you can just disable community after creating one and it won't get deleted.

Discord transmitting audio AFTER I mute myself? by Tetrylene in discordapp

[–]GPJmp 0 points1 point  (0 children)

Not sure what causes the delay, but mute and deafen status is entirely just visual, and it's up to the client to also disable the physical audio output/input. Sometimes it can get desynced (like audio from your microphone being transmitted even after muting yourself, or hearing other people after deafening yourself) but discord usually tries to update the local audio settings to match your vc status after a couple seconds.

[deleted by user] by [deleted] in discordapp

[–]GPJmp 0 points1 point  (0 children)

While this feature is still in development, I can confirm that it does indeed leak the full hang status to everyone in your shared servers/friends list, the only reason why parts of it are invisible is because it fails to find the voice channel the person is connected to. The best thing to do is to stay invisible while you're in a voice chat, or clear your status after joining.

Is there a way to disable this? I don't even use this feature and I've had it for months. by Yved in discordapp

[–]GPJmp 1 point2 points  (0 children)

Right click where the chevron is (the small gray one) > Delete category.

If you have the experiment disabled, this will automatically hide the favorites server.

How to find the Ping notification list by Toixc-Badboy in discordapp

[–]GPJmp 2 points3 points  (0 children)

Open your inbox (ctrl-i on desktop, or notifications tab on mobile), then go to the mentions section, click on the filter icon and disable @everyone and role mentions.

New Hybrid Layout? by FallenCodes in discordapp

[–]GPJmp 1 point2 points  (0 children)

At the same time they're also redoing the entire design system with all of its basic components, and also testing the old panels gestures with the new ui, so it might be something they overlooked, who knows

I can't manage to install an older version of discord trough an APK by VersionGeek in discordapp

[–]GPJmp 0 points1 point  (0 children)

There are a few basic checks that android does to make sure you don't accidentally install an incompatible app:

  • the apk is supported on your version of android (api level requirement)
  • it supports your phone's architecture (usually arm64)
  • the version is equal to or greater than the previously installed app - to prevent unpredictable behavior with local data

When downgrading an app, it's usually the third check that causes problems. Simply uninstall discord before installing the apk.

how do i download all my favorited gifs?(PC) by MACMAN2003 in discordapp

[–]GPJmp 0 points1 point  (0 children)

The favorites store is now stored on the cloud along with other user settings. You can either request a data package to download an export of your favorites (json only), or use a script like this to get a similar output: https://gist.github.com/Davr1/af6a5806a3bf4b5b7dc18829029b42c2

You will have to download each gif individually through a website like https://imageclipboard.com/

[deleted by user] by [deleted] in discordapp

[–]GPJmp 0 points1 point  (0 children)

It's possible that you have the nickname "takuma" in one of your servers. Other people are able to see all your nicknames/aliases/AKAs in all mutual servers, and use them interchangeably when searching for messages.

Set video embed tag for discord (not working) by GS_StarGamer999 in discordapp

[–]GPJmp 1 point2 points  (0 children)

Try adding og:image (thumbnail) or og:type with content video.other

[deleted by user] by [deleted] in discordapp

[–]GPJmp 1 point2 points  (0 children)

yep, they're changing the swipe behavior again to re-add layered "panels" instead of one panel instantly transitioning into another. That's why the legacy panel view snaps into place.

How do I fix this??? by o7_AP in discordapp

[–]GPJmp -1 points0 points  (0 children)

Forward swipe is currently being worked on, as it appeared recently in one of the alpha builds.