Startup Wants To Launch a Space Mirror
Read more of this story at Slashdot.
Read more of this story at Slashdot.

We built a web based project management tool, not a full SaaS with accounts at first, just a local first tool where everything saves to browser via IndexedDB. Think of it like Notion but everything stays in your browser, no server, no account needed. We marketed it as "your data never leaves your device" and people loved it, about 25K weekly active users mostly on desktop Chrome and Firefox where everything worked perfectly.
Then we started getting emails from users saying their entire project boards were gone. Not corrupted, not partially missing, completely wiped like they'd never existed. The weird thing was it was only iPhone and iPad users and pattern was always same, they'd use app heavily for a few days, then not open it for about a week, and when they came back everything was gone.
It took us way too long to figure this out because we kept looking for bugs in our code. We audited our IndexedDB write logic, checked for storage quota issues, added error boundaries around every database operation, added telemetry to track when data was being written and read. Our code was fine. The data was being saved correctly every single time. It was just disappearing on its own a week later.
Turns out Safari on iOS has a 7 day cap on "script writable storage" for websites that aren't added to home screen as a PWA. If user doesn't visit your site for 7 consecutive days, Safari automatically purges all their IndexedDB, localStorage, Cache API data, everything. This isn't a bug, it's a deliberate WebKit policy for "Intelligent Tracking Prevention" that Apple implemented to prevent cross site tracking. The problem is it also nukes legitimate application data for any web app that stores things locally, and Apple doesn't surface any warning to user or developer before it happens. Your data is just gone and there's no way to recover it.
The really painful part is that this doesn't affect Chrome on iOS because even though Chrome on iOS uses WebKit under hood, it manages its own storage policies differently. So our Chrome on iOS users were fine and our Safari users were getting their data wiped and we had no idea why the behavior was split because we assumed all iOS browsers behaved same since they all use WebKit.
We confirmed this exact behavior by testing on real iOS devices, opening app in Safari, writing data, then not touching it for 7 days and checking if data survived. some tool to automate this across different iOS versions because storage eviction rules have changed slightly between iOS 16 and iOS 18 and we needed to know exactly which versions were affected and which weren't. The 7 day wipe was consistent across all recent versions for Safari but behavior was slightly different for PWAs installed to the home screen where the data persisted longer.
The fix was a fundamental change. We added an optional account system with server side sync so users' data has a backup beyond browser's mercy. For users who still don't want to create an account we added a prominent warning specifically for Safari users explaining that their browser may delete saved data after 7 days of inactivity and recommending they either add the app to their home screen as a PWA or export their data regularly. We also built an auto export feature that saves a JSON backup to user's iCloud or local files every time they use app as a safety net.
If you're building any kind of local first web app that stores meaningful user data in IndexedDB or localStorage and you haven't tested what happens to that data on Safari after a week of inactivity, you need to test it immediately because your iOS Safari users might already be losing their data and you'll never see it in any error log because from Safari's perspective nothing went wrong.
Fixed a few bugs in my "URL SHORTENER" project, I was planning on hosting a complete Full stack web application, But I am confused about where I should host it? It would be great if someone could help me with this!
Been working with WordPress and Contact Form 7 for a while now and one thing that keeps coming up across different client projects is how overcomplicated the CF7 to CRM connection gets.
The typical flow most people end up with is CF7 fires a webhook, that hits Zapier, Zapier calls HubSpot or Zoho or whatever the client is using. It works but you are now paying monthly forever just to be a middleman between two things that could theoretically talk directly to each other. And the moment a task limit gets hit or something in the chain breaks, the client has zero visibility into what went wrong.
I went down a rabbit hole trying to find a cleaner way to handle this and eventually found something that connects CF7 directly to any REST API from inside WordPress itself. No third party relay, no extra monthly cost on top of everything else, and you can actually see the API response logs right inside the dashboard which has saved me a lot of debugging time.
Have used it across several client projects now connecting to different CRMs and it has honestly simplified things more than I expected.
Curious what approach others here are taking for this. Is Zapier still the default for most of you or have you moved to something different?
Been working with WordPress and Contact Form 7 for a while now and one thing that keeps coming up across different client projects is how overcomplicated the CF7 to CRM connection gets.
The typical flow most people end up with is CF7 fires a webhook, that hits Zapier, Zapier calls HubSpot or Zoho or whatever the client is using. It works but you are now paying monthly forever just to be a middleman between two things that could theoretically talk directly to each other. And the moment a task limit gets hit or something in the chain breaks, the client has zero visibility into what went wrong.
I went down a rabbit hole trying to find a cleaner way to handle this and eventually found something that connects CF7 directly to any REST API from inside WordPress itself. No third party relay, no extra monthly cost on top of everything else, and you can actually see the API response logs right inside the dashboard which has saved me a lot of debugging time.
Have used it across several client projects now connecting to different CRMs and it has honestly simplified things more than I expected.
Curious what approach others here are taking for this. Is Zapier still the default for most of you or have you moved to something different?
I've been talking to a few bloggers and noticed that converting blog posts into Pinterest-ready pins is still mostly manual — resize, rewrite captions, pick boards, schedule. Is that your experience too? What tools are you using, if any? Genuinely curious what the workflow looks like for people actually doing this.
I've been talking to a few bloggers and noticed that converting blog posts into Pinterest-ready pins is still mostly manual — resize, rewrite captions, pick boards, schedule. Is that your experience too? What tools are you using, if any? Genuinely curious what the workflow looks like for people actually doing this.
Hey everyone, As a second-year CS student and designer, I’ve always been frustrated by how high-end color grading is locked behind heavy desktop software and subscription paywalls. I wanted to see if I could bridge the gap between computer science and digital art, so I built LUMAFORGE.
It is a professional-grade optics engine that runs 100% locally in your browser. No backend processing for the images, just pure Canvas API math.
You can check out the live engine here: Click Here And the GitHub repo here: Click Here
I wanted to share a few of the technical challenges and features I’m really proud of:
1. The Image is the Preset (Steganographic Payloads):
Standard photo apps save your edits in a sidecar file or a database. I wanted the exported image to be entirely self-contained. Lumaforge uses steganography to bake your entire mathematical node tree (sliders, custom RGB spline curves, split-tones) directly into the exported PNG’s metadata via custom tEXt chunks. If you drop any Lumaforge-exported image back onto the canvas, the engine decrypts the payload and perfectly reconstructs your exact edit history.
2. The Uplink (Flat Relational Database):
I built a global community feed called "The Uplink" where users can publish their grades. If you see a grade you like, you can click "Fork & Remix" to instantly extract their math and apply it to your local canvas.
3. Universal .CUBE Export:
Your browser grades shouldn't be trapped on the web. I built a custom LUT compiler that generates a default 3D mathematical color grid, runs it through the canvas pipeline, and formats the output into industry-standard .CUBE files. You can build a look in Lumaforge and instantly use it in Premiere Pro or DaVinci Resolve.
The Stack: • Frontend: React.js, WebGL / Canvas API • Backend / Auth / Storage: Supabase
The v1.0 architecture is stable, and I'm currently prepping the infrastructure for native Computer Vision processing pipelines.
I’d love for you to try it out, tear apart the code, or drop a PR if you are interested in browser-based optics. Happy to answer any questions about the canvas math, the steganography pipeline, or the database architecture!
https://www.youtube.com/watch?v=xA3BIPPNJXo&t=13561s
This is not a basic CRUD project.
This is a real-world, resume-ready, placement-focused full stack project.
We will implement:
🔐 Secure Authentication System (Auth)
🎥 Live Video Session Integration
💬 Real-Time Chat System
👨🏫 Host & Student Role-Based Access
🧠 Protected Routes & Backend Middleware
🗄️ MongoDB Schema Design
⚙️ Production-Level Folder Structure
If you want to become a serious MERN Stack Developer in 2026, this project is for you.
| Fren mi hijo llego con esta maleta que le dieron de la embajada de usa, estos hp ahora están metidos en todos lados ahora también en las escuelas, no se debería permitir a estos militares asesinos de niños en las escuelas. Le estoy quitanto esas banderas para que almenos la pueda regalar a alguien que la necesite. [link] [comments] |
Ayer fui a Taboga y la verdad es que muy bonito todo. La atención es buena, el ceviche es bueno y la playa está limpia. La primera y última vez que fui fue en el 2022 y la verdad había quedado encantada.
Ayer, estando dentro de la playa, sentía como me picaban cosas que no podía ver. Al salir obvio ya me picaba la piel, pero hoy amanecí súper brotada con muchas ronchas. Como si miles de mosquitos me hubieran picado, pero eso me paso dentro del mar. Hace más de un mes, fui a Veracruz y me paso lo mismo. Algún experto que sepa que carajos produce estas picaduras JAJAJA.
Read more of this story at Slashdot.
I have sent three support inquiries for their Highend Theme in as many weeks. I receive an automated messages saying "We’ve received your support ticket and we are already on the case. Expect to hear from us within 48 hours". No other response. Nothing. I have a valid support license. Very disappointing. Has any one else had this experience?
I have sent three support inquiries for their Highend Theme in as many weeks. I receive an automated messages saying "We’ve received your support ticket and we are already on the case. Expect to hear from us within 48 hours". No other response. Nothing. I have a valid support license. Very disappointing. Has any one else had this experience?
Client is a second hand high priced item dealer who is managing everything in excel spreadsheets currently
- Wants to ingest leads from IG/FB/Whatsapp and ideally be able to respond to messages via the CRM admin.
- Sells used/new items and wants inventory management too.
Am I right that inventory management isn't a typical feature of modern CRMs? They al seem focused on workflows with heavy AI features.
Client is a second hand high priced item dealer who is managing everything in excel spreadsheets currently
- Wants to ingest leads from IG/FB/Whatsapp and ideally be able to respond to messages via the CRM admin.
- Sells used/new items and wants inventory management too.
Am I right that inventory management isn't a typical feature of modern CRMs? They al seem focused on workflows with heavy AI features.
I’m struggling to get a responsive menu working for our website in mobile. The last responsive menu we had from the previous marketing company worked up until an update in Wordpress and it never worked again. Now when I put in a new responsive menu plugin everything seems like it will work and then when you look on mobile it looks like code is broken on our website and lists EVERYTHING out as bulleted points. I ended up taking it down because although it gives people the ability to see all these other pages, it doesn’t make the website look nice. I’ve tried every compatible responsive menu and incompatible to the newest Wordpress update and they always end up like this. Please help me unravel this mystery