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
20231113 Site Updates: Issue 2024Q1 released
Greetings to all, we trust that this communication reaches you in good health and high spirits.
This communication serves to announce that the quarterly edition number has been updated.
The current edition number is hereby set to 2024Q1. Here is to continued success and collaboration!
20220920 Site Updates
- Infiniteshelter_com
- iterated on next_js config
- fixed some jests
- fixed linking/routing in SideMenu, Breadcrumbs
- deployed! : )
Removed GOOGLE_MAPS_KEY from codebase, it's in config now. Of note, changing the location type to Google Map Just Worked (tm), I didn't even need to push any code, Austin TX now displays a live map on the Left Panel.
Next, I'll re-review the 3D component and iterate maybe on a 3D Location space.
The dailies Location keeps receiving daily updates. : )
How to persist data in keycloak docker
This is pretty simple. I noticed that when I restart the development service, my keycloak realm disappears. It is simply a matter of having an appropriate bind volume, to persist it:
version: '3.2'
services:
keycloak_development:
image: quay.io/keycloak/keycloak
volumes:
- type: bind
source: ./volumes/keycloak_development
target: /opt/keycloak/data
ports:
- 8010:8080 ## host:docker
restart: always
command: start-dev
environment:
KEYCLOAK_ADMIN: admin
KEYCLOAK_ADMIN_PASSWORD: test1234
Configure Bundler for Access to Private Repositories
What worked for me is using ENV VARs:
gem 'iron_warbler', :git => "https://piousbox:#{ENV['GITHUB_TOKEN']}@github.com/wasyaco/iron_warbler.git", :branch => '0.1.0'
What didn't but should have worked is reproduced below: You can add authentication information to it like this: