home.social

#developerslife — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #developerslife, aggregated by home.social.

  1. What time do you do your best coding? ⏰

    🌙 Late night
    🌅 Early morning
    ☀️ Day shift
    🌆 Evening

    .
    .
    .
    #LateNight #coding #Developers #developerslife

  2. What time do you do your best coding? ⏰

    🌙 Late night
    🌅 Early morning
    ☀️ Day shift
    🌆 Evening

    .
    .
    .
    #LateNight #coding #Developers #developerslife

  3. What time do you do your best coding? ⏰

    🌙 Late night
    🌅 Early morning
    ☀️ Day shift
    🌆 Evening

    .
    .
    .
    #LateNight #coding #Developers #developerslife

  4. What time do you do your best coding? ⏰

    🌙 Late night
    🌅 Early morning
    ☀️ Day shift
    🌆 Evening

    .
    .
    .
    #LateNight #coding #Developers #developerslife

  5. 🤖✨ Presenting yet another attempt at making developers' lives easier by adding more *mandatory* AI tools they never asked for! 🛠️ Because who doesn't love navigating through a labyrinthine menu to manage their "agents"? 😂 Just what every coder needs: more features to ignore.
    github.com/njbrake/agent-of-em #AItools #DevelopersLife #TechHumor #SoftwareEngineering #MandatoryFeatures #HackerNews #ngated

  6. 🤖✨ Presenting yet another attempt at making developers' lives easier by adding more *mandatory* AI tools they never asked for! 🛠️ Because who doesn't love navigating through a labyrinthine menu to manage their "agents"? 😂 Just what every coder needs: more features to ignore.
    github.com/njbrake/agent-of-em #AItools #DevelopersLife #TechHumor #SoftwareEngineering #MandatoryFeatures #HackerNews #ngated

  7. 🤖✨ Presenting yet another attempt at making developers' lives easier by adding more *mandatory* AI tools they never asked for! 🛠️ Because who doesn't love navigating through a labyrinthine menu to manage their "agents"? 😂 Just what every coder needs: more features to ignore.
    github.com/njbrake/agent-of-em #AItools #DevelopersLife #TechHumor #SoftwareEngineering #MandatoryFeatures #HackerNews #ngated

  8. These days I'm publishing on the two major mobile stores the first Compose Multiplatform app that's not a side project of mine. Fingers crossed 🤞
    #composemultiplatform #kmp #developerslife #fingerscrossed

  9. These days I'm publishing on the two major mobile stores the first Compose Multiplatform app that's not a side project of mine. Fingers crossed 🤞
    #composemultiplatform #kmp #developerslife #fingerscrossed

  10. 🚨 故障排除分享:通知頁面 EntityNotFoundError

    中文版

    近期發現 Sharkey 通知頁面出現 EntityNotFoundError,前端「重試」無效。
    💡 根本原因:Redis 與 PostgreSQL 資料不同步,常見於容器重啟或高併發下 note 刪除與通知創建競態。

    簡單排查步驟:

    檢查資料庫孤立引用

    SELECT COUNT(*) FROM note n LEFT JOIN note r ON n."replyId" = r.id WHERE n."replyId" IS NOT NULL AND r.id IS NULL;


    檢查 Redis 通知快取

    redis-cli KEYS notificationTimeline:*


    建議修復:清理孤立引用、刷新 Redis 快取、重啟服務。
    預防措施:啟用 Redis 持久化、優雅關閉容器、定期檢查日誌。

    English Version

    Recently, Sharkey’s notification page showed EntityNotFoundError, making the frontend "Retry" button ineffective.
    💡 Root cause: Redis and PostgreSQL are out of sync, usually triggered by container restarts or race conditions between note deletion and notification creation.

    Quick check steps:

    Check orphaned references in the database

    SELECT COUNT(*) FROM note n LEFT JOIN note r ON n."replyId" = r.id WHERE n."replyId" IS NOT NULL AND r.id IS NULL;


    Inspect Redis notification cache

    redis-cli KEYS notificationTimeline:*


    Recommended fix: Remove orphaned references, clear Redis cache, restart service.
    Prevention: Enable Redis persistence, gracefully stop containers, monitor logs regularly.

    日本語版

    最近、Sharkey の通知ページで EntityNotFoundError が発生し、フロントの「再試行」ボタンが効かない問題を確認。
    💡 原因:Redis と PostgreSQL のデータが同期せず、コンテナ再起動や note 削除と通知作成の競合で発生。

    簡単な確認手順:

    データベースの孤立参照を確認

    SELECT COUNT(*) FROM note n LEFT JOIN note r ON n."replyId" = r.id WHERE n."replyId" IS NOT NULL AND r.id IS NULL;


    Redis 通知キャッシュを確認

    redis-cli KEYS notificationTimeline:*


    修復方法: 孤立参照の削除、Redis キャッシュのクリア、サービス再起動
    予防策: Redis 永続化の有効化、コンテナの安全停止、ログの定期監視

    #Sharkey #Misskey #Mastodon #TechNews #Redis #PostgreSQL #DevelopersLife #開發者日常 #技術觀察 #テックニュース #tech

  11. 🚨 故障排除分享:通知頁面 EntityNotFoundError

    中文版

    近期發現 Sharkey 通知頁面出現 EntityNotFoundError,前端「重試」無效。
    💡 根本原因:Redis 與 PostgreSQL 資料不同步,常見於容器重啟或高併發下 note 刪除與通知創建競態。

    簡單排查步驟:

    檢查資料庫孤立引用

    SELECT COUNT(*) FROM note n LEFT JOIN note r ON n."replyId" = r.id WHERE n."replyId" IS NOT NULL AND r.id IS NULL;


    檢查 Redis 通知快取

    redis-cli KEYS notificationTimeline:*


    建議修復:清理孤立引用、刷新 Redis 快取、重啟服務。
    預防措施:啟用 Redis 持久化、優雅關閉容器、定期檢查日誌。

    English Version

    Recently, Sharkey’s notification page showed EntityNotFoundError, making the frontend "Retry" button ineffective.
    💡 Root cause: Redis and PostgreSQL are out of sync, usually triggered by container restarts or race conditions between note deletion and notification creation.

    Quick check steps:

    Check orphaned references in the database

    SELECT COUNT(*) FROM note n LEFT JOIN note r ON n."replyId" = r.id WHERE n."replyId" IS NOT NULL AND r.id IS NULL;


    Inspect Redis notification cache

    redis-cli KEYS notificationTimeline:*


    Recommended fix: Remove orphaned references, clear Redis cache, restart service.
    Prevention: Enable Redis persistence, gracefully stop containers, monitor logs regularly.

    日本語版

    最近、Sharkey の通知ページで EntityNotFoundError が発生し、フロントの「再試行」ボタンが効かない問題を確認。
    💡 原因:Redis と PostgreSQL のデータが同期せず、コンテナ再起動や note 削除と通知作成の競合で発生。

    簡単な確認手順:

    データベースの孤立参照を確認

    SELECT COUNT(*) FROM note n LEFT JOIN note r ON n."replyId" = r.id WHERE n."replyId" IS NOT NULL AND r.id IS NULL;


    Redis 通知キャッシュを確認

    redis-cli KEYS notificationTimeline:*


    修復方法: 孤立参照の削除、Redis キャッシュのクリア、サービス再起動
    予防策: Redis 永続化の有効化、コンテナの安全停止、ログの定期監視

    #Sharkey #Misskey #Mastodon #TechNews #Redis #PostgreSQL #DevelopersLife #開發者日常 #技術觀察 #テックニュース #tech

  12. 🚨 故障排除分享:通知頁面 EntityNotFoundError

    中文版

    近期發現 Sharkey 通知頁面出現 EntityNotFoundError,前端「重試」無效。
    💡 根本原因:Redis 與 PostgreSQL 資料不同步,常見於容器重啟或高併發下 note 刪除與通知創建競態。

    簡單排查步驟:

    檢查資料庫孤立引用

    SELECT COUNT(*) FROM note n LEFT JOIN note r ON n."replyId" = r.id WHERE n."replyId" IS NOT NULL AND r.id IS NULL;


    檢查 Redis 通知快取

    redis-cli KEYS notificationTimeline:*


    建議修復:清理孤立引用、刷新 Redis 快取、重啟服務。
    預防措施:啟用 Redis 持久化、優雅關閉容器、定期檢查日誌。

    English Version

    Recently, Sharkey’s notification page showed EntityNotFoundError, making the frontend "Retry" button ineffective.
    💡 Root cause: Redis and PostgreSQL are out of sync, usually triggered by container restarts or race conditions between note deletion and notification creation.

    Quick check steps:

    Check orphaned references in the database

    SELECT COUNT(*) FROM note n LEFT JOIN note r ON n."replyId" = r.id WHERE n."replyId" IS NOT NULL AND r.id IS NULL;


    Inspect Redis notification cache

    redis-cli KEYS notificationTimeline:*


    Recommended fix: Remove orphaned references, clear Redis cache, restart service.
    Prevention: Enable Redis persistence, gracefully stop containers, monitor logs regularly.

    日本語版

    最近、Sharkey の通知ページで EntityNotFoundError が発生し、フロントの「再試行」ボタンが効かない問題を確認。
    💡 原因:Redis と PostgreSQL のデータが同期せず、コンテナ再起動や note 削除と通知作成の競合で発生。

    簡単な確認手順:

    データベースの孤立参照を確認

    SELECT COUNT(*) FROM note n LEFT JOIN note r ON n."replyId" = r.id WHERE n."replyId" IS NOT NULL AND r.id IS NULL;


    Redis 通知キャッシュを確認

    redis-cli KEYS notificationTimeline:*


    修復方法: 孤立参照の削除、Redis キャッシュのクリア、サービス再起動
    予防策: Redis 永続化の有効化、コンテナの安全停止、ログの定期監視

    #Sharkey #Misskey #Mastodon #TechNews #Redis #PostgreSQL #DevelopersLife #開發者日常 #技術觀察 #テックニュース #tech

  13. 🚨 故障排除分享:通知頁面 EntityNotFoundError

    中文版

    近期發現 Sharkey 通知頁面出現 EntityNotFoundError,前端「重試」無效。
    💡 根本原因:Redis 與 PostgreSQL 資料不同步,常見於容器重啟或高併發下 note 刪除與通知創建競態。

    簡單排查步驟:

    檢查資料庫孤立引用

    SELECT COUNT(*) FROM note n LEFT JOIN note r ON n."replyId" = r.id WHERE n."replyId" IS NOT NULL AND r.id IS NULL;


    檢查 Redis 通知快取

    redis-cli KEYS notificationTimeline:*


    建議修復:清理孤立引用、刷新 Redis 快取、重啟服務。
    預防措施:啟用 Redis 持久化、優雅關閉容器、定期檢查日誌。

    English Version

    Recently, Sharkey’s notification page showed EntityNotFoundError, making the frontend "Retry" button ineffective.
    💡 Root cause: Redis and PostgreSQL are out of sync, usually triggered by container restarts or race conditions between note deletion and notification creation.

    Quick check steps:

    Check orphaned references in the database

    SELECT COUNT(*) FROM note n LEFT JOIN note r ON n."replyId" = r.id WHERE n."replyId" IS NOT NULL AND r.id IS NULL;


    Inspect Redis notification cache

    redis-cli KEYS notificationTimeline:*


    Recommended fix: Remove orphaned references, clear Redis cache, restart service.
    Prevention: Enable Redis persistence, gracefully stop containers, monitor logs regularly.

    日本語版

    最近、Sharkey の通知ページで EntityNotFoundError が発生し、フロントの「再試行」ボタンが効かない問題を確認。
    💡 原因:Redis と PostgreSQL のデータが同期せず、コンテナ再起動や note 削除と通知作成の競合で発生。

    簡単な確認手順:

    データベースの孤立参照を確認

    SELECT COUNT(*) FROM note n LEFT JOIN note r ON n."replyId" = r.id WHERE n."replyId" IS NOT NULL AND r.id IS NULL;


    Redis 通知キャッシュを確認

    redis-cli KEYS notificationTimeline:*


    修復方法: 孤立参照の削除、Redis キャッシュのクリア、サービス再起動
    予防策: Redis 永続化の有効化、コンテナの安全停止、ログの定期監視

    #Sharkey #Misskey #Mastodon #TechNews #Redis #PostgreSQL #DevelopersLife #開發者日常 #技術觀察 #テックニュース #tech

  14. 我一直很好奇:目前在 Threads 上似乎還不能直接回覆或轉發來自 Fediverse(例如 Misskey、Mastodon)的貼文。
    那如果我們在 Fediverse 這邊回覆 Threads 的貼文——
    👉 Threads 的使用者真的能看到我們的回覆嗎?🤔

    🧩 目前的狀況是「單向可見」。
    也就是說,Fediverse 用戶通常能看到 Threads 的內容,
    但 Threads 用戶不一定能看到我們這邊的互動。
    Meta 也表示,之後會逐步開放更完整的雙向互通功能。

    I’ve been wondering: right now, Threads still can’t directly reply to or boost posts from the Fediverse (like Misskey or Mastodon).
    So when we reply from the Fediverse side,
    👉 can Threads users actually see our replies? 🤔

    🧩 Currently, the federation between Threads and other servers is still mostly one-way visible.
    Fediverse users can see Threads posts,
    but Threads users might not see replies from federated instances — at least not yet.

    ずっと気になっていました:現在 Threads では、Misskey や Mastodon など Fediverse の投稿に
    直接返信したりリポストしたりはまだできません。
    では、こちら(Fediverse側)から返信した場合、
    👉 Threads のユーザーはその返信を見ることができるのでしょうか?🤔

    🧩 現時点では「一方向の可視化」が主で、
    Fediverse 側から Threads の投稿を見ることはできますが、
    Threads 側では返信や通知がまだ反映されないようです。

    #Fediverse #Threads #Misskey #Mastodon #TechNews #DevelopersLife #分散型SNS #テックニュース #開放社群 #技術觀察

  15. 我一直很好奇:目前在 Threads 上似乎還不能直接回覆或轉發來自 Fediverse(例如 Misskey、Mastodon)的貼文。
    那如果我們在 Fediverse 這邊回覆 Threads 的貼文——
    👉 Threads 的使用者真的能看到我們的回覆嗎?🤔

    🧩 目前的狀況是「單向可見」。
    也就是說,Fediverse 用戶通常能看到 Threads 的內容,
    但 Threads 用戶不一定能看到我們這邊的互動。
    Meta 也表示,之後會逐步開放更完整的雙向互通功能。

    I’ve been wondering: right now, Threads still can’t directly reply to or boost posts from the Fediverse (like Misskey or Mastodon).
    So when we reply from the Fediverse side,
    👉 can Threads users actually see our replies? 🤔

    🧩 Currently, the federation between Threads and other servers is still mostly one-way visible.
    Fediverse users can see Threads posts,
    but Threads users might not see replies from federated instances — at least not yet.

    ずっと気になっていました:現在 Threads では、Misskey や Mastodon など Fediverse の投稿に
    直接返信したりリポストしたりはまだできません。
    では、こちら(Fediverse側)から返信した場合、
    👉 Threads のユーザーはその返信を見ることができるのでしょうか?🤔

    🧩 現時点では「一方向の可視化」が主で、
    Fediverse 側から Threads の投稿を見ることはできますが、
    Threads 側では返信や通知がまだ反映されないようです。

    #Fediverse #Threads #Misskey #Mastodon #TechNews #DevelopersLife #分散型SNS #テックニュース #開放社群 #技術觀察

  16. 我一直很好奇:目前在 Threads 上似乎還不能直接回覆或轉發來自 Fediverse(例如 Misskey、Mastodon)的貼文。
    那如果我們在 Fediverse 這邊回覆 Threads 的貼文——
    👉 Threads 的使用者真的能看到我們的回覆嗎?🤔

    🧩 目前的狀況是「單向可見」。
    也就是說,Fediverse 用戶通常能看到 Threads 的內容,
    但 Threads 用戶不一定能看到我們這邊的互動。
    Meta 也表示,之後會逐步開放更完整的雙向互通功能。

    I’ve been wondering: right now, Threads still can’t directly reply to or boost posts from the Fediverse (like Misskey or Mastodon).
    So when we reply from the Fediverse side,
    👉 can Threads users actually see our replies? 🤔

    🧩 Currently, the federation between Threads and other servers is still mostly one-way visible.
    Fediverse users can see Threads posts,
    but Threads users might not see replies from federated instances — at least not yet.

    ずっと気になっていました:現在 Threads では、Misskey や Mastodon など Fediverse の投稿に
    直接返信したりリポストしたりはまだできません。
    では、こちら(Fediverse側)から返信した場合、
    👉 Threads のユーザーはその返信を見ることができるのでしょうか?🤔

    🧩 現時点では「一方向の可視化」が主で、
    Fediverse 側から Threads の投稿を見ることはできますが、
    Threads 側では返信や通知がまだ反映されないようです。

    #Fediverse #Threads #Misskey #Mastodon #TechNews #DevelopersLife #分散型SNS #テックニュース #開放社群 #技術觀察

  17. 我一直很好奇:目前在 Threads 上似乎還不能直接回覆或轉發來自 Fediverse(例如 Misskey、Mastodon)的貼文。
    那如果我們在 Fediverse 這邊回覆 Threads 的貼文——
    👉 Threads 的使用者真的能看到我們的回覆嗎?🤔

    🧩 目前的狀況是「單向可見」。
    也就是說,Fediverse 用戶通常能看到 Threads 的內容,
    但 Threads 用戶不一定能看到我們這邊的互動。
    Meta 也表示,之後會逐步開放更完整的雙向互通功能。

    I’ve been wondering: right now, Threads still can’t directly reply to or boost posts from the Fediverse (like Misskey or Mastodon).
    So when we reply from the Fediverse side,
    👉 can Threads users actually see our replies? 🤔

    🧩 Currently, the federation between Threads and other servers is still mostly one-way visible.
    Fediverse users can see Threads posts,
    but Threads users might not see replies from federated instances — at least not yet.

    ずっと気になっていました:現在 Threads では、Misskey や Mastodon など Fediverse の投稿に
    直接返信したりリポストしたりはまだできません。
    では、こちら(Fediverse側)から返信した場合、
    👉 Threads のユーザーはその返信を見ることができるのでしょうか?🤔

    🧩 現時点では「一方向の可視化」が主で、
    Fediverse 側から Threads の投稿を見ることはできますが、
    Threads 側では返信や通知がまだ反映されないようです。

    #Fediverse #Threads #Misskey #Mastodon #TechNews #DevelopersLife #分散型SNS #テックニュース #開放社群 #技術觀察

  18. 我一直很好奇:目前在 Threads 上似乎還不能直接回覆或轉發來自 Fediverse(例如 Misskey、Mastodon)的貼文。
    那如果我們在 Fediverse 這邊回覆 Threads 的貼文——
    👉 Threads 的使用者真的能看到我們的回覆嗎?🤔

    🧩 目前的狀況是「單向可見」。
    也就是說,Fediverse 用戶通常能看到 Threads 的內容,
    但 Threads 用戶不一定能看到我們這邊的互動。
    Meta 也表示,之後會逐步開放更完整的雙向互通功能。

    I’ve been wondering: right now, Threads still can’t directly reply to or boost posts from the Fediverse (like Misskey or Mastodon).
    So when we reply from the Fediverse side,
    👉 can Threads users actually see our replies? 🤔

    🧩 Currently, the federation between Threads and other servers is still mostly one-way visible.
    Fediverse users can see Threads posts,
    but Threads users might not see replies from federated instances — at least not yet.

    ずっと気になっていました:現在 Threads では、Misskey や Mastodon など Fediverse の投稿に
    直接返信したりリポストしたりはまだできません。
    では、こちら(Fediverse側)から返信した場合、
    👉 Threads のユーザーはその返信を見ることができるのでしょうか?🤔

    🧩 現時点では「一方向の可視化」が主で、
    Fediverse 側から Threads の投稿を見ることはできますが、
    Threads 側では返信や通知がまだ反映されないようです。

    #Fediverse #Threads #Misskey #Mastodon #TechNews #DevelopersLife #分散型SNS #テックニュース #開放社群 #技術觀察

  19. 巴豆妖~~肚子惡了~~

    今天中午大家都吃什麼呢,感覺跟程式為伍,需要來杯咖啡續命~

    #Programming #developer #developerslife #午餐 #foods

  20. 巴豆妖~~肚子惡了~~

    今天中午大家都吃什麼呢,感覺跟程式為伍,需要來杯咖啡續命~

    #Programming #developer #developerslife #午餐 #foods

  21. 巴豆妖~~肚子惡了~~

    今天中午大家都吃什麼呢,感覺跟程式為伍,需要來杯咖啡續命~

    #Programming #developer #developerslife #午餐 #foods

  22. 巴豆妖~~肚子惡了~~

    今天中午大家都吃什麼呢,感覺跟程式為伍,需要來杯咖啡續命~

    #Programming #developer #developerslife #午餐 #foods

  23. is there anything like mailinator.com or getnada.com but for self hosting / opensource ? maybe you don't want the public to see your emails?

    #selfhosting #mailinator #mailinatorcom #getnada #getnadacom #spammails #testmails #developerslife

  24. is there anything like mailinator.com or getnada.com but for self hosting / opensource ? maybe you don't want the public to see your emails?

    #selfhosting #mailinator #mailinatorcom #getnada #getnadacom #spammails #testmails #developerslife

  25. is there anything like mailinator.com or getnada.com but for self hosting / opensource ? maybe you don't want the public to see your emails?

    #selfhosting #mailinator #mailinatorcom #getnada #getnadacom #spammails #testmails #developerslife

  26. is there anything like mailinator.com or getnada.com but for self hosting / opensource ? maybe you don't want the public to see your emails?

    #selfhosting #mailinator #mailinatorcom #getnada #getnadacom #spammails #testmails #developerslife

  27. is there anything like mailinator.com or getnada.com but for self hosting / opensource ? maybe you don't want the public to see your emails?

    #selfhosting #mailinator #mailinatorcom #getnada #getnadacom #spammails #testmails #developerslife

  28. Ever wondered how developers make AI respond with such precision & flow? The secret lies in Prompt Engineering — the art of designing effective prompts that shape AI conversations.

    In this guide, we’ll uncover 7 key strategies to craft clear, contextual, & ethical AI interactions.

    drchetandhongade.com/blogs/tec

    #PromptEngineering
    #AI
    #ArtificialIntelligence
    #MachineLearning
    #AIConversations
    #TechBlog
    #DevelopersLife
    #FutureOfAI
    #AIDesign
    #AIDevelopment
    #AIUX
    #AIChatbots
    #SmartTech
    #DrChetanDhongade

  29. Ever wondered how developers make AI respond with such precision & flow? The secret lies in Prompt Engineering — the art of designing effective prompts that shape AI conversations.

    In this guide, we’ll uncover 7 key strategies to craft clear, contextual, & ethical AI interactions.

    drchetandhongade.com/blogs/tec

    #PromptEngineering
    #AI
    #ArtificialIntelligence
    #MachineLearning
    #AIConversations
    #TechBlog
    #DevelopersLife
    #FutureOfAI
    #AIDesign
    #AIDevelopment
    #AIUX
    #AIChatbots
    #SmartTech
    #DrChetanDhongade

  30. Ever wondered how developers make AI respond with such precision & flow? The secret lies in Prompt Engineering — the art of designing effective prompts that shape AI conversations.

    In this guide, we’ll uncover 7 key strategies to craft clear, contextual, & ethical AI interactions.

    drchetandhongade.com/blogs/tec

    #PromptEngineering
    #AI
    #ArtificialIntelligence
    #MachineLearning
    #AIConversations
    #TechBlog
    #DevelopersLife
    #FutureOfAI
    #AIDesign
    #AIDevelopment
    #AIUX
    #AIChatbots
    #SmartTech
    #DrChetanDhongade

  31. Use #SwiftUI, they said. The instant previews are so great for reiterating, they said.

    #developerslife

  32. Use #SwiftUI, they said. The instant previews are so great for reiterating, they said.

    #developerslife

  33. Use #SwiftUI, they said. The instant previews are so great for reiterating, they said.

    #developerslife

  34. Use #SwiftUI, they said. The instant previews are so great for reiterating, they said.

    #developerslife