CHECKING STATUS
I AM LISTENING TO
|

ARCHIVE.

Database
Let’s Talk!

Looking for a reliable partner to bring your project to the next level? Whether it’s development, design, security, or ongoing support—I’d love to chat and see how I can help.

Get in touch,
and let’s create something amazing together!
2023 Wordpress Speedup Mo Files

WordPress: Caching MO-files … Does it make any sense!

First a bit of context :) What is Gettext? Translation within WordPress is based of Gettext. Gettext is a software internationalization and localization (i18n) framework used in many programming languages to facilitate the translation of software applications into different languages. It provides a set of tools and libraries for managing multilingual strings and translating them […]

Sqllite

Using SQLite in Javascript with sql.js

Fun Fun Fun :) var sql = require(‘sql.js’); // or sql = window.SQL if you are in a browser // Create a database var db = new sql.Database(); // NOTE: You can also use new sql.Database(data) where // data is an Uint8Array representing an SQLite database file // Execute some sql sqlstr = “CREATE TABLE […]