Home
Softono
l

littlebizzy

Professional software vendor delivering innovative solutions on the Softono platform. Specialized in both open-source and proprietary software development.

Total Products
3

Software by littlebizzy

hovercraft
Open Source

hovercraft

<img src="https://repository-images.githubusercontent.com/56482826/43902c63-3729-437d-ab69-8ab86f52e839" /> # HoverCraft No maintenance WordPress theme ## Changelog ### 0.3.x - still a little bit alpha - experimenting with meta boxes ### 0.2.x - still a little bit alpha - forced update (fixes versioning conflict) - passes Theme Check basic tests ### 0.1.x - alpha branch - more messing around ### 0.0.x - requires PHP 7.0+ - supports Git Updater - messing around ## Theme Policy HoverCraft is a lightweight standardized WordPress theme for simple client sites, WooCommerce sites, and long-term maintainability. It intentionally avoids page-builder-style complexity while still supporting practical customization through templates, widget areas, meta boxes, and the WordPress Customizer. The theme should remain boring, explicit, and easy to maintain. New features should improve repeatable client work without turning HoverCraft into a generic layout builder, content modeling system, or SEO/schema plugin. ### Core Philosophy - Keep the theme lightweight, reusable, and predictable. - Prefer simple WordPress conventions over clever abstractions. - Support fast client builds without depending on page builders. - Keep templates, widget areas, meta boxes, and Customizer settings understandable. - Avoid features that make the theme harder to audit, refactor, or maintain. ## Documentation - [Accessibility](docs/accessibility.md) - [Layout](docs/layout.md) - [Markup](docs/markup.md) - [CSS organization](docs/css.md) - [Style.css policy](docs/style-css.md) - [Customizer](docs/customizer.md) - [Page builders](docs/page-builders.md) - [Cloudflare](docs/cloudflare.md) - [Heros](docs/heros.md) - [Headings](docs/headings.md) - [Corner radius](docs/corner-radius.md) - [Forms](docs/forms.md) - [Breadcrumbs](docs/breadcrumbs.md) - [Comments](docs/comments.md) - [Widgets](docs/widget-areas.md) - [Meta boxes](docs/meta-boxes.md) - [WooCommerce](docs/woocommerce.md) - [Structured data](docs/structured-data.md) - [Translations](docs/translations.md) - [File guards](docs/file-guards.md) - [Refactoring](docs/refactoring.md)

WordPress Themes & Plugins
28 Github Stars
speed-demon
Open Source

speed-demon

