We are AI-enabled software consultants
Every detail—from architecture to deployment—is handled with rigor, ensuring clarity, performance, and long-term maintainability.
We design and deliver systems that are technically rigorous and commercially impactful.
We embed AI into core workflows, decision-making, and product architecture to create durable advantage.
We translate complex opportunities into elegant, production-ready solutions.
We build with precision, scalability, and a clear understanding of business context.
Built for impact
We combine deep engineering expertise with AI to deliver solutions that are practical, scalable, and grounded in real business outcomes.
AI that actually ships
We don’t just prototype—we design and deploy production-ready AI systems that integrate with your existing stack.
Measurable advantage
Our work is defined by outcomes: faster operations, smarter decisions, and capabilities that compound over time.
Transforming Ideas into Intelligent Solutions
Software consultant specializing in AI/ML integration, custom model development, and intelligent automation for forward-thinking businesses.
"We are better than AI. We are human."
Real thinking.
Real people.
Crafted, not generated.
Invented, not imitated.
The future needs
more humanity.
Not less.
AI can replicate patterns.
Humans create meaning.
e9e
Latest Articles
All Articles
How to turn off Warning and deprecation errors in Drupal
I had some difficulty with this, because my Drupal installs are in-between php versions. I'm running PHP 8.1, but a lot of the modules that I use were written for PHP 7, and haven't been ported.
Anyway, adding the following line to your sites/default/settings.php in production has worked for me:
$config['system.logging']['error_level'] = 'none';
How to turn off deprecation warnings in Drupal 9
This has troubled me for some time, since the Drupal installation I'm using is in-between php versions 8 and 7. I'm on php 8.1, but a lot of the modules were written for php 7, and the upgrade process has never been complete, and expected to never be.
In any event, after some trial and error, having this line in sites/default/settings.php solved it for me:
$config['system.logging']['error_level'] = 'none';
I suspect you can even raise the error level from 'none' to 'error' and still be fine.
`parse_pc': .pc doesn't exist: <MagickCore> when installing rmagick on a ruby on rails app on ubuntu 22
This solution has worked for me:
apt install libmagickwand-dev imagemagick
ubuntu 22 yaml.h not found, when running bundle of a ruby on rails application.
This has worked for me to solve the aforementioned problem:
apt install libyaml-dev
A Gentle, Minimalist introduction to Machine Learning
ML is taking the world over by storm in 2023. Here is an easy-to follow tutorial in pure python that explains the basics.