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
Prefix type of variable after the variable name
This one is pretty easy. Between suffixes (namespaces), roots (what a thing actually is), and suffixes and all that, I like to use a suffix (a word-final thing, something that goes at the end of the word) that denotes the type of the thing (name, variable) being used. It probably sounds more complicated than it really is so here are some clarifying examples.
The following examples are either variable names, or properties of an object, or fields of a model, or methods in a class, or keys in a hash. Hopefully you get the idea.
Cannot install Microsoft Teams on mac os x
When it says, something went wrong and teams could not be installed --
User TAFHBES published the answer on March 27, 2023:
"I had same problem on my iMac running Ventura on Intel. Problem went away when I placed installer in applications folder before running installer."
~ * ~ * ~ * ~
And this has worked for me. When I moved the installer to the Applications folder, it could finish the installation successfully.
~ * ~ * ~ * ~
Rails: How can I specify a local gem with Bundler or in my Gemfile?
You can do the following in your Gemfile, but then you'd have to switch the Gemfile between development and production, which is not recommended:
# Gemfile gem "foo", path: "/path/to/foo"
Alternatively, you can tell Bundler to use a local gem in your current environment. This is preferred as the Gemfile still points to the production version of the gem. Run this in shell:
bundle config set local.GEM_NAME /path/to/local/git/repository
[FIXED] How to prevent autocomplete in Visual Studio Code, and a few other customizations
If visual code opinionates about what you are typing, and you want it to stop, then perhaps you are looking for this setting:
"editor.acceptSuggestionOnCommitCharacter": falseDon't forget to backup your configuration file ~/.config/Code/User/setttings.json to be able to load it from backup later!
And while I have your attention, let's talk about configuring this text editor.