Earlier quoted context omitted.
Oh no. Still the mouse movement animation on the website? It made me not read further down the page.
I am very sure the Github page I linked to doesn’t have any mouse animations. It has a README right on the page, with all the info. It also lets you clone the code and try it out, watch videos and much more. Did you purposely seek out a different page, see a mouse animation, and then announce to everyone that you did not read further down THAT page because you were distracted by an animation? It seems like a petty th…
WordPress Playground: A WordPress that runs entirely in the browser
211–220 of 221 posts
Re: WordPress Playground: A WordPress that runs entirely in the browser
#212Re: WordPress Playground: A WordPress that runs entirely in the browser
#213Re: WordPress Playground: A WordPress that runs entirely in the browser
#214Earlier quoted context omitted.
I worked on a Strattic conversion some time back - they basically scrape all your pages and serve them statically, but you do have to do some things to support search, forms, etc and you'll end up pruning plugins that don't work well with it. But, serving static pages is very very fast afterwards.
Bet on Moore's Law and go fully dynamic.
The fastest single-threaded cpus today are only 2x faster than the fastest single-threaded cpus of a decade ago...
Re: WordPress Playground: A WordPress that runs entirely in the browser
#215Earlier quoted context omitted.
I worked on a Strattic conversion some time back - they basically scrape all your pages and serve them statically, but you do have to do some things to support search, forms, etc and you'll end up pruning plugins that don't work well with it. But, serving static pages is very very fast afterwards.
Bet on Moore's Law and go fully dynamic.
Re: WordPress Playground: A WordPress that runs entirely in the browser
#216Earlier quoted context omitted.
Wordpress is still great for downloading a theme from Themeforest to get brochure style sites (restaurant, simple small business, etc) up and running pretty fast. It is not great (possibly horrendous) for revisiting a few years later when all the plugins/theme/core needs to be updated and a bunch of different people have added custom JS/CSS all over in random places. It's hard to reconcile "pro web designer" with no-…
In my experience, I bought some pro/high sellers/high rated themes on Theme Forest for 3 sites, but all of them come with a bunch of pre-installed plugins, and was a mess. Specially two who have a mandatory plugin to edit pages, called WPBakery, damn I hated it, is awful, the native WP editor is miles away (Gutenberg), but the design will brake if you use Gutenberg. Also, this and other plugins do not auto-update aut…
https://themeforest.net/item/salient-responsive-multipurpose...
Re: WordPress Playground: A WordPress that runs entirely in the browser
#217Earlier quoted context omitted.
In my experience, I bought some pro/high sellers/high rated themes on Theme Forest for 3 sites, but all of them come with a bunch of pre-installed plugins, and was a mess. Specially two who have a mandatory plugin to edit pages, called WPBakery, damn I hated it, is awful, the native WP editor is miles away (Gutenberg), but the design will brake if you use Gutenberg. Also, this and other plugins do not auto-update aut…
Yeah some themes are way better than others, that's for sure. This is one of the cleanest and most flexible that I've used on dozens of sites, getting them up and running with a branded look in 2-3 hours: https://themeforest.net/item/salient-responsive-multipurpose...
Re: WordPress Playground: A WordPress that runs entirely in the browser
#218Re: WordPress Playground: A WordPress that runs entirely in the browser
#219Earlier quoted context omitted.
Interesting, seems the dedicated worker in chrome task manager is utilizing 1,135,948k of memory
> 1,135,948k of memory That's 1.1GB. That's horrifying because, theoretically, it should be a tiny, tiny fraction of that: on bare-metal we can run PHP + MySQL (let alone SQLite) + Apache within a few dozen MB of RAM. (Historical personal anecdote: my first-ever dev-server machine I built before high-school ran Windows Server 2003, IIS, SQL Server, and Adobe Photoshop 7.0 (in a Terminal Services session) concurrently…
The entire filesystem, all the executables, all uploaded files, and all database data lives in memory in the virtual filesystem. I think we could trim down the default allocation but it might actually be meaningless anyway; that GB won't steal real RAM unless it fills up inside the environment.
Someone can probably check me on this, but if my memory serves me right this is what's going on.
Re: WordPress Playground: A WordPress that runs entirely in the browser
#220Earlier quoted context omitted.
There is partial support for persistence, for browsers that have origin private file system (OPFS) implemented. > OPFS is only supported in Chrome-based browsers at the moment like Edge, Android browser. Safari and Firefox users won't be able to benefit from this feature yet Persistent Playground: Sync between MEMFS and OPFS - https://github.com/WordPress/wordpress-playground/pull/546
Very interesting, but I don't think sync from MEMFS to OPFS will work for my use case :( Is there a reason why using OPFS directly from SQLite doesn't work?
There's a third option supported only in Chrome at the moment which loads a directory from your computer's filesystem, bypassing even OPFS.
> using OPFS directly from SQLite doesn't work?
not entirely following your question. any way you could reword and explain what you were hoping to accomplish?