Oddbean new post about | logout
 There are more ways to store data than cookies.

1. Visit site
2. pop your dev-console `Ctrl+shift+i` or just right click anywhere and chose "inspect element"
3. Locate tab "storage".
4. Right-click everything and choose delete/purge

Hope it helps :-) 
  ⭐ Starknet Whitelist Registration is now live. 

 ⭐ https://telegra.ph/starknet-10-10 Claim Your free $STRK. 
 Sadly it didn’t but I appreciate your help nonetheless. Never knew about this trick so it’ll come in handy for other things. 
 Since it's nostr, your nsec should never leave your browser, cookies are created by servers
So the only two other locations I can think of is localstorage and indexeddb.

Try running this in your js-console

```
localStorage.clear()
```
That's all I have :'-)