We are AI-enabled technologists
Every step—from whiteboard to deployment—is handled with rigor, precision, and expertise.
We design and deliver systems that are technically excellent, robust, future-proof and practical to operate.
We translate complex opportunities into elegant, production-grade solutions.
We build with precision, scalability, and a clear understanding of the business context.
Built for impact
Confidence through thoughtful engineering, continuous innovation, and uncompromising craftsmanship.
Beyond Code
Strategy, maintainbility & cost-effectiveness. Accurate analysis and balanced decisions.
Measurable advantage
Our work is defined by outcomes: faster operations, smarter decisions, and capabilities that compound over time.
Transforming Ideas into Intelligent Solutions
Software consultants specializing in ruby, javascript, php and python.
Empowering our clients with AI/ML integration, custom model development, and intelligent automation for forward-thinking businesses.
"We use AI but 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.
.
Latest Articles
All Articles
ffmpeg cheatsheet
Reduce a video to 720p:
export inn=<input.file>
ffmpeg -i $inn -vf "scale=-2:720" -c:v libx264 -crf 23 -preset medium -c:a aac -b:a 128k output.mp4Save the first frame of a video for a thumbnail:
ffmpeg -i $inn -frames:v 1 first-frame.jpg.
drush cheatsheet
Uninstall, install a theme:
export theme_name='THEME_NAME'
drush theme:uninstall $theme_name
drush config:set system.theme default $theme_name -yRun some code with drush:
How I set up the docker image with systemd and sshd
For testing ansible roles, I need a docker container that runs systemd or init - a container in which services can be enabled. I also need this container to be accessible via ssh. This way, I don't have to spin up cloud resources (which are not free) in order to test doing something on a remote.
How to setup test-driven development with Molecule in Ansible
Molecule is a testing framework designed for Ansible roles, collections, and playbooks. In the Ansible ecosystem, it provides a structured workflow to develop and verify infrastructure as code.