Skip to content

Instantly share code, notes, and snippets.

View fdwr's full-sized avatar
🏢
Working at office

Dwayne Robinson fdwr

🏢
Working at office
View GitHub Profile
@homelab-alpha
homelab-alpha / fix_github_ghost_notifications.md
Last active November 14, 2025 18:28
Clear persistent or ghost GitHub notifications — A step-by-step guide to force hidden notifications into view so they can be dismissed manually.

🛠️ Fixing GitHub Ghost Notifications

Ghost notifications on GitHub can be frustrating. These are notifications that continue to show up in your notification count, even though they appear dismissed or no longer exist. This step-by-step guide will help you completely clear them from your GitHub notifications panel.

🔍 What Are "Ghost Notifications"?

Ghost notifications are lingering alerts in your GitHub notification count that

@jharmer95
jharmer95 / property.hpp
Last active May 14, 2023 17:06
Class emulating properties for C++
#include <iostream>
#include <memory>
#include <type_traits>
#include <utility>
namespace not_std
{
template<typename T>
constexpr T default_getter(const T& val) noexcept
{