# Speed Demon Performance hacks for WordPress ## Changelog ### 1.4.0 * bundled Dashboard Cleanup 1.1.2 * removed Index Autoload (included in WP Core after 5.3+) * changed Remove Query Strings to be disabled by default (all constants) ### 1.3.2 * updated plugin meta ### 1.3.1 * updated plugin meta ### 1.3.0 * tested with WP 5.0 * bundled Disable Gutenberg (1.0.0) default = true * bundled Disable WooCommerce Status (1.0.4) default = false * bundled Disable WooCommerce Styles (1.0.1) default = false ### 1.2.2 * updated Minify HTML (1.0.1) * (fixed bug in `REMOVE_EXTRA_SPACING` that was removing spaces before/after inline HTML tags) ### 1.2.1 * updated plugin meta ### 1.2.0 * bundled Minify HTML (1.0.0) default = true * changed Inline Styles default = false * changed Disable Admin-AJAX default = false * optimized plugin code * fixed PHP 5.x error... you're welcome, now upgrade to PHP 7.2! ;) e.g. `Parse error: syntax error, unexpected 'default' (T_DEFAULT), expecting identifier (T_STRING) in ../wp-content/plugins/speed-demon-littlebizzy/modules/remove-query-strings/core/filter.php on line 116` ### 1.1.0 * bundled Disable Admin-AJAX (1.0.0) default = true * bundled Disable Cart Fragments (1.1.3) default = true * bundled Disable jQuery Migrate (1.0.0) default = true * bundled Header Cleanup (1.1.1) default = true * bundled Index Autoload (1.1.1) default = true * added recommended plugins notice * added rating request notice ### 1.0.0 * initial release * tested with PHP 7.0, 7.1, 7.2 * implemented PHP namespaces * implemented object-oriented codebase * added warning for Multisite installations * bundled Delete Expired Transients (1.0.3) default = true * bundled Disable Embeds (1.1.1) default = true * bundled Disable Emojis (1.1.2) default = true * bundled Disable Post Via Email (1.0.0) default = true * bundled Disable XML-RPC (1.0.8) default = true * bundled Inline Styles (1.1.0) default = true * bundled Remove Query Strings (1.3.1) default = true ### Defined Constants /** Speed Demon Functions v1.4.0 */ define('DASHBOARD_CLEANUP', true); // default = true define('DASHBOARD_CLEANUP_ADD_PLUGIN_TABS', true); // default = true define('DASHBOARD_CLEANUP_ADD_THEME_TABS', true); // default = true define('DASHBOARD_CLEANUP_CSS_ADMIN_NOTICE', true); // default = true define('DASHBOARD_CLEANUP_DISABLE_SEARCH', true); // default = true define('DASHBOARD_CLEANUP_EVENTS_AND_NEWS', true); // default = true define('DASHBOARD_CLEANUP_IMPORT_EXPORT_MENU', true); // default = true define('DASHBOARD_CLEANUP_LINK_MANAGER_MENU', true); // default = true define('DASHBOARD_CLEANUP_QUICK_DRAFT', true); // default = true define('DASHBOARD_CLEANUP_THANKS_FOOTER', true); // default = true define('DASHBOARD_CLEANUP_WELCOME_TO_WORDPRESS', true); // default = true define('DASHBOARD_CLEANUP_WOOCOMMERCE_CONNECT_STORE', true); // default = true define('DASHBOARD_CLEANUP_WOOCOMMERCE_FOOTER_TEXT', true); // default = true define('DASHBOARD_CLEANUP_WOOCOMMERCE_MARKETPLACE_SUGGESTIONS', true); // default = true define('DASHBOARD_CLEANUP_WOOCOMMERCE_PRODUCTS_BLOCK', true); // default = true define('DASHBOARD_CLEANUP_WOOCOMMERCE_TRACKER', true); // default = true define('DASHBOARD_CLEANUP_WP_ORG_SHORTCUT_LINKS', true); // default = true define('DELETE_EXPIRED_TRANSIENTS', true); // default = true define('DELETE_EXPIRED_TRANSIENTS_HOURS', '6'); // default = 6 define('DELETE_EXPIRED_TRANSIENTS_MAX_EXECUTION_TIME', '10'); // default = 10 define('DELETE_EXPIRED_TRANSIENTS_MAX_BATCH_RECORDS', '50'); // default = 50 define('DISABLE_ADMIN_AJAX', false); // default = false define('DISABLE_CART_FRAGMENTS', true); // default = true define('DISABLE_EMBEDS', true); // default = true define('DISABLE_EMBEDS_ALLOWED_SOURCES', 'none'); // default = (none) define('DISABLE_EMOJIS', true); // default = true define('DISABLE_GUTENBERG', true); // default = true define('DISABLE_JQUERY_MIGRATE', true); // default = true define('DISABLE_POST_VIA_EMAIL', true); // default = true define('DISABLE_WOOCOMMERCE_STATUS', false); // default = false define('DISABLE_WOOCOMMERCE_STYLES', false); // default = false define('DISABLE_WOOCOMMERCE_STYLES_NAMES', 'select2'); // default = select2 define('DISABLE_WOOCOMMERCE_STYLES_PREFIXES', 'woocommerce,wc'); // default = woocommerce,wc define('DISABLE_XML_RPC', true); // default = true define('HEADER_CLEANUP', true); // default = true define('INLINE_STYLES', false); // default = false define('MINIFY_HTML', true); // default = true define('MINIFY_HTML_INLINE_STYLES', true); // default = true define('MINIFY_HTML_INLINE_STYLES_COMMENTS', true); // default = true define('MINIFY_HTML_REMOVE_COMMENTS', true); // default = true define('MINIFY_HTML_REMOVE_CONDITIONALS', true); // default = true define('MINIFY_HTML_REMOVE_EXTRA_SPACING', true); // default = true define('MINIFY_HTML_REMOVE_HTML5_SELF_CLOSING', false); // default = false define('MINIFY_HTML_REMOVE_LINE_BREAKS', true); // default = true define('MINIFY_HTML_INLINE_SCRIPTS', false); // default = false define('MINIFY_HTML_INLINE_SCRIPTS_COMMENTS', false); // default = false define('MINIFY_HTML_UTF8_SUPPORT', true); // default = true define('REMOVE_QUERY_STRINGS', false); // default = false define('REMOVE_QUERY_STRINGS_ARGS', 'v,ver,version'); // default = v,ver,version ### Included Modules * [Dashboard Cleanup](https://www.littlebizzy.com/plugins/dashboard-cleanup) * [Delete Expired Transients](https://www.littlebizzy.com/plugins/delete-expired-transients) * [Disable Admin-AJAX](https://www.littlebizzy.com/plugins/disable-admin-ajax) * [Disable Cart Fragments](https://www.littlebizzy.com/plugins/disable-cart-fragments) * [Disable Dashicons](https://www.littlebizzy.com/plugins/disable-dashicons) * [Disable Embeds](https://www.littlebizzy.com/plugins/disable-embeds) * [Disable Emojis](https://www.littlebizzy.com/plugins/disable-emojis) * Disable Feeds * [Disable Gutenberg](https://www.littlebizzy.com/plugins/disable-gutenberg) * [Disable jQuery Migrate](https://www.littlebizzy.com/plugins/disable-jquery-migrate) * [Disable Post Via Email](https://www.littlebizzy.com/plugins/disable-post-via-email) * Disable Thumbnail Regeneration * [Disable WooCommerce Status](https://www.littlebizzy.com/plugins/disable-woocommerce-status) * [Disable WooCommerce Styles](https://www.littlebizzy.com/plugins/disable-woocommerce-styles) * [Disable XML-RPC](https://www.littlebizzy.com/plugins/disable-xml-rpc) * [Header Cleanup](https://www.littlebizzy.com/plugins/header-cleanup) * [Inline Styles](https://www.littlebizzy.com/plugins/inline-styles) * [Minify HTML](https://www.littlebizzy.com/plugins/minify-html) * [Remove Query Strings](https://www.littlebizzy.com/plugins/remove-query-strings)

