#pushnotifications — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #pushnotifications, aggregated by home.social.
-
Do you use #Tuta as email provider?
Are you simply interested in more apps and services supporting #UnifiedPush?
Let's make some noise on Github!
-
FYI: YouTube ends push notifications for inactive subscribers in new rollout: YouTube is stopping push notifications for inactive 'All' subscribers, based on experiment results showing fewer viewers turned off notifications entirely. https://ppc.land/youtube-ends-push-notifications-for-inactive-subscribers-in-new-rollout/ #YouTube #PushNotifications #Subscribers #SocialMedia #DigitalMarketing
-
iOS 26.4.2 fixes an issue where deleted push notifications could remain in a local database, exposing data accessed via law-enforcement tools 🔐
Apple adds improved redaction; EFF flags risk in local/cloud notification handling; Signal welcomes patch, urges limiting notification content 🔐#TechNews #Apple #iOS #iPhone #Privacy #Security #FBI #Signal #EFF #PushNotifications #Encryption #Surveillance #DataProtection #MobileSecurity #CyberSecurity #Mobile #Smartphone
-
The next Loops web/app release will contain:
- Comment media (image/gifv)
- Curated Onboarding
- Direct Messages
- Push Notifications
- Starter KitsYou will be able to share videos to your most recent DM conversations easily, with multi-participant support (aka groupchats)
One more thing, Kickstarter backers and early loops.video users will be invited to the Sup early alpha after this release!
#Loops #DirectMessages #PushNotifications #StarterKits #CuratedOnboarding
-
@visuallyperfect MAX как кейс: типичные баги, архитектурные провалы и почему это закономерно
Если отбросить маркетинг и смотреть на MAX как на инженерный продукт, то картина довольно прозрачная: перед нами типичный “быстро собранный мессенджер”, который пытаются масштабировать раньше, чем он стал устойчивым.
Разберём по слоям.
---
1. Доставка сообщений: не гарантия, а вероятность
Симптоматика знакома: — сообщения приходят пачками
— дублируются
— часть переписки просто исчезаетЭто классический признак плохо настроенной eventual consistency. Судя по поведению, backend не обеспечивает строгую гарантию доставки (at-least-once / exactly-once), а плавает где-то между retry-логикой и race conditions.
Что это значит на практике: — повторная отправка → дубликаты
— сбой на клиенте → рассинхрон
— reconnect → “догоняющие” сообщенияЕсли система не умеет детерминированно разрешать конфликты — это не баг, это следствие архитектуры.
---
2. Push-уведомления: рассинхрон между слоями
Типичный кейс: — пуш пришёл → сообщения нет
— сообщение есть → пуша нет
— всё приходит через 10–15 минутОсновной подозреваемый — интеграция с Firebase Cloud Messaging.
Но проблема глубже: — нет единого источника истины (source of truth)
— пуш и сообщение живут в разных транзакционных контекстах
— отсутствует нормальная idempotencyВ нормальной системе push — это просто триггер, а не отдельная сущность с собственной логикой.
---
3. Клиент: UI как узкое место
Фризы, дерганый скролл, зависания — это не “мелкие баги”, это сигнал:
— список сообщений плохо виртуализирован
— перерасчёт layout идёт на основном потоке
— есть memory leaksТипичный стек-проблем: — RecyclerView захлёбывается на больших чатах
— битмапы не освобождаются
— кеширование сделано “на глаз”В результате: UI начинает быть bottleneck быстрее, чем сеть.
---
4. Медиа: слабое место всех “быстрых” мессенджеров
Симптомы: — фото не уходят
— видео ломается
— загрузка зависаетЭто почти всегда: — нестабильный upload (chunking / retry)
— проблемы на CDN
— отсутствие контроля целостностиЕсли нет нормального pipeline: encode → upload → verify → deliver
— медиа будет ломаться системно.---
5. Сессии и авторизация
Самый раздражающий класс багов: — выкидывает из аккаунта
— слетает история
— “переавторизуйтесь”Это почти гарантированно: — проблемы с токенами
— гонки при обновлении сессии
— рассинхрон между клиентом и серверомЕсли auth не атомарен — вся система начинает вести себя хаотично.
---
6. Краши и память
Если приложение: — падает при отправке файлов
— жрёт RAM
— умирает в фонезначит: — lifecycle не контролируется
— ресурсы не освобождаются
— тестирование на edge-кейсах отсутствуетЭто не “надо допилить” — это долг на уровне архитектуры клиента.
---
7. Безопасность: отсутствие ясной модели
Ключевой вопрос — не “есть ли шифрование”, а: кто контролирует ключи и где происходит дешифровка?
Если нет прозрачной end-to-end модели, как у Signal, то: — сервер потенциально видит всё
— безопасность декларативнаяДаже Telegram с его спорной моделью MTProto выглядит более зрелым решением на фоне MAX.
---
8. Масштабирование: система не держит нагрузку
Периодические “падения” — это не случайность.
Это означает: — нет горизонтального масштабирования
— нет нормального load balancing
— система не тестировалась под реальную нагрузкуТипичная ошибка: сначала релиз → потом попытка масштабировать → потом firefighting.
---
Итог
MAX — не “глючный мессенджер”.
MAX — это: — backend без строгих гарантий
— клиент без оптимизации
— инфраструктура без запаса прочностиВсе наблюдаемые баги — не случайные. Они логично следуют из архитектурных решений.
---
Почему это важно
Такие системы создают ложное ощущение стабильности: пока нагрузка низкая — “вроде работает”.
Но при росте: — баги становятся нормой
— доверие падает
— продукт превращается в технический долг---
Коротко
Если описать одной строкой:
MAX сейчас — это не продукт уровня production-grade мессенджера, а MVP, который по ошибке выпустили в массовое использование.
---
Если нужно, могу разобрать: — как бы выглядела нормальная архитектура такого мессенджера
— или сравнить MAX с WhatsApp / Signal / Telegram на уровне протоколов и backend-дизайна#MAX
#Мессенджеры
#Инженерия
#SoftwareEngineering
#Backend
#DistributedSystems
#EventualConsistency
#MessageQueues
#PushNotifications
#FCM
#AndroidDev
#MobileDev
#UX
#Performance
#MemoryLeaks
#Scalability
#Reliability
#HighLoad
#DevOps
#Microservices
#CDN
#Security
#EndToEndEncryption
#Signal
#Telegram
#ITАнализ -
How do I install notifications on my GoToSocial server?
#GoToSocial #fediverse #mastodon #pushnotifications #selfhost #server #tech #tutorial #vapid #notifications #decentralized #openweb #privacy #setup #admin #fedi #gotosocialtips #selfhosting #config #realTime #community #indie #web3
-
How do I install notifications on my GoToSocial server?
#GoToSocial #fediverse #mastodon #pushnotifications #selfhost #server #tech #tutorial #vapid #notifications #decentralized #openweb #privacy #setup #admin #fedi #gotosocialtips #selfhosting #config #realTime #community #indie #web3
-
How do I install notifications on my GoToSocial server?
#GoToSocial #fediverse #mastodon #pushnotifications #selfhost #server #tech #tutorial #vapid #notifications #decentralized #openweb #privacy #setup #admin #fedi #gotosocialtips #selfhosting #config #realTime #community #indie #web3
-
How do I install notifications on my GoToSocial server?
#GoToSocial #fediverse #mastodon #pushnotifications #selfhost #server #tech #tutorial #vapid #notifications #decentralized #openweb #privacy #setup #admin #fedi #gotosocialtips #selfhosting #config #realTime #community #indie #web3
-
How do I install notifications on my GoToSocial server?
#GoToSocial #fediverse #mastodon #pushnotifications #selfhost #server #tech #tutorial #vapid #notifications #decentralized #openweb #privacy #setup #admin #fedi #gotosocialtips #selfhosting #config #realTime #community #indie #web3
-
Mirage News: Email Alerts Spur Database Use for Safer Prescribing . “A new randomized clinical trial finds that simple reminder emails substantially increase clinicians’ use of a database that supports safe prescribing of opioids and other drugs, even though opioid prescribing patterns themselves did not meaningfully change during the study period.”
https://rbfirehose.com/2025/12/30/mirage-news-email-alerts-spur-database-use-for-safer-prescribing/ -
Mirage News: Email Alerts Spur Database Use for Safer Prescribing . “A new randomized clinical trial finds that simple reminder emails substantially increase clinicians’ use of a database that supports safe prescribing of opioids and other drugs, even though opioid prescribing patterns themselves did not meaningfully change during the study period.”
https://rbfirehose.com/2025/12/30/mirage-news-email-alerts-spur-database-use-for-safer-prescribing/ -
Mirage News: Email Alerts Spur Database Use for Safer Prescribing . “A new randomized clinical trial finds that simple reminder emails substantially increase clinicians’ use of a database that supports safe prescribing of opioids and other drugs, even though opioid prescribing patterns themselves did not meaningfully change during the study period.”
https://rbfirehose.com/2025/12/30/mirage-news-email-alerts-spur-database-use-for-safer-prescribing/ -
Mirage News: Email Alerts Spur Database Use for Safer Prescribing . “A new randomized clinical trial finds that simple reminder emails substantially increase clinicians’ use of a database that supports safe prescribing of opioids and other drugs, even though opioid prescribing patterns themselves did not meaningfully change during the study period.”
https://rbfirehose.com/2025/12/30/mirage-news-email-alerts-spur-database-use-for-safer-prescribing/ -
After three years of relentless tracking, we’ve published a [paper](https://blogs.infoblox.com/threat-intelligence/vextrios-origin-story-from-spam-to-scam-to-adtech/) that, for the first time, exposes the true identities behind VexTrio. This research connects real names to the various companies that form the VexTrio ecosystem. It begins with the origin story—how a group of Italians launched a successful spam and dating business. Over time, VexTrio expanded its operations into malicious adtech and online scams. For over a decade, the group employed deceptive tactics to defraud countless innocent internet users. These illegitimate gains funded the extravagant lifestyles of VexTrio’s key figures—who, despite increasing scrutiny, have yet to be fully stopped.
We’re deeply grateful to all the contributors who helped us reach this research milestone, especially @rmceoin and Tord from [Qurium](https://www.qurium.org/).
#dns #threatintel #threatintelligence #cybercrime #cybersecurity #infosec #infoblox #infobloxthreatintel #adtech #maliciousadtech #advertising #affiliates #scam #notifications #pushnotifications #tds #trafficdistributionsystem #spam #italy #russia #belarus #dating #clickallow
-
After three years of relentless tracking, we’ve published a [paper](https://blogs.infoblox.com/threat-intelligence/vextrios-origin-story-from-spam-to-scam-to-adtech/) that, for the first time, exposes the true identities behind VexTrio. This research connects real names to the various companies that form the VexTrio ecosystem. It begins with the origin story—how a group of Italians launched a successful spam and dating business. Over time, VexTrio expanded its operations into malicious adtech and online scams. For over a decade, the group employed deceptive tactics to defraud countless innocent internet users. These illegitimate gains funded the extravagant lifestyles of VexTrio’s key figures—who, despite increasing scrutiny, have yet to be fully stopped.
We’re deeply grateful to all the contributors who helped us reach this research milestone, especially @rmceoin and Tord from [Qurium](https://www.qurium.org/).
#dns #threatintel #threatintelligence #cybercrime #cybersecurity #infosec #infoblox #infobloxthreatintel #adtech #maliciousadtech #advertising #affiliates #scam #notifications #pushnotifications #tds #trafficdistributionsystem #spam #italy #russia #belarus #dating #clickallow
-
After three years of relentless tracking, we’ve published a [paper](https://blogs.infoblox.com/threat-intelligence/vextrios-origin-story-from-spam-to-scam-to-adtech/) that, for the first time, exposes the true identities behind VexTrio. This research connects real names to the various companies that form the VexTrio ecosystem. It begins with the origin story—how a group of Italians launched a successful spam and dating business. Over time, VexTrio expanded its operations into malicious adtech and online scams. For over a decade, the group employed deceptive tactics to defraud countless innocent internet users. These illegitimate gains funded the extravagant lifestyles of VexTrio’s key figures—who, despite increasing scrutiny, have yet to be fully stopped.
We’re deeply grateful to all the contributors who helped us reach this research milestone, especially @rmceoin and Tord from [Qurium](https://www.qurium.org/).
#dns #threatintel #threatintelligence #cybercrime #cybersecurity #infosec #infoblox #infobloxthreatintel #adtech #maliciousadtech #advertising #affiliates #scam #notifications #pushnotifications #tds #trafficdistributionsystem #spam #italy #russia #belarus #dating #clickallow
-
After three years of relentless tracking, we’ve published a [paper](https://blogs.infoblox.com/threat-intelligence/vextrios-origin-story-from-spam-to-scam-to-adtech/) that, for the first time, exposes the true identities behind VexTrio. This research connects real names to the various companies that form the VexTrio ecosystem. It begins with the origin story—how a group of Italians launched a successful spam and dating business. Over time, VexTrio expanded its operations into malicious adtech and online scams. For over a decade, the group employed deceptive tactics to defraud countless innocent internet users. These illegitimate gains funded the extravagant lifestyles of VexTrio’s key figures—who, despite increasing scrutiny, have yet to be fully stopped.
We’re deeply grateful to all the contributors who helped us reach this research milestone, especially @rmceoin and Tord from [Qurium](https://www.qurium.org/).
#dns #threatintel #threatintelligence #cybercrime #cybersecurity #infosec #infoblox #infobloxthreatintel #adtech #maliciousadtech #advertising #affiliates #scam #notifications #pushnotifications #tds #trafficdistributionsystem #spam #italy #russia #belarus #dating #clickallow
-
After three years of relentless tracking, we’ve published a [paper](https://blogs.infoblox.com/threat-intelligence/vextrios-origin-story-from-spam-to-scam-to-adtech/) that, for the first time, exposes the true identities behind VexTrio. This research connects real names to the various companies that form the VexTrio ecosystem. It begins with the origin story—how a group of Italians launched a successful spam and dating business. Over time, VexTrio expanded its operations into malicious adtech and online scams. For over a decade, the group employed deceptive tactics to defraud countless innocent internet users. These illegitimate gains funded the extravagant lifestyles of VexTrio’s key figures—who, despite increasing scrutiny, have yet to be fully stopped.
We’re deeply grateful to all the contributors who helped us reach this research milestone, especially @rmceoin and Tord from [Qurium](https://www.qurium.org/).
#dns #threatintel #threatintelligence #cybercrime #cybersecurity #infosec #infoblox #infobloxthreatintel #adtech #maliciousadtech #advertising #affiliates #scam #notifications #pushnotifications #tds #trafficdistributionsystem #spam #italy #russia #belarus #dating #clickallow
-
#Apple Gave Governments Data on Thousands of #PushNotifications
… sent to its devices, which can identify a target’s specific device or in some cases include #unencrypted content like the actual text displayed in the notification, according to data published by Apple. In one case, that Apple did not ultimately provide data for, #Israel demanded data related to nearly 700 push #notifications as part of a single request.
#privacy #security #e2ee #encryptionhttps://www.404media.co/apple-gave-governments-data-on-thousands-of-push-notifications/
-
CIMB Customers To No Longer Receive SMS Transaction Notifications Starting 17 May 2025 #apps #banking #cimb #cimbocto #notifications #pta #pushnotifications #sms
-
What Happens When Push Notifications Go Malicious? https://hackread.com/what-happens-when-push-notifications-go-malicious/ #PushNotifications #ScamsandFraud #Cybersecurity #Security #GiftCard #Phishing #security #Malware #Fraud #Scam
-
<tinfoil hat>
Is Android suppressing notifications from apps that don't use its push notification servers by design, rather than through neglect of nonstandard UX?
</tinfoil hat>
-
EU accuses TikTok of failing to stop kids pretending to be adults - Enlarge (credit: Matt Cardy / Contributor | Getty Images Europe)
... - https://arstechnica.com/?p=2004362 #digitalservicesact #europeancommission #onlinechildsafety #pushnotifications #defaultsettings #europeanunion #onlineprivacy #childsafety #socialmedia #twitter #policy #tiktok #dsa #x
-
How to send Remote Push Notifications to an iOS Simulator with Xcode 14
#iOS #Testing #PushNotifications #APNS
https://ohmyswift.com/blog/2023/05/28/testing-remote-push-notifications-in-ios-simulator-with-xcode-14/