… and I can’t even continue the chat from my phone.

2 points
*

Harddrives start at 16€/TB, so 500MB would be 0.008€. SSDs start at 50€/TB, so it would be 0.025€ or two-and-a-half cents

permalink
report
reply
13 points

I don’t think people are worried about storing hundreds of Signal instances, this isn’t a photo backup.
The concerns are bloat, optimisation, and memory usage.

Also, HDDs can go from $7.5/TB

permalink
report
parent
reply
11 points

That’s the point. The storage is a bad metric. While it might indicate poor performance, it’s not a direct indication of poor performance. The bloat and optimization comes from the usage of Electron. And people use Electron because it’s far easier to make cross-platform deployments for Web and desktop using a framework like Electron. Show me the QT/JavaFX app that mimics Signal and we can compare the cost to develop it. Electron isn’t the best choice for memory usage and reducing bloat, but it’s the best choice for quick development (in my opinion but also proven out by the market share it has)

permalink
report
parent
reply
2 points

yes but think about how much money writing 500MB worth of code would cost.

I realize it’s not all code, and some of it is already written, but please, muse me, and do the math for it.

permalink
report
parent
reply
1 point

Writing less code costs more money. The programm is large because they slapped some existing stuff together instead of writing everything from scratch

permalink
report
parent
reply
1 point

there is an inevitable cost to written code though, it simply cannot be computed away. In this case the cost is just a shitty application with an even shittier user experience.

permalink
report
parent
reply
5 points

Me putting a 4 TB 3.5" HDD in my phone

permalink
report
parent
reply
3 points

Why are you installing Signal Desktop on your phone?

permalink
report
parent
reply
3 points

You got me there

permalink
report
parent
reply
-11 points

This is why I moved to Telegram. Idk if it’s actually native, but often feels much more so, and less phone-centric than Signal which requires weird auth rituals involving the phone.

permalink
report
reply
11 points
*

friendly reminder

https://www.tomsguide.com/news/signal-vs-telegram

If you care about security, stop using telegram.

permalink
report
parent
reply
1 point

Signal is not an alternative to telegram and vice versa. Telegram has too many public communication features that people often use. The nature of signal will prevent it from having similar features.

permalink
report
parent
reply
4 points
*

People want a chat app. If your secure chat app sucks as a chat app, it doesn’t matter how secure it is. It failed the primary use case it was meant to be developed for.

But keep in mind, Signal’s nature is no excuse to have shitty app implementations. In particular to have desktop apps as second-class citizens (and tablets as exterminated not-citizens). You can be a secure chat app. Signal got the secure part done, they’re just struggling with the chat app part.

permalink
report
parent
reply
6 points
*

Personally, I’m a big fan of XMPP, due to the inherent resiliency in being decentralized/federated, and due to the security provided by OMEMO (based on signal’s algorithm). Don’t have to worry about third-parties messing with my data if it stays on my server that’s in my house.

permalink
report
parent
reply
10 points

its a QT+Webview project. So C++ and JS together. Cpp doing heavy tasks while JS doing cute animatons.

permalink
report
parent
reply
3 points

The telegram desktop app is wonderful

permalink
report
parent
reply
52 points

Signal’s desktop app is as horrendously unusably bad as the project as a whole is good, tbh.

It’s no wonder people prefer stuff like Telegram. It has native apps and all. Or can be used in a browser. Meanwhile Signal is only used in a browser, but you have to download it and it fucks up font scaling and it shits the bed on font antialiasing and it can’t even get UI design consistent with the OS it’s running on and it won’t even use the OS emoji font.

Let’s not even mention how you still cannot use Signal on a tablet.

permalink
report
reply
2 points

Yeah, I was going to say that I’ve used Signal on my Linux laptop and it’s janky af

permalink
report
parent
reply
3 points

Care to elaborate?

I use the app from the AUR and I don’t think I’ve had a single problem in 3 years.

permalink
report
parent
reply
1 point
*

I’ve recently had an issue where it wasn’t let me paste anything that I had copied from outside the app

permalink
report
parent
reply
1 point

And anytime you clicked on a link or image in the chat, you’ll have to click into the message field again (or press Ctrl+t) to be able to type a reply. I don’t understand how this absolutely infuriating thing hasn’t been fixed in years. Is nobody bothered by this? I want to be able to alt+tab into signal and just start typing ffs.

permalink
report
parent
reply
2 points

The best version of the Signal app was back when it was available as an actual web app.

permalink
report
parent
reply
2 points
*

telegram has an “advantage” of not having e2e encryption by default, which makes stuff like sync much easier as chats are fully stored on the server (encrypted with your user password).

and if you enable encryption (aka start a secret chat), the chat will only exist on the device you started it on and stop getting synced

permalink
report
parent
reply
1 point

it won’t even use the OS emoji font.

im still amused by the fact that discord mobile uses two yes, you read that correctly, TWO emojis sets, it uses one in app, and the selector, and then uses another for the text input line, because.

permalink
report
parent
reply
8 points

Signal’s desktop app is as horrendously unusably bad

I think this is a bit dramatic. I’ve been using it for years, no problems.

permalink
report
parent
reply
6 points

Sadly, it’s the only way I can contact someone to buy a decent quantity of weed in this state. I get less even if I go to a state where it’s legal and I pay more.

permalink
report
reply
1 point

What’s so sad about it? You have the ability to securely send E2EE messages for free. I’m very pleased with Signal after using it for years.

If you mean it’s sad about the weed being hard to get / illegal… yeah, I concur. Hopefully Schedule III happens soon and nationwide Medical will be legal.

permalink
report
parent
reply
63 points
*

The inability to continue chat from phone is a feature.

permalink
report
reply
0 points