WordPress Themes & Plugins Icon Libraries
65 Github Stars
slickstack
Open Source

slickstack

<img src="https://repository-images.githubusercontent.com/104382627/49a17307-d8e9-49f3-a320-b3bd9c0f5e70" /> # SlickStack SlickStack is a free LEMP stack automation script written in Bash designed to enhance and simplify WordPress provisioning, performance, and security. <a href="https://www.capterra.com/p/211436/SlickStack">Capterra</a> • <a href="https://www.g2.com/products/slickstack/reviews">G2 Crowd</a> • <a href="https://www.producthunt.com/posts/slickstack">Product Hunt</a> • <a href="https://sourceforge.net/software/product/SlickStack/">SourceForge</a> ## Thank you to our sponsors! [**Become a sponsor**](https://github.com/sponsors/jessuppi) and receive access to our **#perma-lounge** channel on Discord. Your donations and public displays of support for SlickStack are what keep this project going. Thank you very much! &nbsp; <a href="https://emplibot.com"><img width="150" style="padding: 20px" src="https://slickstack.io/wp-content/uploads/2024/09/emplibot-square.png" /></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://www.osoelectric.com"><img width="150" src="https://slickstack.io/wp-content/uploads/2023/04/oso-logo-color-480x467.webp" /></a> &nbsp; Our sponsors: [backamblock](https://github.com/backamblock), [yamanmucahit](https://github.com/yamanmucahit), [maxalerator](https://github.com/maxalerator), [konkova](https://github.com/konkova), [HDBear](https://github.com/HDBear), [Politicalite](https://github.com/politicalite), [liwernyap](https://github.com/liwernyap), [vivdev](https://github.com/vivdev), [hamzah](https://github.com/hamzah), [gingibash](https://github.com/gingibash), [damiafaw](https://github.com/damiafaw), [trevplaig](https://github.com/trevplaig), [hargums](https://github.com/hargums), [volneanschi](https://github/volneanschi), [OSO Electric Equipment](https://github.com/Oso-Electric-Equipment), [vladbejenaru](https://github.com/vladbejenaru), [alexbohariuc](https://github.com/alexbohariuc), [romfeo](https://github/romfeo), [chelovek07](https://github/chelovek07) ## Installation Because it’s written purely in Bash (Unix shell), SlickStack has no dependencies and works on any Ubuntu LTS machine. Unlike heavier provisioning tools like EasyEngine or Ansible, there are no third party languages required such as Python or Docker, meaning a lighter and simpler approach to WordPress servers. The below installation steps assume that you've already spun up a [KVM cloud server](https://slickstack.io/hosting) on Ubuntu LTS, with at least 1GB+ RAM, and that you are logged in via SSH as `root`: ``` cd /tmp/ && wget -O ss slick.fyi/ss && bash ss ``` From this point forward, you can manage your SlickStack server by simply using the `sudo bash` command on any one of the bundled scripts located within the `/var/www/` directory, as needed. However, in most cases there shouldn't be any need for much hands-on management as the server will intelligently run various cron jobs which connect to this GitHub repo. You can safely re-install SlickStack anytime via `sudo bash /var/www/ss-install` without causing any conflicts or data loss since the installation process is completely idempotent. **Note:** SlickStack requires Cloudflare to be activated on your domain before SSL (HTTPS) will be recognized as fully secure by your browser, because of its self-signed OpenSSL certificate. If you wish to use Let's Encrypt instead, be sure to change your settings in `ss-config` before running the installation. ## Modules *Last updated: Feb 10, 2026* | Module | Version | What does SlickStack optimize? | | :------------- | :----------: | :----------: | | **Ubuntu LTS** | 24.04 | `crontab` + `gai.conf` + `sshd_config` + `sudoers` + `sysctl.conf` | | **Nginx** | 1.18.x | `nginx.conf` + `cloudflare.conf` + server blocks | | **OpenSSL** | 3.0.x | `slickstack.crt` + `slickstack.key` + `dhparam.pem` | | **Certbot** | 2.9.x | `cert.perm` + `chain.pem` + `fullchain.pem` + `privkey.pem` | | **MySQL** | 8.0.x | `my.cnf` | | **PHP-FPM** | 8.3.x | `php.ini` + `php-fpm.conf` + `www.conf` | | **Memcached** | 1.6.x | `memcached.conf` + `object-cache.php` | | **WordPress** | 6.9.x | some WP Core junk files removed by `ss-clean-files` | | **WP-CLI** | 2.12.x | some `wp` commands disabled | | **Adminer** | 5.4.2 | default config | | **Iptables** | 1.8.x | `rules.v4` + `rules.v6` | | **Fail2ban** | 1.0.x | `jail.local` + custom filters | ## Requirements *NOTE: SlickStack will never support installing multiple TLDs (multi-tenancy) on a single server. This is to ensure top speed, stability, and security (i.e. technical SEO). We will also never include any type of UI, to allow third party applications to integrate SlickStack with management tools as they best see fit.* SlickStack works best on [KVM cloud servers](https://slickstack.io/hosting) with at least 2GB+ RAM such as DigitalOcean, Vultr, and Linode. The underlying LEMP stack configuration is meant primarily for high-traffic single-site WordPress websites, however WordPress Multisite is also supported. SlickStack supports WordPress, WooCommerce, bbPress, and BuddyPress "out of the box" with optimized settings that scale; what this means is that you can upgrade your cloud server to a bigger or better instance, and then run `ss install` again, and most SlickStack settings will be automagically optimized per available resources. By default, MySQL will connect locally via TCP to `127.0.0.1:3306` databases called `production`, `staging`, and `development` (depending on whether you have enabled staging/dev sites or not), although remote databases also work very well. Server "clustering" or "load balancing" has not been tested, and is not the goal here; complex enterprise-style configurations for WordPress are rarely needed (and can be expensive and difficult to manage), thus SlickStack aims to provide a simple solution for the 99% of WordPress sites that don't need such complexity. It should also be noted that SlickStack [ss] is HTTPS-only, and that HSTS is enabled by default, meaning that HTTP sites are not supported. Because OpenSSL generates self-signed certificates, SlickStack [ss] servers require CloudFlare to be active in front of your server in order for SSL certificates to be properly CA-signed and loaded by your browser, at least until the first `ss-install` has been completed (after that, you can switch to Certbot / Let's Encrypt). ## Philosophy Outside of the so-called [Application Layer](https://en.wikipedia.org/wiki/Application_layer), so much of the way computers and servers now work has been moved away from in-house teams and specialists and onto "the cloud" that terms like [DevOps](https://www.reddit.com/r/devops/comments/3rpzem/devops_vs_sysadmin/cwqmlnd/) have become standard among recruiters, companies, and developers alike. Modern web development trends have begun to revolve entirely around concepts such as automation, APIs, [cloud services](https://www.bcsg.com/wp-content/uploads/2015/03/The-small-business-revolution-trends-in-SMB-cloud-adoption.pdf), and beyond — a phenomenon we might refer to as *Web 3.0*. While this shift is exciting, there is now a massive and growing disconnect between these emerging technologies and the humans that are expected to implement or benefit from them. Typical small business owners (SMBs), along with independent agencies or freelancers, now face a virtually impossible learning curve if they wish to maintain a competitive "webdev" edge, let alone keep up with basic standards in website performance and security. While Silicon Valley "gurus" and corporations pump out new SaaS services (or incredibly complex Configuration Management tools like Ansible) on a daily basis, the typical small business website is still trying to figure out how to make their contact forms work correctly. The "legacy" shared web hosting monopolies — think EIG or GoDaddy — also have little motivation to educate their audience, as perpetuating confusion seems to be a core pillar of their business model. Thus, before the likes of Google and Amazon and Shopify and Wix take over the entire web and turn it into Wall Street-backed website builders that feed into their private ecosystems, SlickStack hopes to bridge the knowledge gap between emerging technology and old-school web development to empower SMBs to achieve top notch website performance and security by offering a "controlled" LEMP-stack environment with limited options that is perfectly suited to the world's most popular open-source CMS: WordPress.

DevOps & Infrastructure Hosting Panels
697 Github Stars