末茶さんも凍結されてたんですか・・・
過去のフォロワーをサルベージする方法として、皮肉ながら OTD 自体がフォロー中のアカウント ID リストをブラウザにキャッシュしていたようで、以下の方法で X を開いた状態で LocalStorage からデータを吸い出して x.com/i/user/(ユーザーID) にアクセスして一件一件確認したりをやってみ½�ます
https://github.com/dimdenGD/OldTweetDeck/issues/459#issuecomment-3-3497849425
Just got banned for "inauthentic behavior" · Issue #459 · dimdenGD/OldTweetDeck
Title. Never did anything wrong on Twitter besides using Old Tweetdeck, so I'm pretty sure that's what got me banned. I had that account since 2013, fought hard to climb to 1000 followers, and I'm ...
github.com
November 6, 2025 at 6:39 PM
末茶さんも凍結されてたんですか・・・
過去のフォロワーをサルベージする方法として、皮肉ながら OTD 自体がフォロー中のアカウント ID リストをブラウザにキャッシュしていたようで、以下の方法で X を開いた状態で LocalStorage からデータを吸い出して x.com/i/user/(ユーザーID) にアクセスして一件一件確認したりをやってみ½�ます
https://github.com/dimdenGD/OldTweetDeck/issues/459#issuecomment-3-3497849425
Building a local-first offline-only complex app day 14: browsers are awesome.
- localStorage to persist data across sessions.
- sessionStorage to persist data across reloads.
- window.cache to store binary assets.
- Service Worker to serve assets from cache.
- localStorage to persist data across sessions.
- sessionStorage to persist data across reloads.
- window.cache to store binary assets.
- Service Worker to serve assets from cache.
October 31, 2025 at 1:39 PM
Building a local-first offline-only complex app day 14: browsers are awesome.
- localStorage to persist data across sessions.
- sessionStorage to persist data across reloads.
- window.cache to store binary assets.
- Service Worker to serve assets from cache.
- localStorage to persist data across sessions.
- sessionStorage to persist data across reloads.
- window.cache to store binary assets.
- Service Worker to serve assets from cache.
Ooh bleb. Think I've discovered itch.io HTML5 games can't use localStorage to save bc it randomly clears it for some reason every so often.
Not 100% though. Could be my web browser, or me doing something dumb.
If anyone can confirm this is a thing it'd be a great help.
#webdev #gamedev #solodev
Not 100% though. Could be my web browser, or me doing something dumb.
If anyone can confirm this is a thing it'd be a great help.
#webdev #gamedev #solodev
October 26, 2025 at 9:23 PM
also nitpicking but localStorage is just a web browser API, its shape isn’t javascript’s fault as some in the thread imply. the language’s design has no relation to it
October 26, 2025 at 5:54 AM
also nitpicking but localStorage is just a web browser API, its shape isn’t javascript’s fault as some in the thread imply. the language’s design has no relation to it
if you mean localStorage, it does deal with strings, but typically you’d just save stuff via JSON.stringify and load via JSON.parse. this only needs to be done at the top level. this isn’t very different from a persistent KV store in any other language — at some point somebody has to (de)serialize
October 26, 2025 at 5:52 AM
if you mean localStorage, it does deal with strings, but typically you’d just save stuff via JSON.stringify and load via JSON.parse. this only needs to be done at the top level. this isn’t very different from a persistent KV store in any other language — at some point somebody has to (de)serialize
If you attempt to store a new Foo() in, say, localStorage, all you will get stored will be a stringified empty object "{}". You cannot recreate Foo from that, naturally.
October 25, 2025 at 10:20 AM
If you attempt to store a new Foo() in, say, localStorage, all you will get stored will be a stringified empty object "{}". You cannot recreate Foo from that, naturally.
can u do this with just css (except for the saving the value to localstorage part) fossheim.io/writing/post...
Building an accessible theme picker with HTML, CSS and JavaScript. by Sarah L. Fossheim
In this tutorial, we’ll use HTML, CSS, and vanilla JavaScript to add an accessible theme picker component to a website.
fossheim.io
October 22, 2025 at 7:12 AM
can u do this with just css (except for the saving the value to localstorage part) fossheim.io/writing/post...
Prompt -> Result tools.simonwillison.net/terminal-to-...
October 23, 2025 at 4:40 AM
Prompt -> Result tools.simonwillison.net/terminal-to-...
If capitalists were honest. 😆
October 20, 2025 at 12:16 AM
If capitalists were honest. 😆
Wenn der Texter deines Cookie Banners 1 ehrliche Haut ist
October 19, 2025 at 1:51 PM
Wenn der Texter deines Cookie Banners 1 ehrliche Haut ist
browser/app localstorage fuck sync
October 16, 2025 at 5:00 PM
browser/app localstorage fuck sync
client localstorage to be as annoying as possible
October 16, 2025 at 4:11 PM
client localstorage to be as annoying as possible
Lang vei igjen da 😁 Sette opp en service-worker som kan hente sesjoner. Som lagres i localStorage. Hvis en sesjon er satt til å være søkbar, hente alle saker for en sesjon og lagre i localStorage. Så gjøre litt dokument-prosessering og så indeksere så de er søkbare.
October 15, 2025 at 6:04 PM
Lang vei igjen da 😁 Sette opp en service-worker som kan hente sesjoner. Som lagres i localStorage. Hvis en sesjon er satt til å være søkbar, hente alle saker for en sesjon og lagre i localStorage. Så gjøre litt dokument-prosessering og så indeksere så de er søkbare.
hello you can now use age keys in bin.aylac.top if you want to send me your key somewhere so you can get cool images you can do it now it is saved unencrypted on localstorage btw
October 15, 2025 at 12:15 AM
hello you can now use age keys in bin.aylac.top if you want to send me your key somewhere so you can get cool images you can do it now it is saved unencrypted on localstorage btw
storing an image Blob:
Service worker cache: failed ❌
OPFS: failed ❌
localStorage: hacky
IndexedDB: success ✅
This is entirely Tauri's fault (well... my fault for trying to wrap a PWA in a native app - maybe there is a lesson here?)
Service worker cache: failed ❌
OPFS: failed ❌
localStorage: hacky
IndexedDB: success ✅
This is entirely Tauri's fault (well... my fault for trying to wrap a PWA in a native app - maybe there is a lesson here?)
October 14, 2025 at 10:02 AM
storing an image Blob:
Service worker cache: failed ❌
OPFS: failed ❌
localStorage: hacky
IndexedDB: success ✅
This is entirely Tauri's fault (well... my fault for trying to wrap a PWA in a native app - maybe there is a lesson here?)
Service worker cache: failed ❌
OPFS: failed ❌
localStorage: hacky
IndexedDB: success ✅
This is entirely Tauri's fault (well... my fault for trying to wrap a PWA in a native app - maybe there is a lesson here?)
Day 21 / 100
I'm learning React JS. Here's what I covered today:
✅Rules of React Hooks
✅useState hook - multiple ways of updating & creating state
✅get data from localstorage inside useState
✅useRef hook - selecting DOM elements in react way
#100DaysOfCode #webdevelopment
I'm learning React JS. Here's what I covered today:
✅Rules of React Hooks
✅useState hook - multiple ways of updating & creating state
✅get data from localstorage inside useState
✅useRef hook - selecting DOM elements in react way
#100DaysOfCode #webdevelopment
September 29, 2025 at 5:33 PM
Day 21 / 100
I'm learning React JS. Here's what I covered today:
✅Rules of React Hooks
✅useState hook - multiple ways of updating & creating state
✅get data from localstorage inside useState
✅useRef hook - selecting DOM elements in react way
#100DaysOfCode #webdevelopment
I'm learning React JS. Here's what I covered today:
✅Rules of React Hooks
✅useState hook - multiple ways of updating & creating state
✅get data from localstorage inside useState
✅useRef hook - selecting DOM elements in react way
#100DaysOfCode #webdevelopment
uuuughhhhhh i need to deal with browser localstorage. pray for me please.
September 26, 2025 at 8:56 AM
uuuughhhhhh i need to deal with browser localstorage. pray for me please.
This Week In React 251 - By @tboba.pl & @piaskowyk.bsky.social
🍿 Read/subscribe: thisweekinreact.com/newsletter/251
⚛️ React
- TanStack Start 1.0 RC
- React Router RSC
- React ESLint plugins
- Vite
-
📱 RN
- Nitro Modules/Fetch
- Live Activity
- localStorage
- Workflows TestFlight
🍿 Read/subscribe: thisweekinreact.com/newsletter/251
⚛️ React
- TanStack Start 1.0 RC
- React Router RSC
- React ESLint plugins
- Vite
-
📱 RN
- Nitro Modules/Fetch
- Live Activity
- localStorage
- Workflows TestFlight
September 24, 2025 at 5:20 PM
This Week In React 251 - By @tboba.pl & @piaskowyk.bsky.social
🍿 Read/subscribe: thisweekinreact.com/newsletter/251
⚛️ React
- TanStack Start 1.0 RC
- React Router RSC
- React ESLint plugins
- Vite
-
📱 RN
- Nitro Modules/Fetch
- Live Activity
- localStorage
- Workflows TestFlight
🍿 Read/subscribe: thisweekinreact.com/newsletter/251
⚛️ React
- TanStack Start 1.0 RC
- React Router RSC
- React ESLint plugins
- Vite
-
📱 RN
- Nitro Modules/Fetch
- Live Activity
- localStorage
- Workflows TestFlight
nnooooo this computer doesn't have my corru observer save cause it's in localStorage
September 23, 2025 at 9:04 PM
nnooooo this computer doesn't have my corru observer save cause it's in localStorage
Androidで表示しようとすると、ログインボタンがどうがんばっても出なかったのでChrome dev toolからLocalstorageの内容まるっとコピーして流したら見れた
March 15, 2023 at 2:29 AM
Androidで表示しようとすると、ログインボタンがどうがんばっても出なかったのでChrome dev toolからLocalstorageの内容まるっとコピーして流したら見れた
hmm i think if i am careful with data, i can come in under the localstorage limit? assuming two layers and not too much additional data. it's about 10Mb in chrome.
January 6, 2025 at 10:59 PM
hmm i think if i am careful with data, i can come in under the localstorage limit? assuming two layers and not too much additional data. it's about 10Mb in chrome.
the kind of shit i've been on as of late
October 22, 2024 at 10:24 AM
the kind of shit i've been on as of late