After they dropped SMS support and called that a feature, now I can’t wait for their hottest new bug!

permalink
report
parent
reply
54 points

New messages will show on all your devices, but yes, it is intentional that old messages are not available to new devices.

permalink
report
parent
reply
26 points
*

This is because they don’t retain your (encrypted) messages on their servers right? Is this for storage reasons, or more just security philosophy of not being able to access past chats when you login from elsewhere?

permalink
report
parent
reply
4 points

Correct

permalink
report
parent
reply
29 points

This is not entirely correct. Messages are stored on their servers temporarily (last I saw, for up to 30 days), so that even if your device is offline for a while, you still get all your messages.

In theory, you could have messages waiting in your queue for device A, when you add device B, but device B will still not get the messages, even though the encrypted message is still on their servers.

This is because messages are encrypted per device, rather than per user. So if you have a friend who uses a phone and computer, and you also use a phone and computer, the client sending the message encrypts it three times, and sends each encrypted copy to the server. Each client then pulls its copy, and decrypts it. If a device does not exist when the message is encrypted and sent, it is never encrypted for that device, so that new device cannot pull the message down and decrypt it.

For more details: https://signal.org/docs/specifications/sesame/

permalink
report
parent
reply
2 points

But if I reply on the phone will it populate the desktop chat and vice versa?

permalink
report
parent
reply
8 points

The chat continues on all linked devices from the point in time that they are linked.

Imagine two people having a face-to-face conversation, then a third person walks up and joins in. The third person doesn’t know what was said before they joined the conversation, but all three continue the conversation from that point on.

Linked devices are like the above example, if two of those people were married and tell each other every conversation they’ve had since their wedding.

permalink
report
parent
reply
2 points

Yes

permalink
report
parent
reply
9 points

Yes, as long as you set up the desktop client before sending the message.

Messages sent with Signal are encrypted per device, not per user, so if your desktop client doesn’t exist when the message is sent, it is never encrypted and sent for that device.

When you set up a new client, you will only see new messages.

See https://signal.org/docs/specifications/sesame/ for details.

permalink
report
parent
reply
7 points

Inability.

permalink
report
parent
reply
2 points

Unabilifiedness

permalink
report
parent
reply
2 points

Thanks

permalink
report
parent
reply
1 point

What does this mean? I use my phone and computer, and they sync up in real-time without any issues.

permalink
report
parent
reply
1 point

It means that if you have chats on one device and install Signal on another one, the chats don’t transfer to it. After you link new device, new chats do sync perfectly fine.

permalink
report
parent
reply
11 points

Okay, but can’t it be an optional feature? I’d like it if a new device could download message history from an old device by having both online at the same time.

permalink
report
parent
reply
4 points

Optional how so? It’s a rotating key. Unless you have all of those keys to export into your computer, then you’ll be stuck with the current synced key.

permalink
report
parent
reply
3 points

I don’t see why the current key can’t encrypt old messages and send those. I admit I might be missing something obvious though. Maybe something like not wanting to accidentally leak old messages? As in it’s less attack surface or something?

permalink
report
parent
reply
4 points
*

You can still push old message history from your main device to your other devices, you can re-encrypt

permalink
report
parent
reply

Mildly Infuriating

!mildlyinfuriating@lemmy.world

Create post

Home to all things “Mildly Infuriating” Not infuriating, not enraging. Mildly Infuriating. All posts should reflect that.

I want my day mildly ruined, not completely ruined. Please remember to refrain from reposting old content. If you post a post from reddit it is good practice to include a link and credit the OP. I’m not about stealing content!

It’s just good to get something in this website for casual viewing whilst refreshing original content is added overtime.


Rules:

1. Be Respectful

Refrain from using harmful language pertaining to a protected characteristic: e.g. race, gender, sexuality, disability or religion.

Refrain from being argumentative when responding or commenting to posts/replies. Personal attacks are not welcome here.


2. No Illegal Content

Content that violates the law. Any post/comment found to be in breach of common law will be removed and given to the authorities if required.

That means: -No promoting violence/threats against any individuals

-No CSA content or Revenge Porn

-No sharing private/personal information (Doxxing)


3. No Spam

Posting the same post, no matter the intent is against the rules.

-If you have posted content, please refrain from re-posting said content within this community.

-Do not spam posts with intent to harass, annoy, bully, advertise, scam or harm this community.

-No posting Scams/Advertisements/Phishing Links/IP Grabbers

-No Bots, Bots will be banned from the community.


4. No Porn/Explicit

Content


-Do not post explicit content. Lemmy.World is not the instance for NSFW content.

-Do not post Gore or Shock Content.


5. No Enciting Harassment,

Brigading, Doxxing or Witch Hunts


-Do not Brigade other Communities

-No calls to action against other communities/users within Lemmy or outside of Lemmy.

-No Witch Hunts against users/communities.

-No content that harasses members within or outside of the community.


6. NSFW should be behind NSFW tags.

-Content that is NSFW should be behind NSFW tags.

-Content that might be distressing should be kept behind NSFW tags.


7. Content should match the theme of this community.

-Content should be Mildly infuriating.

-At this time we permit content that is infuriating until an infuriating community is made available.


8. Reposting of Reddit content is permitted, try to credit the OC.

-Please consider crediting the OC when reposting content. A name of the user or a link to the original post is sufficient.


Also check out:

Partnered Communities:

1.Lemmy Review

2.Lemmy Be Wholesome

3.Lemmy Shitpost

4.No Stupid Questions

5.You Should Know

6.Credible Defense


Reach out to LillianVS for inclusion on the sidebar.

All communities included on the sidebar are to be made in compliance with the instance rules.

Community stats

  • 5.6K

    Monthly active users

  • 846

    Posts

  • 55K

    Comments